/* ===== Latest Updates (Frame 254) ===== */
.updates {
    width: 100%;
    background: #FFFFFF;
    padding: 40px 0 90px;
    display: flex;
    justify-content: center;
}

.updates__inner {
    width: 1380px;
    max-width: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* --- Header (Frame 243) --- */
.updates__head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 64px;
}

.updates__head-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.updates__bar {
    flex: none;
    width: 6px;
    align-self: stretch;
    min-height: 90px;
    border-radius: 3px;
    background: linear-gradient(180deg, #CF8E00 0%, #064700 100%);
}

.updates__head-text {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.updates__title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 72px;
    text-transform: uppercase;
    color: #363636;
}

.updates__subtitle {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #363636;
}

/* "See More" link */
.updates__more {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #064700;
    transition: gap 0.2s ease;
}
.updates__more:hover { gap: 18px; }
.updates__more svg { display: block; }

/* --- Cards (Frame 253) --- */
.updates__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.updates__card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 18px 18px 28px;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
}

.updates__img {
    width: 100%;
    aspect-ratio: 404 / 410;
    border-radius: 13px;
    background-size: cover;
    background-position: center;
}

.updates__text {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.updates__card-title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #363636;
}

.updates__card-desc {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
    color: #363636;
}

/* --- Responsive --- */
@media (max-width: 1000px) {
    .updates__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .updates { padding: 24px 0 60px; }
    .updates__inner { gap: 40px; }
    .updates__title { font-size: 32px; line-height: 44px; }
    .updates__head { flex-wrap: wrap; gap: 20px; }
    .updates__grid { grid-template-columns: 1fr; }
    .updates__card-desc { text-align: left; }
}
