/* =========================================================
   CASANOVA CAR RENTAL — PRIVACY POLICY PAGE
   Full-width content from the WordPress editor
========================================================= */

.pp-section {
    background-color: var(--color-rich-black);
    padding: 60px 0 80px;
}

.pp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* -----------------------------------------
   Content Header
----------------------------------------- */
.pp-content-header {
    margin-bottom: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pp-updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 191, 1, 0.1);
    border: 1px solid rgba(255, 191, 1, 0.25);
    border-radius: 50px;
    padding: 7px 16px;
    font-family: var(--font-main);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--color-amber);
}

.pp-updated-badge svg {
    width: 14px;
    height: 14px;
}

/* -----------------------------------------
   Editor Content Styling
----------------------------------------- */
.pp-editor-content {
    font-family: var(--font-main);
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.pp-editor-content p {
    margin: 0 0 14px;
}

.pp-editor-content h2 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-white);
    text-transform: capitalize;
    margin: 26px 0 10px;
    line-height: 1.35;
}

.pp-editor-content h2:first-child {
    margin-top: 0;
}

.pp-editor-content h3 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-white);
    margin: 20px 0 8px;
}

.pp-editor-content a {
    color: var(--color-amber);
    text-decoration: underline;
}

.pp-editor-content strong {
    color: var(--color-white);
}

.pp-editor-content ul,
.pp-editor-content ol {
    margin: 0 0 14px 20px;
    list-style: revert;
}

.pp-editor-content li {
    margin-bottom: 4px;
}

.pp-editor-content blockquote {
    border-left: 3px solid var(--color-amber);
    padding: 2px 0 2px 18px;
    margin: 16px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
}

.pp-editor-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.pp-editor-content th,
.pp-editor-content td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    text-align: left;
}

.pp-editor-content th {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.04);
}

/* Kill extra spacing WP sometimes adds around blocks */
.pp-editor-content > *:first-child {
    margin-top: 0;
}

.pp-editor-content > *:last-child {
    margin-bottom: 0;
}

/* -----------------------------------------
   Responsive
----------------------------------------- */
@media (max-width: 576px) {
    .pp-section {
        padding: 45px 0 60px;
    }

    .pp-container {
        padding: 0 20px;
    }

    .pp-editor-content h2 {
        font-size: 18px;
        margin: 22px 0 8px;
    }
}