/* ==========================================================================
   Privacy Policy Block Styles
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sometype+Mono:wght@400;500;600;700&family=Reddit+Mono:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   Container & Layout
   ========================================================================== */
.privacy-policy-block {
    background-color: #000;
    padding: 80px 0;
    width: 100%;
}
.skip-link{
    display:none;
}
#wp-skip-link{
    display: none ;
}
.privacy-policy-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: minmax(300px, 400px) 0.75px 1fr;
    gap: 40px;
}

/* ==========================================================================
   Title Styles
   ========================================================================== */
.privacy-policy-title {
    color: #FFF;
    font-family: "Sometype Mono", monospace;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 40px;
    margin: 0;
}

.privacy-policy-title--mobile {
    display: none;
}

.privacy-policy-title--desktop {
    display: block;
}

/* ==========================================================================
   Sidebar Navigation
   ========================================================================== */
.privacy-policy-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.privacy-policy-sidebar::-webkit-scrollbar {
    width: 4px;
}

.privacy-policy-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.privacy-policy-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.privacy-policy-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.privacy-policy-nav__item {
    margin: 0;
    padding: 0;
}

.privacy-policy-nav__item--level-2 {
    padding-left: 20px;
}

.privacy-policy-nav__item--level-3 {
    padding-left: 40px;
}

.privacy-policy-nav__link {
    display: block;
    color: #FFF;
    font-family: "Reddit Mono", monospace;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.36px;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 20px;
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}

.privacy-policy-nav__link:hover {
    opacity: 0.8;
}

.privacy-policy-nav__link.is-active {
    opacity: 1;
    color: #FFF;
}

/* ==========================================================================
   Separator Line
   ========================================================================== */
.privacy-policy-separator {
    width: 0.75px;
    background-color: rgba(255, 255, 255, 0.3);
    align-self: stretch;
}

/* ==========================================================================
   Content Area
   ========================================================================== */
.privacy-policy-content {
    padding-top: 0;
}

.privacy-policy-section {
    margin-bottom: 44px;
}

.privacy-policy-section:last-child {
    margin-bottom: 0;
}

.privacy-policy-section__title {
    color: #FFF;
    font-family: "Reddit Mono", monospace;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.36px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin: 0;
}

.privacy-policy-section__content {
    color: #ACAEB4;
    font-family: "Reddit Mono", monospace;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    letter-spacing: -0.36px;
}

.privacy-policy-section__content p {
    margin: 0 0 20px 0;
}

.privacy-policy-section__content p:last-child {
    margin-bottom: 0;
}

.privacy-policy-section__content h3,
.privacy-policy-section__content h4 {
    color: #FFF;
    font-family: "Reddit Mono", monospace;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.36px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin: 44px 0 0 0;
}

.privacy-policy-section__content h3:first-child,
.privacy-policy-section__content h4:first-child {
    margin-top: 0;
}

.privacy-policy-section__content ul,
.privacy-policy-section__content ol {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.privacy-policy-section__content li {
    margin-bottom: 10px;
}

.privacy-policy-section__content a {
    color: #FFF;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.privacy-policy-section__content a:hover {
    opacity: 0.7;
}

/* List items without bullets (using dashes) */
.privacy-policy-section__content ul {
    list-style: none;
    padding-left: 0;
}

.privacy-policy-section__content ul li {
    position: relative;
    padding-left: 20px;
}

.privacy-policy-section__content ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #ACAEB4;
}

/* ==========================================================================
   Mobile Styles (max-width: 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
    .privacy-policy-block {
        padding: 40px 0;
    }

    .privacy-policy-container {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
        gap: 20px;
    }

    /* Title */
    .privacy-policy-title {
        color: #FFF;
        font-family: "Reddit Mono", monospace;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: -0.36px;
        text-transform: uppercase;
        padding-bottom: 20px;
    }

    .privacy-policy-title--mobile {
        display: block;
    }

    .privacy-policy-title--desktop {
        display: none;
    }

    /* Sidebar */
    .privacy-policy-sidebar {
        position: relative;
        top: auto;
        max-height: none;
        overflow: visible;
    }

    .privacy-policy-nav__link {
        color: #FFF;
        font-family: "Reddit Mono", monospace;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: -0.36px;
        text-transform: uppercase;
        padding-bottom: 10px;
    }

    /* Separator - horizontal on mobile */
    .privacy-policy-separator {
        width: 100%;
        height: 0.75px;
        background-color: rgba(255, 255, 255, 0.3);
    }

    /* Content */
    .privacy-policy-section {
        margin-bottom: 44px;
    }

    .privacy-policy-section__title {
        color: #FFF;
        font-family: "Reddit Mono", monospace;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: -0.36px;
        text-transform: uppercase;
        padding-bottom: 10px;
    }

    .privacy-policy-section__content {
        color: #ACAEB4;
        font-family: "Reddit Mono", monospace;
        font-size: 18px;
        font-style: normal;
        font-weight: 300;
        line-height: 32px;
        letter-spacing: -0.36px;
    }
}

/* ==========================================================================
   Tablet Styles (max-width: 1024px)
   ========================================================================== */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .privacy-policy-container {
        grid-template-columns: minmax(250px, 300px) 0.75px 1fr;
        gap: 30px;
        padding: 0 30px;
    }

    .privacy-policy-title {
        font-size: 48px;
    }
}

/* ==========================================================================
   Smooth Scroll Behavior
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

/* Offset for fixed headers if needed */
.privacy-policy-section {
    scroll-margin-top: 40px;
}

.privacy-policy-section__content h3,
.privacy-policy-section__content h4 {
    scroll-margin-top: 40px;
}
