/* ============================================================
   Activities Tabs Widget
   ============================================================ */
.at-wrap {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background-color: #161831;
	color: #fff;
	padding: 80px 20px;
}
.at-wrap *,
.at-wrap *::before,
.at-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Layout */
.at-layout {
	display: flex;
	align-items: center;
	gap: 60px;
}

/* Tabs column */
.at-tabs-col {
	flex: 0 0 120px;
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.at-tab {
	display: block;
	color: #fff;
	text-align: left;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 6px;
	text-decoration-color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}

.at-tab:hover {
	color: #cc292b;
	text-decoration-color: #cc292b;
}
.at-tab.active {
	color: #cc292b;
	text-decoration-color: #cc292b;
}

/* Image column */
.at-img-col {
	flex: 0 0 45%;
	overflow: hidden;
	position: relative;
}

.at-img-col img {
	width: 100%;
	display: block;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: opacity 0.4s ease;
}

/* Text column */
.at-text-col {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.at-content-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

.at-content-desc {
	font-size: 14px;
	color: #9ca3af;
	line-height: 1.6;
	margin-bottom: 25px;
}

.at-content-link {
	color: #cc292b;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.3s ease;
}

.at-content-link:hover {
	color: #e54b4d;
}

/* Responsive */
@media (max-width: 992px) {
	.at-layout {
		flex-direction: column;
		align-items: flex-start;
		gap: 40px;
	}
	.at-tabs-col {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 20px;
		flex: auto;
		width: 100%;
	}
	.at-img-col,
	.at-text-col {
		flex: auto;
		width: 100%;
	}
}
