/* =========================================
   KRAZYDINZ PRIVACY PAGE
========================================= */


/* -----------------------------------------
   SOLID HEADER
----------------------------------------- */

/* -----------------------------------------
   SOLID HEADER
----------------------------------------- */

.site-header {
    background: #F7F6F2;
    border-bottom: 1px solid var(--kd-border);
}


.site-header.is-scrolled {
    background: #F7F6F2;
    border-bottom: 1px solid var(--kd-border);
    backdrop-filter: none;
}


/* Match header spacing with main pages */

.site-header.is-scrolled {
    background: #F7F6F2;
    border-bottom: 1px solid var(--kd-border);
    backdrop-filter: none;
}


/* -----------------------------------------
   PRIVACY PAGE
----------------------------------------- */

.privacy-page {
    padding-top: 180px;
    padding-bottom: 120px;
}

.privacy-container {
    max-width: 1000px;
}


/* -----------------------------------------
   PRIVACY HEADER
----------------------------------------- */

.privacy-header {
    margin-bottom: 56px;
}


.privacy-header h1 {
    margin-top: 24px;

    color: var(--kd-charcoal);

    font-family: var(--font-display);

    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;

    letter-spacing: -0.055em;
    line-height: 1;
}


.privacy-updated {
    margin-top: 24px;

    color: var(--kd-gray);

    font-size: 0.9rem;
}


/* -----------------------------------------
   PRIVACY CONTENT
----------------------------------------- */

.privacy-content {
    max-width: 900px;
}


.privacy-section {
    margin-bottom: 56px;
}


.privacy-section:last-child {
    margin-bottom: 0;
}


.privacy-section h2 {
    margin-bottom: 20px;

    color: var(--kd-charcoal);

    font-family: var(--font-display);

    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;

    letter-spacing: -0.03em;
    line-height: 1.2;
}


.privacy-section p {
    margin-bottom: 18px;

    color: var(--kd-charcoal);

    font-size: 1rem;
    line-height: 1.75;
}


.privacy-section p:last-child {
    margin-bottom: 0;
}


.privacy-section ul {
    margin: 20px 0 24px 24px;
}


.privacy-section li {
    margin-bottom: 8px;

    color: var(--kd-charcoal);

    font-size: 1rem;
    line-height: 1.65;
}


.privacy-section a {
    color: var(--kd-coral);

    font-weight: 600;

    transition: opacity var(--transition-fast);
}


.privacy-section a:hover {
    opacity: 0.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1023px) {

    .privacy-page {
        padding-top: 160px;
        padding-bottom: 100px;
    }


    .privacy-container {
        max-width: 850px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .privacy-page {
        padding-top: 130px;
        padding-bottom: 80px;
    }


    .privacy-header {
        margin-bottom: 44px;
    }


    .privacy-section {
        margin-bottom: 44px;
    }


    .privacy-section ul {
        margin-left: 20px;
    }

}