.activity-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2.2vw, 2rem);
	width: min(100%, var(--home-content-width, 1280px));
	margin: 2.25rem auto 0;
}

.activity-column {
	min-width: 0;
	padding: clamp(1.25rem, 2.1vw, 1.75rem);
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 1.25rem;
	box-shadow: 0 24px 52px -38px rgba(15, 23, 42, 0.32);
}

.activity-column-header {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0 0.25rem 1.1rem;
	border-bottom: 1px solid rgba(15, 23, 42, 0.09);
}

.activity-column-icon {
	display: grid;
	place-items: center;
	flex: 0 0 2.75rem;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.85rem;
	background: rgba(193, 157, 104, 0.13);
	color: #a97936;
	font-size: 1.3rem;
}

.activity-column-paid .activity-column-icon {
	background: rgba(15, 44, 82, 0.08);
	color: #173a67;
}

.activity-column-kicker {
	display: block;
	margin-bottom: 0.15rem;
	color: #9a7033;
	font-family: 'Inter', sans-serif;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.activity-column-header h3 {
	margin: 0;
	color: #0f1f35;
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	line-height: 1.3;
}

.activity-column-list {
	display: grid;
}

.activity-row {
	display: grid;
	grid-template-columns: 4.6rem minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.9rem;
	min-width: 0;
	padding: 1.05rem 0.25rem;
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(15, 23, 42, 0.075);
	transition: background-color 220ms ease, transform 220ms ease;
}

.activity-row:last-child {
	border-bottom: 0;
}

.activity-row:hover {
	background: rgba(193, 157, 104, 0.055);
	transform: translateX(3px);
}

.activity-row:focus-visible {
	outline: 2px solid #b98a49;
	outline-offset: 3px;
	border-radius: 0.5rem;
}

.activity-date {
	display: grid;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-variant-numeric: tabular-nums;
}

.activity-date strong {
	color: #0f1f35;
	font-size: 0.95rem;
	line-height: 1.25;
}

.activity-date span {
	margin-top: 0.2rem;
	color: #8290a4;
	font-size: 0.7rem;
}

.activity-row h4 {
	min-width: 0;
	margin: 0;
	color: #152238;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.55;
	text-wrap: pretty;
}

.activity-location {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	max-width: 8.5rem;
	padding: 0.35rem 0.55rem;
	color: #667085;
	background: #f5f7fa;
	border-radius: 0.45rem;
	font-size: 0.75rem;
	line-height: 1.35;
	text-align: right;
}

.activity-location i {
	flex: 0 0 auto;
}

@media (max-width: 960px) {
	.activity-split {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.activity-split {
		margin-top: 1.5rem;
	}

	.activity-column {
		padding: 1rem;
		border-radius: 1rem;
	}

	.activity-row {
		grid-template-columns: 4.35rem minmax(0, 1fr);
		gap: 0.7rem;
		padding: 0.95rem 0.1rem;
	}

	.activity-location {
		grid-column: 2;
		justify-self: start;
		margin-top: -0.3rem;
	}
}
