.tak-events-section {
	--tak-cream: #faf4ea;
	--tak-paper: #ffffff;
	--tak-dark: #202020;
	--tak-ink: #383838;
	--tak-blue: #6cb5c7;
	--tak-green: #6fc191;
	--tak-yellow: #edbf47;
	--tak-orange: #ff9933;
	--tak-red: #e16c6c;
	--tak-purple: #cc6699;
	position: relative;
	padding: 24px 28px 56px;
	color: var(--tak-ink);
	background: var(--tak-cream);
	font-family: "Source Sans 3", Arial, sans-serif;
}

.tak-events-section *,
.tak-events-section *::before,
.tak-events-section *::after {
	box-sizing: border-box;
}

.tak-events-wrap {
	width: min(1180px, 100%);
	margin: 0 auto;
}

.tak-month {
	display: grid;
	grid-template-columns: 165px minmax(0, 1fr);
	gap: 34px;
	padding: 42px 0;
	border-top: 2px solid rgba(32, 32, 32, 0.14);
}

.tak-month-label {
	position: sticky;
	top: 24px;
	height: fit-content;
	color: var(--tak-dark);
	font-family: "Oswald", sans-serif;
	font-size: 33px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.tak-year {
	display: block;
	margin-top: 8px;
	color: var(--tak-green);
	font-size: 15px;
	letter-spacing: 0.14em;
}

.tak-event-list {
	display: grid;
	gap: 18px;
}

.tak-event-card {
	--tak-accent: var(--tak-dark);
	display: grid;
	grid-template-columns: 190px minmax(260px, 1fr) minmax(210px, 0.58fr);
	gap: 28px;
	align-items: center;
	min-height: 154px;
	padding: 26px 28px;
	overflow: hidden;
	border: 1px solid rgba(32, 32, 32, 0.1);
	border-left: 8px solid var(--tak-accent);
	border-radius: 5px 24px 24px 5px;
	background: var(--tak-paper);
	box-shadow: 0 14px 36px rgba(32, 32, 32, 0.07);
}

.tak-tone-blue { --tak-accent: var(--tak-blue); }
.tak-tone-green { --tak-accent: var(--tak-green); }
.tak-tone-red { --tak-accent: var(--tak-red); }
.tak-tone-yellow { --tak-accent: var(--tak-yellow); }
.tak-tone-orange { --tak-accent: var(--tak-orange); }
.tak-tone-purple { --tak-accent: var(--tak-purple); }

.tak-date-block {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	justify-content: center;
	padding-right: 24px;
	border-right: 1px solid rgba(32, 32, 32, 0.13);
}

.tak-weekday {
	color: var(--tak-dark);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tak-date-block strong {
	margin: 2px 0 5px;
	color: var(--tak-dark);
	font-family: "Oswald", sans-serif;
	font-size: 42px;
	line-height: 1;
}

.tak-time {
	color: #5b5b5b;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.tak-event-copy h2 {
	margin: 0 0 8px;
	color: var(--tak-accent);
	font-family: "Oswald", sans-serif;
	font-size: 29px;
	font-weight: 700;
	line-height: 1.08;
}

.tak-event-copy p {
	margin: 0;
	color: var(--tak-ink);
	font-size: 17px;
	line-height: 1.48;
}

.tak-location {
	display: flex;
	gap: 13px;
	align-items: flex-start;
	padding: 17px 18px;
	border: 1px solid color-mix(in srgb, var(--tak-accent) 48%, white);
	border-radius: 14px;
	background: color-mix(in srgb, var(--tak-paper) 88%, var(--tak-accent));
}

.tak-detail-icon {
	display: inline-flex;
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	color: var(--tak-accent);
}

.tak-detail-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tak-location-icon {
	margin-top: 1px;
}

.tak-location-copy > strong,
.tak-location-copy > span {
	display: block;
}

.tak-location-copy > strong {
	color: var(--tak-dark);
	font-size: 17px;
	line-height: 1.25;
}

.tak-location-copy > span:not(.tak-admission) {
	margin-top: 4px;
	color: #666666;
	font-size: 14px;
	line-height: 1.35;
}

.tak-admission {
	display: flex !important;
	gap: 8px;
	align-items: center;
	margin-top: 11px;
	padding-top: 9px;
	color: var(--tak-dark);
	border-top: 1px solid color-mix(in srgb, var(--tak-accent) 58%, white);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.tak-ticket-icon {
	width: 16px;
	height: 16px;
}

.tak-events-empty {
	margin: 0;
	padding: 28px;
	border-radius: 18px;
	background: var(--tak-paper);
	font-size: 18px;
	text-align: center;
}

@media (max-width: 950px) {
	.tak-month {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.tak-month-label {
		position: static;
	}

	.tak-event-card {
		grid-template-columns: 165px minmax(0, 1fr);
	}

	.tak-location {
		grid-column: 2;
	}
}

@media (max-width: 650px) {
	.tak-events-section {
		padding: 14px 18px 36px;
	}

	.tak-month {
		padding: 32px 0;
	}

	.tak-event-card {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 22px 20px;
		border-left-width: 6px;
		border-radius: 4px 18px 18px 4px;
	}

	.tak-date-block {
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 3px 15px;
		padding: 0 0 17px;
		border-right: 0;
		border-bottom: 1px solid rgba(32, 32, 32, 0.13);
	}

	.tak-date-block strong {
		grid-row: 1 / 3;
		grid-column: 2;
		align-self: center;
		font-size: 39px;
	}

	.tak-time {
		font-size: 14px;
	}

	.tak-location {
		grid-column: 1;
	}
}

