/* ==========================================================================
   Policy Page Template Styles
   (Privacy Policy, Terms & Conditions, Accessibility, etc.)
   ========================================================================== */
/* ==========================================================================
   Hero Section
   ========================================================================== */
.vp-policy-hero {
    padding: 60px 0 100px;
    background: var(--Neutral-100);
    text-align: center;
}

.vp-policy-hero .vp-title {
    align-items: center;
}

.vp-policy-hero h1 {
    margin-bottom: 0;
}

.vp-policy-date {
    color: var(--Neutral-600);
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    margin-top: 24px;
}

/* ==========================================================================
   Content Section
   ========================================================================== */
.vp-policy-content-section {
    padding: 0 0 100px;
    background: var(--Neutral-100);
}

.vp-policy-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   Content Body Styles (same as blog single)
   ========================================================================== */

/* Base Styles */
.vp-policy-content {
    color: var(--Neutral-700);
    font-size: 18px;
    font-weight: 400;
    line-height: 148%;
}

/* Paragraphs */
.vp-policy-content p {
    margin-bottom: var(--16);
    color: var(--Neutral-700);
    font-size: 18px;
    font-weight: 400;
    line-height: 148%;
}

/* Section Titles (h2) */
.vp-policy-content h2 {
    color: var(--Neutral-800);
    font-size: 32px;
    font-weight: 500;
    line-height: 132%;
    margin-top: 48px;
    margin-bottom: var(--16);
}

.vp-policy-content h2:first-child {
    margin-top: 0;
}

/* Subheadings */
.vp-policy-content h3 {
    color: var(--Neutral-800);
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
    margin-top: 32px;
    margin-bottom: var(--16);
}

.vp-policy-content h4 {
    color: var(--Neutral-800);
    font-size: 22px;
    font-weight: 600;
    line-height: 150%;
    margin-top: 24px;
    margin-bottom: var(--16);
}

.vp-policy-content h5 {
    color: var(--Neutral-800);
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    margin-top: 24px;
    margin-bottom: var(--16);
}

.vp-policy-content h6 {
    color: var(--Neutral-800);
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    margin-top: 24px;
    margin-bottom: var(--16);
}

/* Unordered List - Dots (default) */
.vp-policy-content ul {
    color: var(--Neutral-700);
    font-size: 18px;
    font-weight: 400;
    line-height: 148%;
    margin-top: var(--16);
    margin-bottom: var(--16);
    list-style-type: disc;
    margin-left: 34px;
    padding: 0;
}

.vp-policy-content ul li {
    margin-bottom: 6px;
    padding-left: 8px;
}

.vp-policy-content ul li::marker {
    color: var(--Primary-primary);
    font-size: var(--24);
}

/* Nested Lists */
.vp-policy-content ul ul,
.vp-policy-content ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

/* Ordered List - Numbers */
.vp-policy-content ol {
    list-style-type: decimal;
    color: var(--Neutral-700);
    font-size: 18px;
    font-weight: 400;
    line-height: 148%;
    margin-top: var(--16);
    margin-bottom: var(--16);
    margin-left: 25px;
    padding: 0;
}

.vp-policy-content ol li {
    margin-bottom: 6px;
    padding-left: 8px;
}

.vp-policy-content ol li::marker {
    color: var(--Primary-primary);
    font-weight: 600;
}

/* Alphabetical List */
.vp-policy-content ol.vp-ol-alpha {
    list-style-type: lower-alpha;
}

/* Roman Numerals List */
.vp-policy-content ol.vp-ol-roman {
    list-style-type: lower-roman;
}

/* Checkmark List */
.vp-policy-content ul.vp-ul-checked {
    list-style: none;
    margin-left: 0;
    padding-top: var(--16);
}

.vp-policy-content ul.vp-ul-checked li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 6px;
}

.vp-policy-content ul.vp-ul-checked li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M16.6667 5L7.50001 14.1667L3.33334 10' stroke='%238C58DA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Links */
.vp-policy-content a {
    color: var(--Primary-primary);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.vp-policy-content a:hover {
    opacity: 0.8;
}

/* Strong/Bold */
.vp-policy-content strong,
.vp-policy-content b {
    font-weight: 600;
    color: var(--Neutral-800);
}

/* Italic/Emphasis */
.vp-policy-content em,
.vp-policy-content i {
    font-style: italic;
}

/* Blockquote */
.vp-policy-content blockquote {
    border-left: 4px solid var(--Primary-primary);
    padding-left: 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--Neutral-600);
}

.vp-policy-content blockquote p {
    margin-bottom: 0;
}

/* Tables */
.vp-policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.vp-policy-content th,
.vp-policy-content td {
    padding: 12px 16px;
    border: 1px solid var(--Neutral-300);
    text-align: left;
}

.vp-policy-content th {
    background: var(--Neutral-200);
    font-weight: 600;
    color: var(--Neutral-800);
}

/* Horizontal Rule */
.vp-policy-content hr {
    border: none;
    border-top: 1px solid var(--Neutral-300);
    margin: 40px 0;
}

/* Images */
.vp-policy-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--16);
    margin: 24px 0;
}

/* Figures/Captions */
.vp-policy-content figure {
    margin: 24px 0;
}

.vp-policy-content figcaption {
    font-size: 14px;
    color: var(--Neutral-600);
    text-align: center;
    margin-top: 8px;
}

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */
@media (max-width: 1024px) {
    .vp-policy-content {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */
@media (max-width: 768px) {
    .vp-policy-breadcrumb {
        padding: 32px 16px 36px;
    }

    .vp-policy-breadcrumb .vp-max-width {
        padding: 0;
    }

    .vp-policy-hero {
        padding: 36px 0 44px;
    }

    .vp-policy-hero .vp-SH-display-2 {
        font-size: 32px;
    }

    .vp-policy-date {
        font-size: 16px;
        margin-top: 16px;
    }

    .vp-policy-content-section {
        padding-bottom: 60px;
    }

    .vp-policy-content {
        padding: 0;
    }

    .vp-policy-content h2 {
        font-size: 24px;
        margin-top: 32px;
    }

    .vp-policy-content h3 {
        font-size: 20px;
    }

    .vp-policy-content h4 {
        font-size: 18px;
    }

    .vp-policy-content p,
    .vp-policy-content ul,
    .vp-policy-content ol {
        font-size: 16px;
    }

    .vp-policy-content ul li::marker {
        font-size: var(--20);
    }
}