.os-container-60850bb7 {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 800px; /* More compact overall */
	margin: 0 auto;
}

.os-years-header-60850bb7 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 5px;
	justify-content: center;
}

.os-year-60850bb7 {
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	color: #666;
	padding: 5px 12px;
	border-bottom: 2px solid transparent;
	transition: all 0.2s ease;
}

.os-year-60850bb7:hover,
.os-year-60850bb7.active {
	color: #111;
	border-bottom-color: #111;
}

.os-content-area-60850bb7 {
	position: relative;
}

.os-content-body-60850bb7 {
	display: none;
	animation: fadeIn60850bb7 0.3s ease forwards;
	background: #f9f9f9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.os-content-body-60850bb7.active {
	display: flex;
	flex-direction: column;
}

.os-image-60850bb7 {
	width: 100%;
	max-height: 200px;
	overflow: hidden;
}

.os-image-60850bb7 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.os-description-60850bb7 {
	padding: 20px;
	font-size: 14px;
	line-height: 1.5;
	color: #444;
}

.os-desc-title-60850bb7 {
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: 700;
	color: #222;
}

@media (min-width: 600px) {
	.os-content-body-60850bb7.active {
		flex-direction: row;
		align-items: stretch;
	}
	.os-image-60850bb7 {
		flex: 0 0 40%;
		max-height: none;
	}
	.os-description-60850bb7 {
		flex: 1;
		padding: 25px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

@keyframes fadeIn60850bb7 {
	from { opacity: 0; transform: translateY(5px); }
	to { opacity: 1; transform: translateY(0); }
}