/* ===== LAYOUT RIÊNG TRANG VĂN HÓA ===== */

.row{
    display:flex;
    gap:25px;
    margin-bottom:40px;
}

/* card hoạt động */
.activity{
    flex:1;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
    transition:.35s;
}

.activity:hover{
    transform:translateY(-10px);
}

/* ảnh */
.activity img{
    width:100%;
    height:200px;
    object-fit:cover;
}

/* chữ */
.activity h3{
    text-align:center;
    padding:15px 10px 5px;
    color:#b30000;
}

.activity p{
    padding:0 18px 20px;
    text-align:center;
}

/* mobile */
@media(max-width:768px){
    .row{
        flex-direction:column;
    }
}