/* Internal club news */

.news-section,
.news-article {
    padding: 3.5rem 0 4.5rem;
}

.news-section-inner,
.news-article-inner {
    width: 100%;
    max-width: var(--page-max, 1120px);
    margin: 0 auto;
    padding-left: var(--page-gutter, clamp(1.25rem, 4vw, 2rem));
    padding-right: var(--page-gutter, clamp(1.25rem, 4vw, 2rem));
    box-sizing: border-box;
}

.news-empty {
    max-width: 36rem;
}

.news-empty h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.03em;
    color: var(--secondary-color);
    margin: 0 0 0.75rem;
}

.news-empty p {
    margin: 0;
    color: var(--ink-muted);
}

.news-feature {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    color: inherit;
    animation: news-rise 0.7s ease both;
}

.news-feature-media {
    margin: 0;
    min-height: 280px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(28, 94, 173, 0.18), rgba(8, 14, 26, 0.08)),
        #d9e4f2;
}

.news-feature-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.news-feature:hover .news-feature-media img {
    transform: scale(1.035);
}

.news-feature-copy .home-kicker {
    margin-bottom: 0.65rem;
}

.news-feature-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    color: var(--secondary-color);
    margin: 0 0 0.85rem;
}

.news-feature-copy > p {
    margin: 0 0 0.85rem;
    color: var(--ink-muted);
    max-width: 34rem;
    line-height: 1.55;
}

.news-meta {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.news-list-head {
    margin: 0 0 1.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(28, 94, 173, 0.14);
}

.news-list-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    letter-spacing: 0.03em;
    color: var(--secondary-color);
    margin: 1.5rem 0 0.55rem;
}

.news-list-head p {
    margin: 0;
    color: var(--ink-muted);
}

.news-list {
    display: grid;
    gap: 0;
}

.news-item {
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(28, 94, 173, 0.12);
    color: inherit;
    animation: news-rise 0.65s ease both;
}

.news-item:nth-child(1) { animation-delay: 0.05s; }
.news-item:nth-child(2) { animation-delay: 0.1s; }
.news-item:nth-child(3) { animation-delay: 0.15s; }
.news-item:nth-child(4) { animation-delay: 0.2s; }

.news-item:last-child {
    border-bottom: 1px solid rgba(28, 94, 173, 0.12);
}

.news-item-media {
    margin: 0;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #d9e4f2;
}

.news-item-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.news-item:hover .news-item-media img {
    transform: scale(1.04);
}

.news-item-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    letter-spacing: 0.02em;
    color: var(--secondary-color);
    margin: 0 0 0.45rem;
}

.news-item-copy p {
    margin: 0 0 0.55rem;
    color: var(--ink-muted);
    line-height: 1.5;
}

.news-item-copy .news-meta {
    margin: 0;
}

.news-article-hero h1 {
    max-width: 18ch;
}

.news-back {
    margin: 0 0 1.75rem;
}

.news-article-body {
    max-width: 42rem;
    color: var(--ink, #1b2433);
    font-size: 1.05rem;
    line-height: 1.7;
}

.news-article-body > *:first-child {
    margin-top: 0;
}

.news-article-body h2,
.news-article-body h3 {
    font-family: var(--font-display);
    letter-spacing: 0.03em;
    color: var(--secondary-color);
    line-height: 1.05;
    margin: 2rem 0 0.75rem;
}

.news-article-body h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.news-article-body h3 {
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
}

.news-article-body p,
.news-article-body ul,
.news-article-body ol,
.news-article-body blockquote {
    margin: 0 0 1.15rem;
}

.news-article-body a {
    color: var(--primary-color, #1c5ead);
    font-weight: 600;
}

.news-article-body blockquote {
    padding-left: 1rem;
    border-left: 3px solid rgba(28, 94, 173, 0.35);
    color: var(--ink-muted);
    font-style: italic;
}

.news-article-body img {
    max-width: 100%;
    height: auto;
}

@keyframes news-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .news-feature,
    .news-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .news-feature-media img,
    .news-feature-media {
        min-height: 220px;
    }
}
