#latest-updates {
    position: relative;
    padding: 88px 32px 96px;
    background:
        radial-gradient(circle at 20% 20%, rgba(213, 182, 95, 0.07), transparent 34%),
        linear-gradient(180deg, #02050a, #010205);
}

.latest-updates-inner {
    width: min(1340px, 100%);
    margin: 0 auto;
}

.latest-updates-heading {
    margin-bottom: 36px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.latest-updates-heading p {
    margin: 0 0 8px;
    color: #d5b65f;
    font-family: "OpenSans SemiBold", sans-serif;
    font-size: 12px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.latest-updates-heading h2 {
    margin: 0;
    color: #d8ba66;
    text-shadow: 0 1px 0 #5c451c;
    font-family: Colus, Georgia, serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    text-transform: uppercase;
}

.latest-updates-heading > a {
    border-bottom: 1px solid #8d939a;
    padding-bottom: 6px;
    color: #d5b65f;
    font-family: "OpenSans SemiBold", sans-serif;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
}

.homepage-news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.homepage-news-card {
    min-height: 270px;
    border: 1px solid rgba(118, 123, 130, 0.48);
    padding: 26px;
    color: inherit;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(27, 29, 32, 0.97), rgba(8, 9, 11, 0.98));
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.homepage-news-card:hover {
    border-color: #d5b65f;
    transform: translateY(-4px);
}

.homepage-news-card span {
    color: #d5b65f;
    font-family: "OpenSans SemiBold", sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.homepage-news-card h3 {
    margin: 18px 0 12px;
    color: #f4f9ff;
    font-family: Colus, Georgia, serif;
    font-size: 27px;
    line-height: 1.2;
    text-transform: uppercase;
}

.homepage-news-card p {
    margin: 0;
    color: #afc0d3;
    font-family: "OpenSans Regular", "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.homepage-news-card time {
    margin-top: auto;
    padding-top: 22px;
    color: #7891aa;
    font-family: "OpenSans Regular", "Open Sans", sans-serif;
    font-size: 11px;
}

.homepage-news-message {
    grid-column: 1 / -1;
    border: 1px dashed rgba(126, 130, 136, 0.55);
    padding: 30px;
    color: #d5b65f;
    font-family: "OpenSans Regular", "Open Sans", sans-serif;
    text-align: center;
}

@media (max-width: 960px) {
    .homepage-news-list {
        grid-template-columns: 1fr;
    }

    .homepage-news-card {
        min-height: 230px;
    }
}

@media (max-width: 620px) {
    #latest-updates {
        padding: 62px 18px 68px;
    }

    .latest-updates-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}
