.ofw-banner .flexible-content {
    padding: 0 0 100px 80px;
  }
.ofw-banner .flexible-content h1 {
    color: #fff;
    margin-bottom: 0;
    font-size: 3em;
}
.glass-effect.mixClass {
    background: url('../images/tgws-hero-btm.jpg?ver=6') center top/100% auto no-repeat;
}
.glass-effect.mixClass::before {
    background: linear-gradient(0deg, #000000 17.15%, rgba(204, 204, 204, 0.00) 105.96%);
}
.glass-effect.mixClass::after {
    width: 100%;
    height: 1px;
}

/* ---- Ingredients Section ---- */
.ingredients.content-right .marbel-tile {
    background-color: #f4f1ec;
    position: relative;
}

.tgws .glass-effect {
    background: url(../images/tgws-glass-effect.jpg) left top / cover no-repeat;
}
.tgws .glass-effect::before {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.50) -20.87%, rgba(0, 0, 0, 0.00) 125.76%);
}
.ingredients.content-right .content-right_inner {
    padding: 60px 64px;
    position: relative;
    z-index: 2;
}
.separator.black {
  background-image: url(../images/clean-cocktails/separator-black.svg);
}
/* Title */
.ingredients.content-right .content-right_inner .h2 {
    color: #ffffff;
    text-align: right;
    font-size: 36px;
    line-height: 1.15em;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

/* INGREDIENTS heading */
.ingredients.content-right .h3 {
    color: #ffffff;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    margin-top: 0;
    font-family: 'brandon-grotesque';
    font-weight: 900;
}

/* Recipe list */
.ingredients.content-right .recipe-block {
    margin-bottom: 28px;
}
.ingredients.content-right .recipe-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ingredients.content-right .recipe-block ul li {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7em;
    font-family: 'open-sans';
    padding: 0;
    margin: 0;
}
.ingredients.content-right .recipe-block ul li:first-child {
    display: none; /* empty first li */
}
.ingredients.content-right .recipe-block ul li span {
    display: block;
}
.ingredients.content-right .recipe-block ul li a {
    color: #ffffff;
    text-decoration: none;
}
.ingredients.content-right .recipe-block ul li a:hover {
    text-decoration: underline;
}

/* INSTRUCTIONS paragraph */
.ingredients.content-right .h3.fadeInDown {
    margin-top: 4px;
}
.ingredients.content-right .content-right_inner .p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7em;
    margin-bottom: 0;
}

/* Dot separator — hide on this panel */
.ingredients.content-right .dot-seperator {
    display: none !important;
}


/*-- Video --*/
.old-fashioned.glass-effect {
    background: url('../images/perfectingBg-desktop.jpg') right top/cover no-repeat;
}
.old-fashioned.glass-effect::before {
    background: linear-gradient(90deg, #7A303F -33.86%, rgba(122, 48, 63, 0.00) 95.1%);
}
.old-fashioned-video .h2 {
    margin-bottom: 35px;
}
.videoPlay {
    width: 100px;
}
.close-onPagevideo.btn {
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 100;
    margin-top: -15px;
    font-size: 13px;
    width: auto !important;
    padding: 0 10px;
    height: 30px;
    line-height: 28px;
    letter-spacing: 0.06em;
}
.doubleCol-copy {
    padding: 65px 0;
}

/* ---- Recipes section intro ---- */
.recipes-wrapper.clean-cocktails {
    padding-top: 70px;
}
.recipes-wrapper.clean-cocktails > .container > .h2 {
    margin-bottom: 0;
}
.recipes-wrapper.clean-cocktails .separator.recipe-spacer {
    margin: 22px auto 30px;
    display: block;
}
.recipes-wrapper.clean-cocktails .p.intro {
    font-size: 17px;
    color: #444;
    line-height: 1.75em;
    margin-bottom: 50px;
}

/* ---- 4-Recipe mosaic grid ----
   Waterfall.js sets inline position:absolute, top, left on every item
   and position:relative + height on the container.
   ALL layout properties need !important to override those inline styles.
*/
.recipes-wrapper.clean-cocktails .recipes-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: 1fr 1fr !important;
    position: relative !important;
    height: auto !important;
    width: 100% !important;
    float: none !important;
    overflow: hidden;
}
/* All items: override waterfall inline absolute positioning */
.recipes-wrapper.clean-cocktails .recipe-grid_item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    float: none !important;
    overflow: hidden;
}
/* Item grid placements
   PHP order: 1=soursop, 2=branch-water, 3=carrot-crush, 4=island-fizz
   Design: carrot-crush TOP, branch-water BOTTOM in middle col */
.recipes-wrapper.clean-cocktails .recipe-grid_item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.recipes-wrapper.clean-cocktails .recipe-grid_item:nth-child(2) { grid-column: 2; grid-row: 2; }
.recipes-wrapper.clean-cocktails .recipe-grid_item:nth-child(3) { grid-column: 2; grid-row: 1; }
.recipes-wrapper.clean-cocktails .recipe-grid_item:nth-child(4) { grid-column: 3; grid-row: 1 / 3; }

/* Grid container height + gap */
.recipes-wrapper.clean-cocktails .recipes-grid {
    height: min(66.66vw, 840px) !important;
    gap: 8px;
}

/* Content fills the grid cell */
.recipes-wrapper.clean-cocktails .recipe-grid_item .recipe-grid_content {
    margin: 0 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
/* Kill the padding-bottom aspect-ratio trick from recipes.css */
.recipes-wrapper.clean-cocktails .recipe-grid_item .recipe-grid_content::before {
    display: none !important;
}
/* Images cover the full cell */
.recipes-wrapper.clean-cocktails .recipe-grid_item .recipe-grid_content img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1);
    transition: transform 700ms;
}
.recipes-wrapper.clean-cocktails .recipe-grid_item .recipe-grid_content:hover img {
    transform: scale(1.05);
}

/* ---- Responsive ---- */
@media screen and (max-width: 1144px) {
    .ingredients.content-right .flex-wrap {
        display: block;
    }
    .ingredients.content-right .col-twoThird,
    .ingredients.content-right .col-oneThird {
        width: 100% !important;
    }
    .ingredients.content-right .content-right_inner {
        text-align: center;
    }
    .ingredients.content-right .content-right_inner .h2 {
        text-align: center;
    }
    .ofw-banner .flexible-content {
    padding: 0 0 53px 24px;

    }
}
@media screen and (max-width: 1279px) {
    .ingredients.content-right .content-right_inner {
        padding: 48px 48px;
    }
    .ingredients.content-right .content-right_inner .h2 {
        font-size: 30px;
    }
    .ofw-banner .flexible-content h1 {
        font-size: 1.8em;
    }
    .ofw-banner .flexible-content {
        padding: 0 0 34px 34px;
    }
}
@media screen and (max-width: 767px) {
    .ingredients.content-right .marbel-tile {
        width: 100%;
    }
    .ingredients.content-right .content-right_inner {
        padding: 40px 24px;
    }
    .ingredients.content-right .content-right_inner .h2 {
        font-size: 28px;
        text-align: center;
    }
    /* Mobile: single column grid */
    .recipes-wrapper.clean-cocktails .recipes-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        height: auto !important;
    }
    .recipes-wrapper.clean-cocktails .recipe-grid_item:nth-child(1) { grid-column: 1; grid-row: auto; }
    .recipes-wrapper.clean-cocktails .recipe-grid_item:nth-child(2) { grid-column: 1; grid-row: auto; }
    .recipes-wrapper.clean-cocktails .recipe-grid_item:nth-child(3) { grid-column: 1; grid-row: auto; }
    .recipes-wrapper.clean-cocktails .recipe-grid_item:nth-child(4) { grid-column: 1; grid-row: auto; }
    .recipes-wrapper.clean-cocktails .recipe-grid_item .recipe-grid_content {
        position: relative !important;
        height: auto !important;
        margin: 5px 0 !important;
    }
    .recipes-wrapper.clean-cocktails .recipe-grid_item .recipe-grid_content img {
        position: relative !important;
        height: auto !important;
    }
    .glass-effect.mixClass {
        background: url('../images/tgws-hero-btm-mob.jpg?ver=4') center top/100% auto no-repeat;
    }
    .marbel-tile .glass-effect {
        background: url(../images/clean-cocktails/branch-water-glass-mob.png) left top / cover no-repeat;
    }


    .glass-effect.mixClass::before {
        background: linear-gradient(0deg, #000000 17.15%, rgba(0, 0, 0, .75) 105.96%) !important;
    }
     .recipes-grid {
        transform: translateX(0px);
    }
    .recipes-wrapper.clean-cocktails{
        padding-right: 10px;
        padding-left: 10px;
    }
    .ofw-banner .flexible-content {
    padding: 0 0 25px 15px;
    }
    
}


/* --- The Great Whisk(e)y Showdown : Vote --- */
    .tgws-vote .col-50 {
        width: 50%;
    }

    /* Row: keep both halves equal height so the black panel fills the column */
    .tgws-vote .flex {
        align-items: stretch;
    }

    .tgws-vote .tgws-inner {
        max-width: 520px;
        margin: 0 auto;
        padding: 90px 20px;
    }

    /* Left (Bob's case): content stays top-aligned */
    .tgws-vote .tgws-case {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    /* Right (vote): fill the column height and center content vertically */
    .tgws-vote .tgws-poll {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tgws-vote .tgws-poll .tgws-inner {
        padding: 60px 20px;
    }

    /* Type sizes tuned for the narrow half-column (base .h2/.p are too large here) */
    .tgws-vote .h2 {
        font-size: 30px;
        line-height: 1.22;
        letter-spacing: 0.01em;
        margin-bottom: 20px;
    }

    .tgws-vote .p {
        max-width: 470px;
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
        line-height: 1.6;
    }

    .tgws-vote .tgws-video {
        margin-top: 35px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Inline autoplay video — box matches the 9:16 source so it fits exactly
       (no bars, nothing cropped — keeps the baked-in subtitles + legal line). */
    .tgws-vote .tgws-video-embed {
        position: relative;
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
        aspect-ratio: 9 / 16;
        overflow: hidden;
        background: #000;
        cursor: pointer;
    }

    .tgws-vote .tgws-video-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        pointer-events: none;
    }

    /* Sound toggle indicator (not a play button) */
    .tgws-vote .tgws-video-sound {
        position: absolute;
        z-index: 3;
        bottom: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.6);
        background: rgba(0, 0, 0, 0.45);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background .3s ease;
    }

    .tgws-vote .tgws-video-sound:hover {
        background: rgba(0, 0, 0, 0.7);
    }

    .tgws-vote .tgws-video-sound svg {
        width: 22px;
        height: 22px;
        display: block;
    }

    /* Muted state shows the slash; unmuted shows the sound waves */
    .tgws-vote .tgws-video-sound .tgws-sound-on {
        display: block;
    }

    .tgws-vote .tgws-video-sound .tgws-sound-off {
        display: none;
    }

    .tgws-vote .tgws-video-sound.is-muted .tgws-sound-on {
        display: none;
    }

    .tgws-vote .tgws-video-sound.is-muted .tgws-sound-off {
        display: block;
    }

    /* Barrels */
    .tgws-vote .tgws-options {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 45px 0 45px;
    }

    .tgws-vote .tgws-option {
        width: 185px;
    }

    .tgws-vote .tgws-radio {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .tgws-vote .tgws-barrel {
        display: block;
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        cursor: pointer;
        transition: transform .25s ease;
    }

    /* Normal (dim) art */
    .tgws-vote .tgws-barrel--whiskey {
        background-image: url('../images/tgws-barrel-whiskey-n.png');
    }

    .tgws-vote .tgws-barrel--whisky {
        background-image: url('../images/tgws-barrel-whisky-n.png');
    }

    /* Hover + selected (lit) art */
    .tgws-vote .tgws-barrel--whiskey:hover,
    .tgws-vote .tgws-radio:checked + .tgws-barrel--whiskey {
        background-image: url('../images/tgws-barrel-whiskey-slctd.png');
    }

    .tgws-vote .tgws-barrel--whisky:hover,
    .tgws-vote .tgws-radio:checked + .tgws-barrel--whisky {
        background-image: url('../images/tgws-barrel-whisky-slctd.png');
    }

    /* Slight lift on the chosen barrel */
    .tgws-vote .tgws-radio:checked + .tgws-barrel {
        transform: scale(1.03);
    }

    .tgws-vote .tgws-or {
        margin: 0 22px;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* --- Results: current standings bars --- */
    .tgws-vote #tgwsVoteResults {
        display: none;
    }

    .tgws-vote .tgws-standings-title {
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        font-size: 24px;
        margin: 10px 0 22px;
    }

    .tgws-vote .tgws-bars {
        display: flex;
        width: 100%;
        max-width: 460px;
        height: 180px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.45);
        overflow: hidden;
    }

    .tgws-vote .tgws-bar {
        position: relative;
        height: 100%;
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition: width 900ms ease;
    }

    .tgws-vote .tgws-bar + .tgws-bar {
        border-left: 1px solid rgba(255, 255, 255, 0.45);
    }

    .tgws-vote .tgws-bar-whiskey {
        background: #6d323f;
    }

    .tgws-vote .tgws-bar-whisky {
        background: #b4623a;
    }

    .tgws-vote .tgws-bar-inner {
        color: #fff;
        padding: 0 8px;
        white-space: nowrap;
    }

    .tgws-vote .tgws-bar-name {
        display: block;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.03em;
        font-size: 22px;
        line-height: 1.25;
    }

    .tgws-vote .tgws-bar-pct {
        display: block;
        font-weight: 700;
        font-size: 22px;
        line-height: 1.25;
    }

    @media screen and (max-width: 991px) {
        .tgws-vote .h2 {
            font-size: 26px;
        }

        .tgws-vote .tgws-inner {
            max-width: 460px;
        }
    }

    @media screen and (max-width: 767px) {
        .tgws-vote .col-50 {
            width: 100%;
        }

        /* Stacked: let panels size to content, drop the vertical-centering */
        .tgws-vote .tgws-case,
        .tgws-vote .tgws-poll {
            display: block;
        }

        .tgws-vote .tgws-inner,
        .tgws-vote .tgws-poll .tgws-inner {
            padding: 50px 20px;
        }

        .tgws-vote .tgws-video {
            max-width: 320px;
        }

        .tgws-vote .h2 {
            font-size: 24px;
        }

        .tgws-vote .p {
            font-size: 14px;
        }

        .tgws-vote .tgws-option {
            width: 145px;
        }

        .tgws-vote .tgws-standings-title {
            font-size: 20px;
        }

        .tgws-vote .tgws-bars {
            height: 150px;
        }

        .tgws-vote .tgws-bar-name,
        .tgws-vote .tgws-bar-pct {
            font-size: 18px;
        }

        .tgws-vote .tgws-or {
            margin: 0 12px;
        }

        .tgws-vote .tgws-video-sound {
            width: 38px;
            height: 38px;
            bottom: 10px;
            right: 10px;
        }

        .tgws-vote .tgws-video-sound svg {
            width: 19px;
            height: 19px;
        }
    }

    @media screen and (max-width: 767px) {
        .other-days.closedMsg .h2 {
            display: block;
            text-align: center;
        }

        .other-days.closedMsg .h2 i {
            padding: 0 !important;
        }

        .mastering>.flex {
            flex-direction: column;
            display: flex !important;
        }
    }