/* ========================================
   Single Page Styles
   ======================================== */

/* Page Header */
.page-header {
    background: #0f172a;
    padding: 40px 0 30px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 13px;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: #ffffff;
}

.page-breadcrumb span:first-of-type {
    color: rgba(255, 255, 255, 0.3);
}

.page-breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.5);
}

.page-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* Page Content Section */
.page-content-section {
    padding: 55px 0 70px;
}

.page-content-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

/* Featured Image */
.page-featured-image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Page Content Typography */
.page-content {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}

.page-content p {
    margin-bottom: 1.5em;
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}

.page-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin: 40px 0 16px;
    line-height: 1.2;
}

.page-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 32px 0 14px;
}

.page-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 28px 0 12px;
}

.page-content ul,
.page-content ol {
    padding-left: 24px;
    margin-bottom: 1.5em;
}

.page-content ul li,
.page-content ol li {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
}

.page-content a {
    color: #0f172a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.page-content a:hover {
    opacity: 0.7;
}

.page-content strong {
    font-weight: 600;
    color: #0f172a;
}

.page-content blockquote {
    border-left: 3px solid #0f172a;
    margin: 30px 0;
    padding: 5px 0 5px 24px;
}

.page-content blockquote p {
    font-size: 18px;
    color: #4b5563;
    font-style: italic;
    margin: 0;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

.page-content hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 40px 0;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    font-size: 15px;
}

.page-content table th {
    background: #f9fafb;
    padding: 12px 16px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 2px solid #e5e7eb;
}

.page-content table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }

    .page-content-section {
        padding: 35px 0 50px;
    }

    .page-content {
        font-size: 16px;
    }

    .page-content p {
        font-size: 16px;
    }

    .page-content h2 {
        font-size: 24px;
    }

    .page-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }

    .page-content {
        font-size: 15px;
    }

    .page-content p {
        font-size: 15px;
    }
}