/* ══════════════════════════════
       PUBLICATION MASTHEAD
    ══════════════════════════════ */
.issue-rule {
    border: none;
    height: 1px;
    background: #2C2C2C;
}

.issue-rule-gold {
    border: none;
    height: 2px;
    background: #C49A3C;
}

.masthead-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    letter-spacing: -0.01em;
    line-height: 1;
}

/* ══════════════════════════════
       FEATURED ARTICLE
    ══════════════════════════════ */
.featured-img {
    position: relative;
    overflow: hidden;
}

.featured-img img {
    transition: transform 0.6s ease;
}

.featured-img:hover img {
    transform: scale(1.03);
}

/* ══════════════════════════════
       CATEGORY FILTER
    ══════════════════════════════ */
.cat-btn {
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(28, 58, 42, 0.15);
    white-space: nowrap;
}

.cat-btn.active,
.cat-btn:hover {
    background: #1C3A2A;
    color: #F7F3ED;
    border-color: #1C3A2A;
}

.cat-btn.active {
    pointer-events: none;
}

/* ══════════════════════════════
       ARTICLE CARDS
    ══════════════════════════════ */
.article-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(28, 58, 42, 0.1);
}

.article-card img {
    transition: transform 0.5s ease;
}

.article-card:hover img {
    transform: scale(1.04);
}

/* Hidden/visible for filter */
.post-item {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.post-item.hidden-post {
    display: none;
}

/* ══════════════════════════════
       CATEGORY COLOR BADGES
    ══════════════════════════════ */
.badge-field {
    background: #1C3A2A;
    color: #F7F3ED;
}

.badge-entrep {
    background: #C49A3C;
    color: #fff;
}

.badge-education {
    background: #0E2019;
    color: #DDB96A;
}

.badge-community {
    background: #EDE5D8;
    color: #1C3A2A;
    border: 1px solid rgba(28, 58, 42, 0.2);
}

.badge-press {
    background: #7A7A6E;
    color: #F7F3ED;
}

/* ══════════════════════════════
       NEWSPAPER COLUMNS
    ══════════════════════════════ */
.newspaper-cols {
    column-count: 1;
    column-gap: 2.5rem;
}

@media (min-width: 640px) {
    .newspaper-cols {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .newspaper-cols {
        column-count: 3;
    }
}

.newspaper-cols p {
    break-inside: avoid;
    margin-bottom: 1.1rem;
}

.field-note {
    break-inside: avoid;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(28, 58, 42, 0.1);
}

.field-note:last-child {
    border-bottom: none;
}

/* Drop cap */
.drop-cap::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 0.75;
    float: left;
    margin-right: 6px;
    margin-top: 6px;
    color: #C49A3C;
}


/* ══════════════════════════════
       LIST ARTICLE ROW
    ══════════════════════════════ */
.list-row {
    transition: background 0.25s ease;
}

.list-row:hover {
    background: rgba(28, 58, 42, 0.04);
}

/* ══════════════════════════════
       PRESS STRIP
    ══════════════════════════════ */
.press-logo {
    border: 1px solid rgba(28, 58, 42, 0.1);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.press-logo:hover {
    border-color: #C49A3C;
    box-shadow: 0 4px 16px rgba(196, 154, 60, 0.1);
}

/* ══════════════════════════════
       READING TIME PILL
    ══════════════════════════════ */
.read-time {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
}

/* ══════════════════════════════
       HR VARIANTS
    ══════════════════════════════ */
.hr-full {
    border: none;
    height: 1px;
    background: rgba(28, 58, 42, 0.12);
}

.hr-gold {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #C49A3C, transparent);
}