.updates-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.update-card{
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffd6ec;
    border: 3px solid #ff8fc7;
    box-sizing: border-box;
}

.update-card a{
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.update-img{
    width: 100%;
    height: auto;
    display: block;
}

/* TEXT AREA FIX */
.update-content{
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.update-content h3{
    margin: 0;
}

.update-date{
    font-size: 0.85rem;
    opacity: 0.6;
    margin: 0;
}

.update-content p{
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
}

.containerUpdates{
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}

/* MOBILE */
@media (max-width: 768px){
    .updates-grid{
        flex-direction: column;
    }

    .update-card{
        width: 100%;
        flex: none;
    }
}