/* ================================
   Program Layout Components
================================ */
.program-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.program-tag {
    font-size: 0.85rem;
    color: #cf1965;
    font-weight: 600;
    background: rgba(207, 25, 101, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
}

.program-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff5789;
    margin: 8px 0 10px;
}


.program-list {
    list-style-type: none;
    padding-left: 0;
}

.program-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .program-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}