.program-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem;
}

.flyer-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.event-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Main horizontal row */
.day-row {
    display: flex;
    align-items: center;  /* vertically center weekday and date */
    gap: 2rem;            /* space between weekday and date */
    margin-bottom: 1rem;
}

/* Weekday figure */
.weekday-figure {
    background: var(--weekday-bg);
    width: 250px;          /* adjust as needed */
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: justify;

    /* Background image fits the container width fully */
    background-image: var(--weekday-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%; /* scales image to fill width & height */
}

.weekday-text {
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    color: var(--primary-color);
}


/* Date row with left/right figures */
.date-row {
    display: flex;
    align-items: center;
}

.date-figure {
    width: 40px;
    height: 40px;
    background: var(--date-bg) no-repeat center/contain;
}

.date-figure.left {
    margin-right: 0.5rem;
}

.date-figure.right {
    margin-left: 0.5rem;
    transform: scaleX(-1); /* flip horizontally for right figure */
}

.date-text {
    font-size: 2rem;
    font-weight: bold;
}

/* Remove default list style and spacing */
.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item {
    margin-bottom: 1.5rem;  /* spacing between events */
}

/* First line: time/location/comment */
.event-meta {
    font-size: 1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

/* Title line: bigger and bolder */
.event-title {
    font-size: 1.3rem;
    font-weight: 650;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

/* Optional subtext line: smaller and lighter */
.event-subtext {
    font-size: 0.95rem;
    font-weight: normal;
    color: var(--text-muted-color);
    margin-top: 0.1rem;
}

.separator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--separator) no-repeat center/contain;
    vertical-align: middle;
    margin: 0 0.25rem;
}