/* ========== STANDARD PAGES (page.php) ========== */

.page-content {
    padding-top: 140px;
    /* Space for fixed navbar (76px + breathing room) */
    padding-bottom: 100px;
    min-height: 60vh;
    background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.page-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Page Title */
.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.1;
    position: relative;
    padding-bottom: 20px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 2px;
}

/* Typography & Content Flow */
.page-content the_content,
.page-content .entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.page-content p {
    margin-bottom: 24px;
}

.page-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin: 48px 0 20px;
}

.page-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 32px 0 16px;
}

.page-content ul,
.page-content ol {
    margin: 0 0 24px 24px;
}

.page-content li {
    margin-bottom: 12px;
}

.page-content strong {
    color: var(--white);
}

.page-content a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    transition: all 0.2s;
}

.page-content a:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

/* Blockquote */
.page-content blockquote {
    margin: 40px 0;
    padding: 24px 32px;
    background: rgba(201, 168, 76, 0.05);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 19px;
    color: var(--white);
}

/* Images */
.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* RTL Support */
[dir="rtl"] .page-content {
    text-align: right;
}

[dir="rtl"] .page-title::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .page-content ul,
[dir="rtl"] .page-content ol {
    margin: 0 24px 24px 0;
}

[dir="rtl"] .page-content blockquote {
    border-left: none;
    border-right: 4px solid var(--gold);
    border-radius: 12px 0 0 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-content {
        padding-top: 110px;
    }

    .page-title {
        font-size: 32px;
    }
}