@keyframes mastheadFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.news-masthead {
    padding: 48px 0 56px;
}

.news-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: Aptos;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 24px;
    opacity: 0;
    animation: mastheadFadeUp 0.5s ease 0.1s forwards;
}

.news-breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.news-breadcrumb a:hover {
    color: var(--PRO-Orange);
}

.news-breadcrumb .current {
    color: var(--PRO-Orange);
}

.news-masthead-title {
    font-family: Aptos;
    font-size: 78px;
    font-weight: 700;
    line-height: 74px;
    letter-spacing: 0.78px;
    color: var(--PRO-Orange);
    margin: 0 0 10px;
    opacity: 0;
    animation: mastheadFadeUp 0.5s ease 0.22s forwards;
}

.news-masthead-subtitle {
    font-family: Aptos;
    font-size: 23px;
    font-weight: 300;
    line-height: 32px;
    color: var(--PRO-Slate);
    margin: 0;
    max-width: 420px;
    opacity: 0;
    animation: mastheadFadeUp 0.5s ease 0.34s forwards;
}

.news-section {
    padding: 0 0 96px;
}

.news-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 32px;
}

.news-filter-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-cat-dropdown {
    position: relative;
}

.news-cat-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--PRO-Orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.2s;
}

.news-cat-btn:hover {
    opacity: 0.85;
}

.news-cat-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    min-width: 160px;
    z-index: 10;
}

.news-cat-list.is-open {
    display: block;
}

.news-cat-list a {
    display: block;
    padding: 9px 18px;
    font-family: Aptos;
    font-size: 15px;
    font-weight: 500;
    color: var(--PRO-Slate);
    text-decoration: none;
    transition: color 0.2s;
}

.news-cat-list a:hover,
.news-cat-list a.active {
    color: var(--PRO-Orange);
}

.news-filter-label {
    font-family: Aptos;
    font-size: 15px;
    font-weight: 500;
    color: var(--PRO-Slate);
}

.news-filter-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 1.5px solid var(--PRO-Orange);
    border-radius: 100px;
    padding: 8px 38px 8px 18px;
    font-family: Aptos;
    font-size: 15px;
    font-weight: 500;
    color: var(--PRO-Slate);
    cursor: pointer;
    outline: none;
}

.news-filter-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
}

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

.news-card {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.news-card__image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
}

.news-card__image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.news-card__date {
    position: absolute;
    top: 22px;
    right: 33px;
    border-radius: 10px;
    background: rgba(43, 47, 49, 0.25);
    backdrop-filter: blur(7px);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
}

.news-card__date-day {
    display: block;
    color: var(--White);
    text-align: center;
    font-family: Aptos;
    font-size: 28px;
    font-weight: 600;
    line-height: 27px;
}

.news-card__date-month {
    display: block;
    color: var(--White);
    font-family: Aptos;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

.news-card__cats {
    font-family: Aptos;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pro-grey-tint-1);
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
}

.news-card__cats span {
    color: var(--pro-grey-tint-1);
}

.news-card__title {
    color: var(--PRO-Slate);
    font-family: Aptos;
    font-size: 23px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 12px;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--PRO-Orange);
    font-family: Aptos;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: gap 0.2s;
}

.news-card:hover .news-card__link {
    gap: 13px;
}

.news-show-more {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

@media (max-width: 1220px) {
    .news-masthead-title {
        font-size: 70px;
        line-height: 70px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .news-masthead-title {
        font-size: 48px;
        line-height: 52px;
        letter-spacing: 0.48px;
    }

    .news-masthead-subtitle {
        font-size: 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .news-card {
        width: 100%;
        max-width: 345px;
    }

    .news-card__image-wrap img {
        height: 340px;
    }
}