/* assets/css/promo.css */
.promo-section {
    background-color: #F0F0F0; /* Merah sesuai request */
    padding: 60px 0;
    color: #292929;
}

.promo-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.promo-title {
    text-align: center;
    margin-bottom: 40px;
}

.promo-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #AC0000;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.promo-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    color: #333;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    /* Pastikan flex agar isi kartu rapi */
    display: flex;
    flex-direction: column; 
    height: 100%;
}

.promo-card:hover { transform: translateY(-5px); }

.promo-img {
    width: 100%;
    height: 380px;
    /* JANGAN gunakan 'cover', gunakan 'contain' agar gambar SELALU utuh di dalam kotak */
    object-fit: contain; 
    /* Tambahkan background jika gambar contain menyisakan ruang kosong (misal putih) */
    background-color: #f9f9f9; 
    border-bottom: 1px solid #f0f0f0;
}

.promo-body {
    padding: 20px;
    text-align: center;
}

.promo-body h3 {
    font-size: 1.2rem;
    margin-top: -5px;
    margin-bottom: 5px;
    color: #B80000;
}

.promo-body .date-info {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.btn-wa-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #00A20C;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-wa-promo:hover { background-color: #128C7E; color: #fff; }