.duet-agenda {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Header */
.duet-agenda-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.duet-agenda-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0a2a5e;
    position: relative;
}

.duet-agenda-header h2::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #facc15; /* yellow accent */
    margin-left: 12px;
}

.duet-agenda-link {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #0a2a5e;
    border-bottom: 1px solid #0a2a5e;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.duet-agenda-link:hover {
    color: #b91c1c;
    border-color: #b91c1c;
}

/* Grid */
.duet-agenda-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Agenda Card */
.duet-agenda-card {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.duet-agenda-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Date Box */
.duet-date {
    background: #0a2a5e; /* DUET navy */
    color: #fff;
    text-align: center;
    padding: 20px 15px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.duet-date .day {
    font-size: 22px;
    font-weight: 700;
}

.duet-date .month {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Info */
.duet-agenda-info {
    flex: 1;
    padding: 20px;
}

.duet-dates {
    font-size: 13px;
    color: #09b884;
    margin-bottom: 8px;
}

.duet-agenda-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.4;
}

.duet-location {
    font-size: 13px;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .duet-agenda-grid {
        grid-template-columns: 1fr;
    }
}
