﻿/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       CASE STUDIES — Trail Cutter
       Forest green #1f3a1f · Yellow #e4a11f
       Teal #384f45 · Cream #f5efe2 · Orange #D96B2A
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #384f45;
}

/* ── Section ──────────────────────────────── */
.case-studies {
    background: #384f45;
    padding: 56px 20px 64px;
}

.case-studies__inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Heading ──────────────────────────────── */
.case-studies__heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f5efe2;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.case-studies__subtext {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #f5efe2;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.65;
}

/* ── Grid ─────────────────────────────────── */
.cs-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       CARD — Mobile base
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cs-card {
    background: #f5efe2;
    border-radius: 16px;
    padding: 30px 18px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    width: 100%;
    max-width: 480px;
    gap: 14px;
    transition: box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(31,58,31,0.1), 0 1px 4px rgba(31,58,31,0.06);
}

/* Elements hidden on mobile */
.cs-card__icon-wrap {
    display: none;
}

.cs-card__icon {
    width: 66px;
    height: 66px;
    object-fit: contain;
    display: block;
}

.cs-card__stat {
    display: none;
}

.cs-card__divider {
    display: none;
}

.cs-card__top {
    display: none;
}
/* desktop yellow block */
.cs-card__band {
    display: none;
}
/* desktop cream footer */

/* ── Content column (mobile/tablet) ───────── */
.cs-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    flex: 1;
    min-width: 0;
}

.cs-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #384f45;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 8px;
}

.cs-card__desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: #1f3a1f;
    line-height: 1.6;
    margin-top: 10px;
}

/* ── Bottom row (mobile/tablet) ───────────── */
.cs-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: -10px;
    gap: 8px;
}

/* ── Tag pills ────────────────────────────── */
.cs-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cs-tag {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #1f3a1f;
    border: 1.5px solid #1f3a1f;
    border-radius: 20px;
    padding: 3px 9px;
    white-space: nowrap;
}

.cs-tags--desktop {
    display: none;
}

.cs-tags--mobile {
    display: flex;
}

/* ── Download button ──────────────────────── */
.cs-card__dl {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-decoration: none;
    background: none;
}

.dl-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.dl-icon--hover {
    display: none;
}

.dl-icon--default {
    display: block;
}

/* ── Mobile title yellow line ─────────────── */
@media (max-width: 780px) {
    .cs-card {
        max-width: 360px;
        padding: 18px 24px;
    }

    .cs-card__title {
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

        .cs-card__title::after {
            content: '';
            width: 60px;
            flex: none;
            height: 3px;
            background: #e4a11f;
            border-radius: 2px;
        }

    .cs-tags--mobile .cs-tag {
        background: #e4a11f;
        border-color: #e4a11f;
        color: #f5efe2;
    }
}

@media (min-width: 375px) and (max-width: 479px) {
    .cs-card__title {
        gap: 18px;
    }

        .cs-card__title::after {
            width: 120px;
        }
}

@media (min-width: 480px) and (max-width: 539px) {
    .cs-card__title {
        gap: 22px;
    }

        .cs-card__title::after {
            width: 180px;
        }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       TABLET  540px–1199px
       Horizontal arch · icon left · content right
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*@media (min-width: 540px) and (max-width: 1199px) {
    .cs-grid {
        align-items: center;
        gap: 22px;
    }

    .cs-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        border-radius: 200px 16px 16px 200px;
        padding: 20px 28px 20px 20px;
        width: 100%;
        max-width: 560px;
        min-height: 160px;
        gap: 0;
    }

        .cs-card:hover {
            box-shadow: 0 0 0 3px #e4a11f;
        }

            .cs-card:hover .dl-icon--default {
                display: none;
            }

            .cs-card:hover .dl-icon--hover {
                display: block;
            }

    .cs-card__icon-wrap {
        display: flex;
        width: 112px;
        height: 112px;
        border-radius: 50%;
        background: rgba(228,161,31,0.18);
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: 10px;
        margin-right: 28px;
    }

    .cs-card__icon {
        width: 100px;
        height: 100px;
    }

    .cs-card__content {
        align-items: flex-start;
        gap: 0;
        flex: 1;
        min-width: 0;
    }

    .cs-card__title {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .cs-card__bottom {
        justify-content: space-between;
        margin-top: 8px;
    }

    .cs-tags--desktop {
        display: none;
    }

    .cs-tags--mobile {
        display: flex;
    }

    .cs-card__dl {
        background: transparent;
    }
}*/


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       DESKTOP  1200px+
       Rounded rect · yellow top block · cream footer
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 780px) {
    .case-studies {
        padding: 120px 40px 90px;
    }

    .case-studies__inner {
        padding-top: 60px;
        max-width:unset;
    }

    .case-studies__heading {
        font-size: 2.6rem;
        margin-bottom:0;
    }

    .case-studies__subtext {
        padding-top: 0px;
    }

    .cs-grid {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 60px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 20px;
    }

    /* Card: rounded rect · cream bg · no inner padding (sections handle it) */
    .cs-card {
        flex-direction: column;
        
        align-items: stretch;
        text-align: center;
        border-radius: 16px;
        border: 2px solid rgba(245,239,226,0.4);
        padding: 12px 12px 0px;
        flex: 0 0 300px;
        max-width:unset;
        width: 300px;

        min-height: unset;
        gap: 0;
        overflow: hidden;
        background: #f5efe2;
        box-shadow: 0 6px 20px rgba(245,239,226,0.15), 0 2px 6px rgba(245,239,226,0.08);
        transition: box-shadow 0.25s ease, transform 0.2s ease;
    }

        .cs-card:hover {
            box-shadow: 0 8px 28px rgba(245,239,226,0.22);
            transform: translateY(-3px);
        }

            .cs-card:hover .dl-icon--default {
                display: none;
            }

            .cs-card:hover .dl-icon--hover {
                display: block;
            }

    /* Hide mobile/tablet elements */
    .cs-card__icon-wrap {
        display: none;
    }

    .cs-card__content {
        display: none;
    }

    .cs-card__bottom {
        display: none;
    }

    /* ── Yellow top block ───────────────────── */
    .cs-card__top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: #e4a11f;
        padding: 40px 40px 12px;
        border-radius: 9px;
        flex: 1; /* grows to fill available space above footer */
    }

        .cs-card__top .cs-card__title {
            display: block;
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #f5efe2;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1;
            margin-bottom: 15px;
        }

            .cs-card__top .cs-card__title::after {
                display: none;
            }

        .cs-card__top .cs-card__stat {
            display: block;
            font-family: 'Oswald', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: black;
            margin-bottom: 12px;
        }

        .cs-card__top .cs-card__divider {
            display: block;
            border: none;
            border-top: 3px solid #D96B2A;
            width: 70%;
            margin: 0 auto 18px;
        }

        .cs-card__top .cs-card__desc {
            font-family: 'Open Sans', sans-serif;
            font-size: 0.82rem;
            color: #0f3236;
            line-height: 1.65;
            text-align: center;
            margin-top: 0;
        }

    /* ── Cream footer band ──────────────────── */
    .cs-card__band {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #f5efe2;
        padding: 18px 12px;
        flex-shrink: 0;
    }

        .cs-card__band .cs-tag {
            color: #D96B2A;
            border-color: #D96B2A;
            background: transparent;
            font-size: 14px;
        }

        .cs-card__band .cs-card__dl {
            background: transparent;
            width: 32px;
            height: 32px;
        }

        .cs-card__band .dl-icon {
            width: 32px;
            height: 32px;
        }

    .cs-cta-btn {
        width: auto;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       CTA
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cs-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top:15px;
}

.cs-cta-btn {
    display: block;
    width: 100%;
    max-width: 380px;
    background: #e4a11f;
    color: #f5efe2;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 15px 28px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease;
    position: relative;
    z-index: 1;
}

    .cs-cta-btn:hover {
        background: #c88d1a;
    }

.cs-cta-sub-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 0px;
    position: relative;
    z-index: 2;
    padding-left: 40px;
}

.cs-cta-arrow {
    width: 55px;
    height: auto;
    display: block;
    margin-top: -20px;
}

.cs-cta-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    font-style: italic;
    color: #f5efe2;
}







/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       CASE STUDIES — Trail Cutter
       Brand colors:
         Forest green  #1f3a1f
         Yellow        #e4a11f
         Teal          #384f45
         Cream         #f5efe2
         Orange        #D96B2A
       Breakpoints:
         Tablet  769px
         Desktop 1200px
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/**, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}*/

/*body {
    font-family: 'Open Sans', sans-serif;
    background: #1f3a1f;
}*/

/* ── Section ──────────────────────────────── */
/*.case-studies {
    background: #384f45;
    padding: 56px 20px 64px;
}

.case-studies__inner {
    max-width: 1100px;
    margin: 0 auto;
}*/

/* ── Heading ──────────────────────────────── */
/*.case-studies__heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f5efe2;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-bottom: 14px;
   
}

.case-studies__subtext {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #f5efe2;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.65;
}*/

/* ── Grid ─────────────────────────────────── */
/*.cs-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       CARD — Mobile base
       Rounded rectangle · horizontal row · full width
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*.cs-card {
    background: #f5efe2;
    border-radius: 16px;
    padding: 30px 18px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    width: 100%;
    max-width: 480px;
    gap: 14px;
    transition: box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(31, 58, 31, 0.1), 0 1px 4px rgba(31, 58, 31, 0.06);
}*/

/* ── Icon wrap — hidden on mobile ────────── */
/*.cs-card__icon-wrap {
    display: none;
}*/
/* REPLACE: transparent PNG ~120×120px */
/*.cs-card__icon {
    width: 66px;
    height: 66px;
    object-fit: contain;
    display: block;
}*/

/* ── Content column ───────────────────────── */
/*.cs-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    flex: 1;
    min-width: 0;
}

.cs-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #384f45;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 8px;
}*/

/* Mobile mid — doubled line */
/*@media (min-width: 375px) and (max-width: 479px) {
    .cs-card__title {
        gap: 18px;
    }

        .cs-card__title::after {
            width: 120px;
        }
}*/

/* Mobile upper — 3x line */
/*@media (min-width: 480px) and (max-width: 539px) {
    .cs-card__title {
        gap: 22px;
    }

        .cs-card__title::after {
            width: 180px;
        }
}

@media (max-width: 539px) {
    .cs-card__title {
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
        font-weight:700;
    }

        .cs-card__title::after {
            content: '';
            width: 60px;
            flex: none;
            height: 3px;
            background: #e4a11f;
            border-radius: 2px;
        }*/
    /* Filled yellow pills on mobile */
    /*.cs-tags--mobile .cs-tag {
        background: #e4a11f;
        border-color: #e4a11f;
        color: #f5efe2;
    }
}

.cs-card__desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: #1f3a1f;
    line-height: 1.6;
    margin-top:10px;
}*/

/* ── Bottom row: tags left · dl right ──────── */
/*.cs-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: -10px;
    gap: 8px;
}*/

/* ── Tag pills ────────────────────────────── */
/*.cs-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cs-tag {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #1f3a1f;
    border: 1.5px solid #1f3a1f;
    border-radius: 20px;
    padding: 3px 9px;
    white-space: nowrap;
}*/
/* Desktop-only tags hidden on mobile/tablet */
/*.cs-tags--desktop {
    display: none;
}

.cs-tags--mobile {
    display: flex;
}*/

/* ── Download button ──────────────────────── */
/*.cs-card__dl {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-decoration: none;
    background: none;*/ /* teal placeholder until image loads */
/*}*/
/* REPLACE: img/icon-dl-dark.png · img/icon-dl-yellow.png · ~36×36px */
/*.dl-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.dl-icon--hover {
    display: none;
}

.dl-icon--default {
    display: block;
}*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       CTA
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*.cs-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
   
}

.cs-cta-btn {
    display: block;
    width: 100%;
    max-width: 380px;
    background: #e4a11f;
    color: #f5efe2;
    font-family: 'Oswald', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 15px 28px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease;
}

    .cs-cta-btn:hover {
        background: #c88d1a;
    }

.cs-cta-sub-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: -5px;
    margin-left:55px;
}*/
/* REPLACE: img/arrow-cta.png · ~50×35px transparent PNG */
/*.cs-cta-arrow {
    width: 55px;
    height: auto;
    display: block;
    margin-top: -25px;
}

.cs-cta-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    font-style: italic;
    color: #f5efe2;
}*/


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       TABLET  769px – 1199px
       Horizontal arch: semicircle left · content right
       Cards stacked full-width up to 560px
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*@media (min-width: 540px) and (max-width: 1199px) {

    .cs-grid {
        align-items: center;
        gap: 22px;
    }

    .cs-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        border-radius: 200px 16px 16px 200px;
        padding: 20px 28px 20px 20px;
        width: 100%;
        max-width: 560px;
        min-height: 160px;
        gap: 0;
    }*/

        /* Hover: yellow outline */
        /*.cs-card:hover {
            box-shadow: 0 0 0 3px #e4a11f;
        }

            .cs-card:hover .dl-icon--default {
                display: none;
            }

            .cs-card:hover .dl-icon--hover {
                display: block;
            }*/

    /* Icon: visible again at tablet, shifted right */
    /*.cs-card__icon-wrap {
        display: flex;
        width: 112px;
        height: 112px;
        border-radius: 50%;
        background: rgba(228, 161, 31, 0.18);
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: 10px;*/ /* pushes icon away from arch edge */
        /*margin-right: 28px;*/ /* widens gap between icon and content */
    /*}

    .cs-card__icon {
        width: 100px;
        height: 100px;
    }*/

    /* Content aligns left */
    /*.cs-card__content {
        align-items: flex-start;
        gap: 0;
        flex: 1;
        min-width: 0;
    }

    .cs-card__title {
        font-size: 1.75rem;
        margin-bottom: 10px;*/ /* tablet: title → desc gap */
    /*}*/

    /* Bottom row: tags left · dl right */
    /*.cs-card__bottom {
        justify-content: space-between;
        margin-top: 8px;
    }

    .cs-tags--desktop {
        display: none;
    }

    .cs-tags--mobile {
        display: flex;
    }

    .cs-card__dl {
        background: transparent;
    }
}*/


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       DESKTOP  1200px+
       Vertical arch · 3-col · width-capped grid
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*@media (min-width: 1200px) {

    .case-studies {
        padding: 120px 40px 90px;
    }
    .case-studies__inner {
        padding-top:60px;
    }
    .case-studies__heading {
       
        font-size: 2.6rem;
        padding-bottom:0px;
    }

    .case-studies__subtext {
       
        font-size: clamp(0.875rem, 2vw, 1rem);
        padding-top:20px;
    }

    .cs-grid {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 80px;*/
        /* Cap the grid so cards don't stretch on ultra-wide */
        /*max-width: 960px;
        margin-left: auto;
        margin-right: auto;
        padding-top:20px;
    }

    .cs-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 180px 180px 0 0;
        padding: 90px 34px 24px 50px;*/
        /* Fixed card width — restricted so 3 cards + gaps fit within 960px */
        /*flex: 0 0 310px;
        width: 300px;
        min-height: unset;
        gap: 0;
        box-shadow: 0 6px 20px rgba(245, 239, 226, 0.15), 0 2px 6px rgba(245, 239, 226, 0.08);
    }

        .cs-card:hover {
            box-shadow: 0 0 0 5px #e4a11f;
        }

            .cs-card:hover .dl-icon--default {
                display: none;
            }

            .cs-card:hover .dl-icon--hover {
                display: block;
            }

    .cs-card__icon-wrap {
        display: hidden;*/ /* re-enable — hidden at mobile base */
        /*width: 120px;
        height: 120px;
        border-radius: 50%;
        background: none;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-right: 0;
        margin-bottom: 24px;*/ /* desktop: icon → title gap */
    /*}

    .cs-card__icon {
        width: 108px;
        height: 108px;
    }

    .cs-card__content {
        align-items: flex-start;
        gap: 0;*/ /* zero gap — spacing handled by targeted margins below */
        /*flex: 1;
        width: 100%;
    }

    .cs-card__title {
        font-size: 1.9rem;
        margin-top:10px;
        margin-bottom: 10px;*/ /* title → pills */
    /*}*/

    /* Desktop: pills sit above description */
    /*.cs-tags--desktop {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding-top:10px;
        margin-bottom: 20px;*/ /* pills → description gap (increased per request) */
    /*}

        .cs-tags--desktop .cs-tag {
            background: #e4a11f;
            border-color: #e4a11f;
            color: #f5efe2;
        }

    .cs-tags--mobile {
        display: none;
    }

    .cs-card__desc {
        font-size: 0.85rem;
        text-align:left;
        
    }*/

    /* Push dl to bottom-right */
    /*.cs-card__bottom {
        justify-content: flex-end;
        align-self: stretch;
        margin-top: auto;
        padding-top: 0px;
    }

    .cs-card__dl {
        background: transparent;
    }

    .dl-icon {
        width: 40px;
        height: 40px;

    }

    .cs-cta-btn {
        width: auto;
    }
}*/
