﻿.brom-news-grid {
    padding: 72px 0 84px;
    background: var(--color-background-light, #e9dfd5);
}

.brom-news-grid__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 32px;
}

.brom-news-grid__header-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 0 0 auto;
    min-width: auto;
}

.brom-news-grid__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #632024;
    white-space: nowrap;
    margin: 0;
}

.brom-news-grid__rule {
    flex: 0 0 auto;
    width: 18px;
    height: 1px;
    background: rgba(99, 32, 36, 0.2);
}

.brom-news-grid__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #632024;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.brom-news-grid__cta:hover { opacity: 0.65; }

.brom-news-grid__cta svg { flex-shrink: 0; }

.brom-news-grid__mobile-cta-wrap {
    display: none;
}

.brom-news-grid__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    margin-bottom: 44px;
}

.brom-news-grid__row:last-child { margin-bottom: 0; }

.brom-news-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.brom-news-card__link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.brom-news-card__img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 2.2 / 1;
    background: #d6cfc8;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.brom-news-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.brom-news-card:hover .brom-news-card__img-wrap img {
    transform: scale(1.03);
}

.brom-news-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brom-news-card__title {
    font-family: var(--font-display, "Gotham", Arial, sans-serif);
    font-size: clamp(22px, 1.8vw, 34px);
    font-weight: 400;
    color: #632024;
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin: 0;
}

.brom-news-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.brom-news-card__title a:hover { color: #632024; }

.brom-news-card__excerpt {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #632024;
    margin: 0;
}

.brom-news-card__date {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #632024;
    margin: 0;
}

@media (max-width: 991px) {
    .brom-news-grid__header {
        gap: 24px;
    }

    .brom-news-grid__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .brom-news-grid {
        padding: 56px 0;
    }

    .brom-news-grid__header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 24px;
        gap: 16px;
    }

    .brom-news-grid__header-left {
        width: 100%;
    }

    .brom-news-grid__header > .brom-news-grid__cta {
        display: none;
    }

    .brom-news-grid__row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .brom-news-grid__mobile-cta-wrap {
        display: flex;
        justify-content: center;
        margin-top: 36px;
        text-align: center;
    }

    .brom-news-grid__cta--mobile {
        justify-content: center;
    }

    .brom-news-card__img-wrap {
        aspect-ratio: 2.1 / 1;
    }

    .brom-news-card__title {
        font-size: clamp(18px, 6vw, 28px);
    }

    .brom-news-card__excerpt {
        font-size: 13px;
    }
}

