```css
/*
    Coin Slider jQuery plugin CSS styles
    http://workshop.rs/projects/coin-slider
*/

.coin-slider { overflow: hidden; position: relative; z-index: 0;}
.coin-slider a{ text-decoration: none; outline: none; border: none;}

#coin-slider img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

#coin-slider,
.coin-slider {
    margin-left: auto;
    margin-right: auto;
}

.cs-buttons 
{ 
    font-size: 0px; 
    padding: 8px; 
}

.cs-buttons a
{
    position: relative;
    top: 0px;
    float: left;
    margin-left: 5px;
    height: 8px;
    width: 8px;
    border: 1px solid #9A4E01;
    color: #B8C4CF;
    z-index: 5001;
}

.cs-active { background-color: #9A4E01; color: #9A4E01; }

/* Caption */
.cs-title {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.0)
    );
    color: #dddddd;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* centered 95% text block */
.caption-inner {
    display: block;
    width: 95%;
    margin: 0 auto;
}

.cs-title headline 
{
    font-weight: bolder;
    margin:0;
    padding:0;
    text-decoration: underline;
    color:#dd5000;
}

/* ✅ FIXED NAV BUTTONS (no giant overlays) */

.coin-slider .cs-prev,
.coin-slider .cs-next {
    position: absolute !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;

    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;

    padding: 4px 10px !important;
    margin: 0 !important;

    display: inline-block !important;
    line-height: 1.2 !important;
    font-size: 16px !important;
    font-weight: normal !important;
    text-align: center !important;

    background: rgba(0,0,0,0.35) !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    z-index: 1000 !important;
}

.coin-slider .cs-prev {
    left: 10px !important;
    right: auto !important;
}

.coin-slider .cs-next {
    right: 10px !important;
    left: auto !important;
}

/* Background tiles */
.coin-slider .cs-slider div {
    background-repeat: no-repeat !important;
}

/* Ken Burns animation */
@keyframes csKenBurnsBg {
    from {
        background-size: 100% auto;
        background-position: center center;
    }
    to {
        background-size: 106% auto;
        background-position: center center;
    }
}

.coin-slider .cs-kenburns {
    animation-name: csKenBurnsBg;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

/* ✅ VIDEO FIX (full width, no cropping) */
#coin-slider video,
.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: black;
    display: block;
}

/* Ensure anchor fills slide */
#coin-slider a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
```

