/* ========== SINGLE POST STYLING - ZNHS VISA ========== */

/* Container */
.single-post .wp-block-heading,
.single-post .wp-block-paragraph,
.single-post .wp-block-list,
.single-post .wp-block-table,
.single-post .wp-block-separator,
.single-post .wp-block-buttons {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* H1 - Post Title */
.single-post h1.wp-block-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #003087;
    line-height: 1.3;
    margin: 40px auto 24px;
    padding: 0 24px;
    max-width: 800px;
}

/* H2 - Section titles */
.single-post h2.wp-block-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #003087;
    margin: 40px auto 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #D32F2F;
    max-width: 800px;
}

/* H3 - Sub-section */
.single-post h3.wp-block-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 28px auto 12px;
    max-width: 800px;
}

/* Paragraphs */
.single-post p.wp-block-paragraph {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
    margin: 0 auto 20px;
}

.single-post p.wp-block-paragraph strong {
    color: #002055;
    font-weight: 700;
}

/* Lists */
.single-post ul.wp-block-list {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0 auto 20px;
    padding-left: 24px;
    max-width: 800px;
}

.single-post ul.wp-block-list li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.single-post ul.wp-block-list li::marker {
    color: #D32F2F;
}

.single-post ol.wp-block-list {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0 auto 20px;
    padding-left: 24px;
    max-width: 800px;
}

.single-post ol.wp-block-list li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.single-post ol.wp-block-list li::marker {
    color: #003087;
    font-weight: 700;
}

/* Tables */
.single-post table {
    width: 100%;
    max-width: 800px;
    margin: 24px auto;
    border-collapse: collapse;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
}

.single-post table thead th {
    background: #003087;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.single-post table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.single-post table tbody tr:nth-child(even) {
    background: #F5F7FA;
}

.single-post table tbody tr:hover {
    background: #e8edf3;
}

/* Separator */
.single-post hr.wp-block-separator {
    max-width: 200px;
    margin: 40px auto;
    border: none;
    border-top: 2px solid #D32F2F;
}

/* Buttons (Gutenberg) */
.single-post .wp-block-button__link {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.single-post .wp-block-button__link:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.single-post .wp-block-buttons {
    text-align: center;
    margin: 32px auto;
}

/* Blockquotes (future use) */
.single-post blockquote {
    max-width: 800px;
    margin: 32px auto;
    padding: 24px 32px;
    border-left: 4px solid #D32F2F;
    background: #F5F7FA;
    font-style: italic;
    color: #555;
}

/* Article meta / tags area */
.single-post .post-tags {
    max-width: 800px;
    margin: 32px auto 0;
    padding: 16px 0;
    border-top: 1px solid #e0e0e0;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    color: #888;
}

/* Comment form area */
.single-post .comment-respond {
    max-width: 800px;
    margin: 40px auto;
}

.single-post .comment-respond h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    color: #003087;
}

/* Responsive */
@media (max-width: 768px) {
    .single-post h1.wp-block-heading {
        font-size: 1.8rem;
    }
    .single-post h2.wp-block-heading {
        font-size: 1.3rem;
    }
    .single-post h3.wp-block-heading {
        font-size: 1.1rem;
    }
    .single-post table {
        font-size: 0.85rem;
    }
    .single-post table thead th,
    .single-post table tbody td {
        padding: 8px 10px;
    }
}
