/**
 * MTIC Theme — Single Speech Page
 * Covers: layout for individual speech post — title + content, no sidebar
 * @package mtic-theme
 */

/* ═══════════════════════════════════════════════════
   SINGLE SPEECH PAGE
═══════════════════════════════════════════════════ */

.mtic-page--speech-single {
    padding: var(--mtic-spacing-lg) 0 var(--mtic-spacing-xl);
}

.mtic-speech-single {
    max-width: 860px;
    margin: 0 auto;
}

.mtic-speech-single__shell {
    width: min(100% - 40px, 980px);
    margin-inline: auto;
    padding: 40px 0 80px;
}

.mtic-speech-single__breadcrumb {
    max-width: 820px;
    margin: 0 auto 24px;
    font-size: 0.95rem;
}

.mtic-speech-single__breadcrumb a {
    color: var(--mtic-primary);
    font-weight: 700;
    text-decoration: none;
}

.mtic-speech-single__breadcrumb a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}


.mtic-speech-single__eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(1, 180, 150, 0.12);
    color: var(--mtic-primary);
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1;
}

.mtic-speech-single__date {
    display: block;
    margin-top: 14px;
    color: rgba(3, 47, 60, 0.68);
    font-size: 0.95rem;
    font-weight: 600;
}

.mtic-speech-single__header {
     max-width: 820px;
     margin: 0 auto 28px;
}

.mtic-speech-single__title {
    color: var(--mtic-dark);
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.mtic-speech-single__content {
    max-width: 820px;
    margin-inline: auto;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(3, 47, 60, 0.92);
    overflow-wrap: break-word;
}

.mtic-speech-single__content p {
    margin: 0 0 0.72em;
    text-align: justify;
}

.mtic-speech-single__content > *:first-child {
    margin-top: 0;
}

.mtic-speech-single__content > *:last-child {
    margin-bottom: 0;
}

/* Centred blocks (speaker name, designation, date) */
.mtic-speech-single__content p:has(+ p:empty),
.mtic-speech-single__content p:empty + p {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .mtic-speech-single__content p {
        text-align: left;
    }
}
