/* SHARED STYLES - BLOG
   Mobile-first: base = small mobile, enhance upward.
   Breakpoints: 480 · 768 · 1024 · 1280 */

/* ------------------------------------------------------------------
   Blog card system — sharp editorial / studio look
   ------------------------------------------------------------------ */
.blog-card-base {
    border-radius: var(--radius-xs);
    border: 1px solid var(--tortora);
    background: var(--avorio);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base), box-shadow var(--duration-base) ease;
}

.blog-card-base:hover {
    border-color: var(--magenta);
    box-shadow: var(--shadow-md);
}

.blog-card-accent {
    position: relative;
}

.blog-card-accent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--magenta);
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
}

.blog-card-accent:hover::before {
    opacity: 1;
}

/* Section Headers */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    text-align: center;
}

.section-rule {
    display: block;
    width: 3rem;
    height: 1px;
    background: var(--magenta);
}

.section-rule--narrow {
    width: 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: var(--font-display-weight);
    letter-spacing: var(--page-hero-title-tracking);
    text-transform: uppercase;
    color: var(--nero);
    margin: 0;
    line-height: var(--leading-snug);
    -webkit-text-stroke: var(--font-display-stroke) var(--font-display-stroke-color);
    paint-order: stroke fill;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 700px;
    line-height: var(--leading-relaxed);
    padding: 0 var(--space-4);
}

/* RESPONSIVE */
@media (min-width: 480px) {
    .section-header {
        margin-bottom: var(--space-7);
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: var(--space-7);
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: var(--text-base);
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: var(--space-8);
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .section-subtitle {
        font-size: var(--text-md);
    }
}
