/* =============================================================================
   TCC Article Subtitle / Deck
   TheCityCeleb Child Theme — /inc/tcc-subtitle/tcc-subtitle.css
   Version: 1.0.0
   ============================================================================= */

.tcc-article-subtitle {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.18em;
    font-style: italic;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.75;
    margin: 10px 0 22px 0;
    padding: 14px 18px 14px 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f3f3f3 100%);
    border-left: 4px solid #c0392b;
    border-radius: 0 6px 6px 0;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 1px 4px rgba(0, 0, 0, 0.06);
    letter-spacing: 0.01em;
}

/* Large decorative opening quotation mark */
.tcc-article-subtitle::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 3.5em;
    color: #c0392b;
    opacity: 0.18;
    position: absolute;
    top: -8px;
    left: 10px;
    line-height: 1;
    pointer-events: none;
}

/* Fading red underline accent */
.tcc-article-subtitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #c0392b, transparent);
    margin-top: 10px;
    border-radius: 2px;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .tcc-article-subtitle {
        font-size: 1.05em;
        padding: 12px 14px 12px 16px;
        margin: 8px 0 18px 0;
    }

    .tcc-article-subtitle::before {
        font-size: 2.8em;
    }
}

@media (max-width: 480px) {
    .tcc-article-subtitle {
        font-size: 1em;
        padding: 10px 12px 10px 14px;
    }

    .tcc-article-subtitle::before {
        font-size: 2.4em;
        opacity: 0.13;
    }
}
