/* =========================================================
   TEN ONE RESORT
   Policies Page
   policies.css
   ========================================================= */


/* =========================================================
   01. SHARED CONTAINER
   ========================================================= */

.policies-container {
    position: relative;

    width:
        min(
            calc(
                100% -
                (var(--container-padding) * 2)
            ),
            1180px
        );

    margin-inline: auto;
}


/* =========================================================
   02. POLICIES HERO
   ========================================================= */

.policies-hero {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 46vh;

    padding:
        145px 0
        78px;

    overflow: hidden;

    isolation: isolate;

    background:
        url("../images/pol_bg.avif");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}


/* =========================================================
   03. HERO LEFT WHITE FADE
   ========================================================= */

.policies-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,

            rgba(255, 255, 255, 0.99) 0%,

            rgba(255, 255, 255, 0.97) 16%,

            rgba(247, 248, 243, 0.91) 30%,

            rgba(247, 248, 243, 0.71) 45%,

            rgba(247, 248, 243, 0.42) 62%,

            rgba(247, 248, 243, 0.15) 80%,

            rgba(247, 248, 243, 0.03) 93%,

            rgba(247, 248, 243, 0) 100%
        );
}


/* =========================================================
   04. HERO ATMOSPHERIC WASH
   ========================================================= */

.policies-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,

            rgba(255, 255, 255, 0.74) 0%,

            rgba(255, 255, 255, 0.42) 20%,

            rgba(255, 255, 255, 0.14) 44%,

            rgba(255, 255, 255, 0.03) 72%,

            rgba(255, 255, 255, 0) 100%
        );
}


/* =========================================================
   05. HERO CONTENT
   ========================================================= */

.policies-hero
.policies-container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   06. HERO EYEBROW
   ========================================================= */

.policies-hero-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--color-primary-light);

    font-family:
        var(--font-body-strong);

    font-size: 0.76rem;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.policies-hero-eyebrow::before {
    content: "";

    width: 38px;

    height: 1px;

    flex-shrink: 0;

    background: var(--color-primary-light);
}


/* =========================================================
   07. HERO TITLE
   ========================================================= */

.policies-hero-title {
    max-width: 800px;

    margin:
        0 0
        21px;

    color: var(--color-text-dark);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            3.6rem,
            7vw,
            6.1rem
        );

    font-weight:
        var(--font-weight-semibold);

    line-height: 0.88;

    letter-spacing: -0.045em;
}


.policies-hero-title span {
    display: block;

    color: var(--color-primary);
}


/* =========================================================
   08. HERO DESCRIPTION
   ========================================================= */

.policies-hero-description {
    max-width: 680px;

    margin: 0;

    color: #50615a;

    font-family:
        var(--font-body-strong);

    font-size: 1rem;

    font-weight: 500;

    line-height: 1.8;
}


/* =========================================================
   09. INTRODUCTION
   ========================================================= */

.policies-introduction {
    position: relative;

    padding:
        74px 0
        62px;

    overflow: hidden;

    background:
        var(--color-background);

    isolation: isolate;
}


.policies-introduction::before {
    content: "";

    position: absolute;

    top: -220px;

    right: -190px;

    width: 520px;

    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(95, 169, 184, 0.075) 0%,
            rgba(95, 169, 184, 0) 72%
        );

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   10. INTRO GRID
   ========================================================= */

.policies-introduction-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.82fr);

    align-items: end;

    gap:
        clamp(
            3rem,
            7vw,
            7rem
        );
}


/* =========================================================
   11. SHARED SECTION EYEBROW
   ========================================================= */

.policies-section-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;

    color: var(--color-primary-light);

    font-family:
        var(--font-body-strong);

    font-size: 0.74rem;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.policies-section-eyebrow::before {
    content: "";

    width: 30px;

    height: 1px;

    flex-shrink: 0;

    background: var(--color-primary-light);
}


/* =========================================================
   12. SHARED SECTION TITLE
   ========================================================= */

.policies-section-title {
    max-width: 680px;

    margin: 0;

    color: var(--color-text-dark);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.3rem
        );

    font-weight:
        var(--font-weight-semibold);

    line-height: 0.93;

    letter-spacing: -0.035em;
}


.policies-section-title span {
    display: block;

    color: var(--color-primary);
}


/* =========================================================
   13. INTRO TEXT
   ========================================================= */

.policies-introduction-grid
> div:last-child {
    max-width: 530px;

    margin-left: auto;
}


.policies-introduction-grid
> div:last-child p {
    margin:
        0 0
        16px;

    color: var(--color-text-light);

    font-family:
        var(--font-body-strong);

    font-size: 0.9rem;

    font-weight: 500;

    line-height: 1.8;
}


.policies-introduction-grid
> div:last-child p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   14. POLICY OVERVIEW
   ========================================================= */

.policy-overview-section {
    position: relative;

    padding:
        24px 0
        88px;

    background:
        var(--color-background);
}


/* =========================================================
   15. OVERVIEW HEADER
   ========================================================= */

.policy-overview-header {
    max-width: 760px;

    margin-bottom: 28px;
}


/* =========================================================
   16. OVERVIEW GRID
   ========================================================= */

.policy-overview-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 12px;
}


/* =========================================================
   17. OVERVIEW CARD
   ========================================================= */

.policy-overview-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 285px;

    padding:
        22px
        22px
        20px;

    overflow: hidden;

    border:
        1px solid
        rgba(22, 74, 58, 0.09);

    border-radius: 18px;

    color: var(--color-text-dark);

    background:
        rgba(
            247,
            248,
            243,
            0.86
        );

    box-shadow:
        0 8px 26px
        rgba(
            22,
            74,
            58,
            0.045
        );

    text-decoration: none;

    transition:
        transform
        var(--transition-base),

        border-color
        var(--transition-base),

        background-color
        var(--transition-base),

        box-shadow
        var(--transition-base);
}


.policy-overview-card::after {
    content: "";

    position: absolute;

    right: -85px;

    bottom: -110px;

    width: 240px;

    height: 240px;

    border-radius: 50%;

    border:
        1px solid
        rgba(
            63,
            118,
            85,
            0.06
        );

    box-shadow:
        0 0 0 34px
        rgba(
            63,
            118,
            85,
            0.025
        ),
        0 0 0 68px
        rgba(
            63,
            118,
            85,
            0.018
        );

    pointer-events: none;
}


.policy-overview-card:hover {
    color: var(--color-text-dark);

    transform:
        translateY(-4px);

    border-color:
        rgba(
            63,
            118,
            85,
            0.19
        );

    background:
        var(--color-white);

    box-shadow:
        0 16px 36px
        rgba(
            22,
            74,
            58,
            0.09
        );
}


/* =========================================================
   18. HIGHLIGHT CARD
   ========================================================= */

.policy-overview-highlight {
    color: var(--color-white);

    border-color:
        rgba(
            255,
            255,
            255,
            0.10
        );

    background:
        linear-gradient(
            135deg,
            #103D30 0%,
            #18523F 100%
        );

    box-shadow:
        0 14px 36px
        rgba(
            22,
            74,
            58,
            0.13
        );
}


.policy-overview-highlight:hover {
    color: var(--color-white);

    background:
        linear-gradient(
            135deg,
            #103D30 0%,
            #18523F 100%
        );
}


/* =========================================================
   19. OVERVIEW NUMBER
   ========================================================= */

.policy-overview-number {
    color:
        rgba(
            63,
            118,
            85,
            0.48
        );

    font-family:
        var(--font-body-strong);

    font-size:
        0.61rem;

    font-weight: 700;

    letter-spacing:
        0.13em;
}


.policy-overview-highlight
.policy-overview-number {
    color:
        rgba(
            255,
            255,
            255,
            0.45
        );
}


/* =========================================================
   20. OVERVIEW ICON
   ========================================================= */

.policy-overview-icon {
    display:
        inline-flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    margin-top: 20px;

    border:
        1px solid
        rgba(
            63,
            118,
            85,
            0.15
        );

    border-radius: 50%;

    color: var(--color-primary);

    background:
        rgba(
            63,
            118,
            85,
            0.07
        );

    font-size: 0.78rem;
}


.policy-overview-highlight
.policy-overview-icon {
    color:
        rgba(
            255,
            255,
            255,
            0.92
        );

    border-color:
        rgba(
            255,
            255,
            255,
            0.18
        );

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );
}


/* =========================================================
   21. OVERVIEW TITLE
   ========================================================= */

.policy-overview-card h3 {
    position: relative;

    z-index: 2;

    max-width: 250px;

    margin:
        18px 0
        8px;

    color: var(--color-text-dark);

    font-family:
        var(--font-heading);

    font-size: 1.52rem;

    font-weight:
        var(--font-weight-semibold);

    line-height: 1;

    letter-spacing: -0.015em;
}


.policy-overview-highlight h3 {
    color:
        var(--color-white);
}


/* =========================================================
   22. OVERVIEW DESCRIPTION
   ========================================================= */

.policy-overview-card p {
    position: relative;

    z-index: 2;

    margin:
        0;

    color: var(--color-text-light);

    font-family:
        var(--font-body-strong);

    font-size: 0.87rem;

    font-weight: 500;

    line-height: 1.7;
}


.policy-overview-highlight p {
    color:
        rgba(
            255,
            255,
            255,
            0.68
        );
}


/* =========================================================
   23. OVERVIEW ARROW
   ========================================================= */

.policy-overview-arrow {
    display:
        inline-flex;

    align-items: center;

    justify-content: center;

    width: 30px;

    height: 30px;

    margin-top: auto;

    border:
        1px solid
        rgba(
            63,
            118,
            85,
            0.14
        );

    border-radius: 50%;

    color: var(--color-primary);

    background:
        rgba(
            63,
            118,
            85,
            0.05
        );

    font-size: 0.63rem;

    transition:
        transform
        var(--transition-base);
}


.policy-overview-highlight
.policy-overview-arrow {
    color:
        var(--color-primary);

    border-color:
        rgba(
            255,
            255,
            255,
            0.18
        );

    background:
        var(--color-white);
}


.policy-overview-card:hover
.policy-overview-arrow {
    transform:
        translateY(3px);
}


/* =========================================================
   24. POLICY DETAIL SECTION
   ========================================================= */

.policy-detail-section {
    position: relative;

    padding:
        90px 0;

    overflow: hidden;

    background:
        var(--color-background);

    isolation: isolate;
}


.policy-detail-alt {
    background:
        #F6F7F2;
}


/* =========================================================
   25. DETAIL ATMOSPHERE
   ========================================================= */

.policy-detail-section::before {
    content: "";

    position: absolute;

    top: 50%;

    right: -260px;

    width: 580px;

    height: 580px;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(
                95,
                169,
                184,
                0.065
            ) 0%,
            rgba(
                95,
                169,
                184,
                0
            ) 72%
        );

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   26. DETAIL LAYOUT
   ========================================================= */

.policy-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.78fr)
        minmax(0, 1.15fr);

    align-items: start;

    gap:
        clamp(
            3rem,
            7vw,
            7rem
        );
}


/* =========================================================
   27. DETAIL INTRO
   ========================================================= */

.policy-detail-intro {
    position: sticky;

    top: 110px;
}


.policy-number {
    display: block;

    margin-bottom: 14px;

    color:
        rgba(
            63,
            118,
            85,
            0.42
        );

    font-family:
        var(--font-body-strong);

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing:
        0.16em;
}


.policy-detail-title {
    max-width: 620px;

    margin: 0;

    color: var(--color-text-dark);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.4rem
        );

    font-weight:
        var(--font-weight-semibold);

    line-height: 0.92;

    letter-spacing:
        -0.035em;
}


.policy-detail-title span {
    display: block;

    color: var(--color-primary);
}


.policy-detail-intro > p {
    max-width: 450px;

    margin:
        21px 0
        0;

    color: var(--color-text-light);

    font-family:
        var(--font-body-strong);

    font-size: 0.9rem;

    font-weight: 500;

    line-height: 1.78;
}


/* =========================================================
   28. DETAIL CONTENT
   ========================================================= */

.policy-detail-content {
    display:
        flex;

    flex-direction:
        column;

    gap: 7px;
}


/* =========================================================
   29. CONTENT CARD
   ========================================================= */

.policy-content-card {
    position: relative;

    display:
        grid;

    grid-template-columns:
        44px
        minmax(0, 1fr);

    align-items: start;

    gap: 15px;

    padding:
        20px
        21px;

    border:
        1px solid
        rgba(
            22,
            74,
            58,
            0.08
        );

    border-radius: 16px;

    background:
        rgba(
            255,
            255,
            255,
            0.68
        );

    box-shadow:
        0 7px 22px
        rgba(
            22,
            74,
            58,
            0.035
        );

    transition:
        transform
        var(--transition-base),

        border-color
        var(--transition-base),

        background-color
        var(--transition-base);
}


.policy-content-card:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(
            63,
            118,
            85,
            0.16
        );

    background:
        var(--color-white);
}


/* =========================================================
   30. IMPORTANT CONTENT CARD
   ========================================================= */

.policy-content-important {
    border-color:
        rgba(
            63,
            118,
            85,
            0.16
        );

    background:
        linear-gradient(
            135deg,
            rgba(
                240,
                246,
                242,
                0.96
            ),
            rgba(
                255,
                255,
                255,
                0.82
            )
        );
}


/* =========================================================
   31. REFUND CARD
   ========================================================= */

.policy-refund-card {
    border-color:
        rgba(
            95,
            169,
            184,
            0.15
        );

    background:
        linear-gradient(
            135deg,
            rgba(
                238,
                247,
                246,
                0.95
            ),
            rgba(
                255,
                255,
                255,
                0.82
            )
        );
}


/* =========================================================
   32. CONTENT ICON
   ========================================================= */

.policy-content-icon {
    display:
        inline-flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    border:
        1px solid
        rgba(
            63,
            118,
            85,
            0.14
        );

    border-radius: 50%;

    color: var(--color-primary);

    background:
        rgba(
            63,
            118,
            85,
            0.06
        );

    font-size: 0.76rem;
}


/* =========================================================
   33. CONTENT TITLE
   ========================================================= */

.policy-content-card h3 {
    margin:
        2px 0
        7px;

    color:
        var(--color-text-dark);

    font-family:
        var(--font-body-strong);

    font-size: 0.9rem;

    font-weight: 700;

    line-height: 1.4;
}


/* =========================================================
   34. CONTENT TEXT
   ========================================================= */

.policy-content-card p {
    max-width: 650px;

    margin: 0;

    color:
        var(--color-text-light);

    font-family:
        var(--font-body-strong);

    font-size: 0.85rem;

    font-weight: 500;

    line-height: 1.74;
}


/* =========================================================
   35. ID LIST
   ========================================================= */

.policy-id-list {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        7px;

    margin-top:
        13px;
}


.policy-id-list span {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        5px;

    padding:
        6px
        9px;

    border:
        1px solid
        rgba(
            63,
            118,
            85,
            0.11
        );

    border-radius:
        var(--radius-full);

    color:
        var(--color-primary);

    background:
        rgba(
            63,
            118,
            85,
            0.05
        );

    font-family:
        var(--font-body-strong);

    font-size:
        0.82rem;

    font-weight:
        700;
}


.policy-id-list i {
    font-size:
        0.7rem;
}


/* =========================================================
   36. PRIVACY SECTION
   ========================================================= */

.privacy-policy-section {
    position:
        relative;

    padding:
        92px 0;

    overflow:
        hidden;

    background:
        var(--color-background);

    isolation:
        isolate;
}


.privacy-policy-section::before {
    content:
        "";

    position:
        absolute;

    left:
        -220px;

    top:
        -220px;

    width:
        540px;

    height:
        540px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(
                63,
                118,
                85,
                0.07
            ) 0%,
            rgba(
                63,
                118,
                85,
                0
            ) 72%
        );

    pointer-events:
        none;

    z-index:
        -1;
}


/* =========================================================
   37. PRIVACY HEADER
   ========================================================= */

.privacy-header {
    max-width:
        760px;

    margin-bottom:
        32px;
}


.privacy-header > p {
    max-width:
        670px;

    margin:
        20px 0
        0;

    color:
        var(--color-text-light);

    font-family:
        var(--font-body-strong);

    font-size:
        0.9rem;

    font-weight:
        500;

    line-height:
        1.78;
}


/* =========================================================
   38. PRIVACY GRID
   ========================================================= */

.privacy-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap:
        12px;
}


/* =========================================================
   39. PRIVACY CARD
   ========================================================= */

.privacy-card {
    position:
        relative;

    min-height:
        290px;

    padding:
        24px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(
            22,
            74,
            58,
            0.08
        );

    border-radius:
        18px;

    background:
        rgba(
            247,
            248,
            243,
            0.82
        );

    box-shadow:
        0 8px 25px
        rgba(
            22,
            74,
            58,
            0.04
        );
}


.privacy-card::after {
    content:
        "";

    position:
        absolute;

    right:
        -100px;

    bottom:
        -120px;

    width:
        250px;

    height:
        250px;

    border:
        1px solid
        rgba(
            63,
            118,
            85,
            0.06
        );

    border-radius:
        50%;

    box-shadow:
        0 0 0 35px
        rgba(
            63,
            118,
            85,
            0.022
        );
}


/* =========================================================
   40. PRIVACY ICON
   ========================================================= */

.privacy-card-icon {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        42px;

    height:
        42px;

    border:
        1px solid
        rgba(
            63,
            118,
            85,
            0.14
        );

    border-radius:
        50%;

    color:
        var(--color-primary);

    background:
        rgba(
            63,
            118,
            85,
            0.06
        );

    font-size:
        0.77rem;
}


/* =========================================================
   41. PRIVACY CARD TITLE
   ========================================================= */

.privacy-card h3 {
    margin:
        20px 0
        10px;

    color:
        var(--color-text-dark);

    font-family:
        var(--font-heading);

    font-size:
        1.65rem;

    font-weight:
        var(--font-weight-semibold);

    line-height:
        1;

    letter-spacing:
        -0.015em;
}


/* =========================================================
   42. PRIVACY TEXT
   ========================================================= */

.privacy-card p {
    max-width:
        540px;

    margin:
        0 0
        12px;

    color:
        var(--color-text-light);

    font-family:
        var(--font-body-strong);

    font-size:
        0.83rem;

    font-weight:
        500;

    line-height:
        1.72;
}


/* =========================================================
   43. PRIVACY LIST
   ========================================================= */

.privacy-card ul {
    display:
        flex;

    flex-direction:
        column;

    gap:
        7px;

    margin:
        13px 0
        0;

    padding:
        0;

    list-style:
        none;
}


.privacy-card li {
    position:
        relative;

    padding-left:
        18px;

    color:
        var(--color-text-light);

    font-family:
        var(--font-body-strong);

    font-size:
        0.84rem;

    font-weight:
        500;

    line-height:
        1.55;
}


.privacy-card li::before {
    content:
        "";

    position:
        absolute;

    left:
        0;

    top:
        0.55em;

    width:
        6px;

    height:
        6px;

    border-radius:
        50%;

    background:
        var(--color-primary-light);
}


/* =========================================================
   44. JURISDICTION SECTION
   ========================================================= */

.policy-jurisdiction-section {
    padding:
        12px
        0
        85px;

    background:
        var(--color-background);
}


/* =========================================================
   45. JURISDICTION CARD
   ========================================================= */

.policy-jurisdiction-card {
    position:
        relative;

    display:
        grid;

    grid-template-columns:
        52px
        minmax(0, 1fr);

    gap:
        22px;

    align-items:
        start;

    padding:
        34px
        38px;

    overflow:
        hidden;

    border-radius:
        20px;

    background:
        linear-gradient(
            125deg,
            #103D30 0%,
            #164A3A 55%,
            #27634D 100%
        );

    box-shadow:
        0 18px 46px
        rgba(
            22,
            74,
            58,
            0.14
        );
}


.policy-jurisdiction-card::before {
    content:
        "";

    position:
        absolute;

    right:
        -130px;

    top:
        -170px;

    width:
        420px;

    height:
        420px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(
                95,
                169,
                184,
                0.18
            ) 0%,
            rgba(
                95,
                169,
                184,
                0
            ) 72%
        );

    pointer-events:
        none;
}


/* =========================================================
   46. JURISDICTION ICON
   ========================================================= */

.policy-jurisdiction-icon {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        52px;

    height:
        52px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.20
        );

    border-radius:
        50%;

    color:
        #C5DDD0;

    background:
        rgba(
            255,
            255,
            255,
            0.07
        );

    font-size:
        0.96rem;
}


/* =========================================================
   47. JURISDICTION CONTENT
   ========================================================= */

.policy-jurisdiction-card
> div {
    position:
        relative;

    z-index:
        2;
}


.policy-jurisdiction-card
.policies-section-eyebrow {
    color:
        rgba(
            255,
            255,
            255,
            0.55
        );
}


.policy-jurisdiction-card
.policies-section-eyebrow::before {
    background:
        rgba(
            255,
            255,
            255,
            0.45
        );
}


.policy-jurisdiction-card h2 {
    margin:
        0 0
        12px;

    color:
        var(--color-white);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            2rem,
            4vw,
            3.2rem
        );

    font-weight:
        var(--font-weight-semibold);

    line-height:
        0.95;
}


.policy-jurisdiction-card h2 span {
    color:
        #BBD8C6;
}


.policy-jurisdiction-card p {
    max-width:
        700px;

    margin:
        0;

    color:
        rgba(
            255,
            255,
            255,
            0.68
        );

    font-family:
        var(--font-body-strong);

    font-size:
        0.85rem;

    font-weight:
        500;

    line-height:
        1.72;
}


/* =========================================================
   48. CONTACT CTA
   ========================================================= */

.policies-contact-section {
    padding:
        16px
        0
        95px;

    background:
        var(--color-background);
}


.policies-contact-card {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        25px;

    min-height:
        215px;

    padding:
        38px
        42px;

    border:
        1px solid
        rgba(
            22,
            74,
            58,
            0.08
        );

    border-radius:
        20px;

    background:
        rgba(
            247,
            248,
            243,
            0.82
        );

    box-shadow:
        0 12px 38px
        rgba(
            22,
            74,
            58,
            0.055
        );
}


.policies-contact-card
.policies-section-eyebrow {
    margin-bottom:
        10px;
}


.policies-contact-card h2 {
    max-width:
        570px;

    margin:
        0 0
        11px;

    color:
        var(--color-text-dark);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            2.4rem,
            4.6vw,
            3.65rem
        );

    font-weight:
        var(--font-weight-semibold);

    line-height:
        0.94;

    letter-spacing:
        -0.025em;
}


.policies-contact-card h2 span {
    display:
        block;

    color:
        var(--color-primary);
}


.policies-contact-card p {
    max-width:
        520px;

    margin:
        0;

    color:
        var(--color-text-light);

    font-family:
        var(--font-body-strong);

    font-size:
        0.9rem;

    font-weight:
        500;

    line-height:
        1.72;
}


/* =========================================================
   49. CONTACT BUTTON
   ========================================================= */

.policies-contact-button {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    min-height:
        49px;

    padding:
        0 9px
        0 17px;

    flex-shrink:
        0;

    border:
        1px solid
        rgba(
            63,
            118,
            85,
            0.20
        );

    border-radius:
        var(--radius-full);

    color:
        var(--color-white);

    background:
        var(--color-primary);

    box-shadow:
        0 10px 26px
        rgba(
            22,
            74,
            58,
            0.12
        );

    font-family:
        var(--font-body-strong);

    font-size:
        0.82rem;

    font-weight:
        700;

    text-decoration:
        none;

    transition:
        transform
        var(--transition-base),

        background-color
        var(--transition-base),

        box-shadow
        var(--transition-base);
}


.policies-contact-button:hover {
    color:
        var(--color-white);

    background:
        var(--color-primary-dark);

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px
        rgba(
            22,
            74,
            58,
            0.18
        );
}


.policies-contact-button
.fa-arrow-right {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        28px;

    height:
        28px;

    border-radius:
        50%;

    color:
        var(--color-primary);

    background:
        var(--color-white);

    transition:
        transform
        var(--transition-base);
}


.policies-contact-button:hover
.fa-arrow-right {
    transform:
        translateX(3px);
}


/* =========================================================
   50. TABLET
   769px - 1100px
   ========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

    .policies-hero {
        min-height:
            41vh;

        padding:
            135px 0
            65px;

        background-position:
            center center;
    }


    .policies-hero-title {
        font-size:
            clamp(
                3.2rem,
                7vw,
                5.1rem
            );
    }


    .policies-hero-description {
        display:none;
        max-width:
            590px;

        font-size:
            0.84rem;
    }


    .policies-introduction {
        padding:
            60px 0
            52px;
    }


    .policies-introduction-grid {
        gap:
            3rem;
    }


    .policies-section-title {
        font-size:
            clamp(
                2.6rem,
                5vw,
                3.8rem
            );
    }


    .policy-overview-section {
        padding:
            18px 0
            70px;
    }


    .policy-overview-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .policy-overview-card {
        min-height:
            250px;
    }


    .policy-detail-section {
        padding:
            72px 0;
    }


    .policy-detail-layout {
        gap:
            3.5rem;
    }


    .privacy-policy-section {
        padding:
            72px 0;
    }


    .policy-jurisdiction-card {
        padding:
            30px;
    }


    .policies-contact-card {
        padding:
            32px;
    }

}


/* =========================================================
   51. MOBILE
   <= 768px
   ========================================================= */

@media (max-width: 768px) {

    .policies-container {
        width:
            calc(
                100% -
                (var(--container-padding) * 2)
            );
    }


    /* =====================================================
       HERO
       ===================================================== */

    .policies-hero {
        min-height:
            47vh;

        padding:
            120px 0
            55px;

        background-position:
            62% center;

        background-attachment:
            scroll;
    }


    .policies-hero::before {
        background:
            linear-gradient(
                180deg,

                rgba(255, 255, 255, 0.98) 0%,

                rgba(255, 255, 255, 0.91) 14%,

                rgba(247, 248, 243, 0.70) 31%,

                rgba(247, 248, 243, 0.43) 50%,

                rgba(247, 248, 243, 0.15) 71%,

                rgba(247, 248, 243, 0.03) 88%,

                rgba(247, 248, 243, 0) 100%
            );
    }


    .policies-hero::after {
        background:
            linear-gradient(
                90deg,

                rgba(255, 255, 255, 0.60) 0%,

                rgba(255, 255, 255, 0.35) 27%,

                rgba(255, 255, 255, 0.12) 53%,

                rgba(255, 255, 255, 0) 80%
            );
    }


    .policies-hero-eyebrow {
        margin-bottom:
            11px;

        font-size:
            0.66rem;

        letter-spacing:
            0.14em;
    }


    .policies-hero-eyebrow::before {
        width:
            27px;
    }


    .policies-hero-title {
        max-width:
            100%;

        margin-bottom:
            16px;

        font-size:
            clamp(
                2.65rem,
                11vw,
                3.8rem
            );

        line-height:
            0.92;
    }


    .policies-hero-description {
        display:none;
        max-width:
            100%;

        font-size:
            0.75rem;

        line-height:
            1.72;

        color:
            #43554e;

    }


    /* =====================================================
       INTRODUCTION
       ===================================================== */

    .policies-introduction {
        padding:
            52px 0
            42px;
    }


    .policies-introduction-grid {
        display:
            flex;

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            1.5rem;
    }


    .policies-section-eyebrow {
        margin-bottom:
            10px;

        font-size:
            0.61rem;
    }


    .policies-section-title {
        font-size:
            clamp(
                2.25rem,
                10vw,
                3.3rem
            );

        line-height:
            0.94;
    }


    .policies-introduction-grid
    > div:last-child {
        max-width:
            100%;

        margin-left:
            0;
    }


    .policies-introduction-grid
    > div:last-child p {
        font-size:
            0.84rem;

        line-height:
            1.72;
    }


    /* =====================================================
       OVERVIEW
       ===================================================== */

    .policy-overview-section {
        padding:
            16px 0
            60px;
    }


    .policy-overview-grid {
        grid-template-columns:
            1fr;

        gap:
            9px;
    }


    .policy-overview-card {
        min-height:
            215px;

        padding:
            19px;

        border-radius:
            15px;
    }


    .policy-overview-icon {
        width:
            38px;

        height:
            38px;

        margin-top:
            17px;
    }


    .policy-overview-card h3 {
        max-width:
            300px;

        margin:
            16px 0
            7px;

        font-size:
            1.42rem;
    }


    .policy-overview-card p {
        max-width:
            500px;

        font-size:
            0.8rem;

        line-height:
            1.68;
    }


    /* =====================================================
       DETAIL SECTIONS
       ===================================================== */

    .policy-detail-section {
        padding:
            62px 0;
    }


    .policy-detail-layout {
        display:
            flex;

        flex-direction:
            column;

        gap:
            2.5rem;
    }


    .policy-detail-intro {
        position:
            relative;

        top:
            auto;
    }


    .policy-number {
        margin-bottom:
            10px;

        font-size:
            0.59rem;
    }


    .policy-detail-title {
        font-size:
            clamp(
                2.25rem,
                10vw,
                3.35rem
            );

        line-height:
            0.93;
    }


    .policy-detail-intro > p {
        max-width:
            100%;

        margin-top:
            15px;

        font-size:
            0.85rem;

        line-height:
            1.7;
    }


    .policy-detail-content {
        gap:
            8px;
    }


    .policy-content-card {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        gap:
            11px;

        padding:
            16px;

        border-radius:
            14px;
    }


    .policy-content-icon {
        width:
            37px;

        height:
            37px;

        font-size:
            0.68rem;
    }


    .policy-content-card h3 {
        margin-top:
            1px;

        font-size:
            0.9rem;
    }


    .policy-content-card p {
        font-size:
            0.8rem;

        line-height:
            1.68;
    }


    .policy-id-list {
        gap:
            5px;

        margin-top:
            10px;
    }


    .policy-id-list span {
        padding:
            5px
            8px;

        font-size:
            0.85rem;
    }


    /* =====================================================
       PRIVACY
       ===================================================== */

    .privacy-policy-section {
        padding:
            64px 0;
    }


    .privacy-header {
        margin-bottom:
            23px;
    }


    .privacy-header > p {
        max-width:
            100%;

        margin-top:
            15px;

        font-size:
            0.85rem;

        line-height:
            1.7;
    }


    .privacy-grid {
        grid-template-columns:
            1fr;

        gap:
            9px;
    }


    .privacy-card {
        min-height:
            225px;

        padding:
            20px;

        border-radius:
            15px;
    }


    .privacy-card-icon {
        width:
            38px;

        height:
            38px;

        font-size:
            0.70rem;
    }


    .privacy-card h3 {
        margin:
            17px 0
            9px;

        font-size:
            1.62rem;
    }


    .privacy-card p {
        font-size:
            0.8rem;

        line-height:
            1.68;
    }


    .privacy-card li {
        padding-left:
            16px;

        font-size:
            0.75rem;
    }


    /* =====================================================
       JURISDICTION
       ===================================================== */

    .policy-jurisdiction-section {
        padding:
            5px 0
            60px;
    }


    .policy-jurisdiction-card {
        display:
            flex;

        flex-direction:
            column;

        gap:
            17px;

        padding:
            27px
            20px;

        border-radius:
            18px;
    }


    .policy-jurisdiction-icon {
        width:
            45px;

        height:
            45px;

        font-size:
            0.86rem;
    }


    .policy-jurisdiction-card h2 {
        font-size:
            clamp(
                2rem,
                9vw,
                3rem
            );
    }


    .policy-jurisdiction-card p {
        font-size:
            0.86rem;

        line-height:
            1.68;
    }


    /* =====================================================
       CONTACT CTA
       ===================================================== */

    .policies-contact-section {
        padding:
            5px 0
            65px;
    }


    .policies-contact-card {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            20px;

        min-height:
            290px;

        padding:
            29px
            20px;

        border-radius:
            17px;
    }


    .policies-contact-card h2 {
        font-size:
            clamp(
                2.1rem,
                9vw,
                3rem
            );
    }


    .policies-contact-card p {
        font-size:
            0.86rem;

        line-height:
            1.68;
    }


    .policies-contact-button {
        width:
            100%;

        justify-content:
            space-between;

        min-height:
            45px;

        font-size:
            0.8rem;
    }

}


/* =========================================================
   52. SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {

    .policies-hero {
        min-height:
            45vh;

        padding:
            110px 0
            48px;
    }


    .policies-hero-title {
        font-size:
            clamp(
                2.35rem,
                12vw,
                3.1rem
            );
    }


    .policies-hero-description {
        display:none;
        font-size:
            0.69rem;
    }


    .policies-introduction {
        padding:
            45px 0
            35px;
    }


    .policies-section-title {
        font-size:
            clamp(
                2.05rem,
                11vw,
                2.85rem
            );
    }


    .policy-overview-section {
        padding:
            13px 0
            52px;
    }


    .policy-overview-card {
        min-height:
            200px;

        padding:
            17px;
    }


    .policy-overview-card h3 {
        font-size:
            1.30rem;
    }


    .policy-overview-card p {
        font-size:
            0.75rem;
    }


    .policy-detail-section {
        padding:
            55px 0;
    }


    .policy-detail-title {
        font-size:
            clamp(
                2.05rem,
                11vw,
                2.85rem
            );
    }


    .policy-content-card {
        padding:
            14px;
    }


    .policy-content-icon {
        width:
            34px;

        height:
            34px;
    }


    .policy-content-card h3 {
        font-size:
            0.67rem;
    }


    .policy-content-card p {
        font-size:
            0.59rem;
    }


    .policy-id-list span {
        font-size:
            0.75rem;
    }


    .privacy-policy-section {
        padding:
            57px 0;
    }


    .privacy-card {
        min-height:
            210px;

        padding:
            17px;
    }


    .privacy-card h3 {
        font-size:
            1.45rem;
    }


    .privacy-card p {
        font-size:
            0.82rem;
    }


    .privacy-card li {
        font-size:
            0.8rem;
    }


    .policy-jurisdiction-card {
        padding:
            24px
            17px;
    }


    .policy-jurisdiction-card h2 {
        font-size:
            2.02rem;
    }


    .policy-jurisdiction-card p {
        font-size:
            0.87rem;
    }


    .policies-contact-card {
        min-height:
            275px;

        padding:
            25px
            17px;
    }


    .policies-contact-card h2 {
        font-size:
            2rem;
    }


    .policies-contact-card p {
        font-size:
            0.81rem;
    }

}


/* =========================================================
   53. VERY SMALL PHONES
   <= 375px
   ========================================================= */

@media (max-width: 375px) {

    .policies-hero {
        min-height:
            43vh;

        padding:
            104px 0
            43px;
    }


    .policies-hero-title {
        font-size:
            2.25rem;
    }


    .policies-hero-description {
        display:none;
        font-size:
            0.65rem;
    }


    .policy-overview-card {
        min-height:
            190px;
    }


    .policy-overview-card h3 {
        font-size:
            1.23rem;
    }


    .policy-overview-card p {
        font-size:
            0.8rem;
    }


    .policy-detail-title {
        font-size:
            2.05rem;
    }


    .policy-content-card {
        grid-template-columns:
            31px
            minmax(0, 1fr);

        gap:
            6px;
    }


    .policy-content-icon {
        width:
            31px;

        height:
            31px;
    }


    .policy-content-card h3 {
        font-size:
            0.9rem;
    }


    .policy-content-card p {
        font-size:
            0.8rem;
    }


    .privacy-card h3 {
        font-size:
            1.4rem;
    }


    .privacy-card p,
    .privacy-card li {
        font-size:
            0.8rem;
    }


    .policy-jurisdiction-card h2 {
        font-size:
            1.92rem;
    }


    .policy-jurisdiction-card p {
        font-size:
            0.86rem;
    }


    .policies-contact-card {
        min-height:
            260px;
    }


    .policies-contact-card h2 {
        font-size:
            1.92rem;
    }

}


/* =========================================================
   54. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .policy-overview-card,
    .policy-overview-arrow,
    .policy-content-card,
    .policies-contact-button,
    .policies-contact-button
    .fa-arrow-right {
        transition:
            none;
    }


    .policy-overview-card:hover,
    .policy-content-card:hover,
    .policies-contact-button:hover {
        transform:
            none;
    }


    .policies-contact-button:hover
    .fa-arrow-right {
        transform:
            none;
    }

}