/* Ensure the off-season div takes up the whole row */
.off-season-container {
	grid-column: 1 / -1; /* Spans all 3 columns */
	width: 100%;
}

.off-season-image {
	width: 100%;
	height: auto;
	display: block;
}

/* Wrapper for the three columns */
.basebelles-season-header-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* Three equal columns */
	gap: 20px;
	text-align: center;
	background: var(--bb-wine-red-banner);
	padding: 30px 20px;
	color: var(--bb-sandstone-cream);
}

/* Center the 2026 Season title above the grid */
.season-year-title {
	grid-column: 1 / -1; /* Spans all 3 columns */
	font-size: 2.2rem;
	font-weight: bold;
	text-transform: uppercase;
}

.season-col h3 {
	font-size: 1.4rem;
	font-style: italic;
	margin-bottom: 5px;
}

a.season-type-link {
	color: var(--bb-sandstone-cream);
}

.season-col span {
	font-size: 1rem;
	display: block;
}

/* The 'Cross Out' logic */
.season-col .over {
	text-decoration: line-through;
	opacity: 0.6;
}

.season-col .active {
	font-weight: bold;
}
