.ds-runes-page {
	position: relative;

	width: 100vw !important;
	max-width: none !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;

	background: #f4efe3;
	color: #5b4d43;
	padding-bottom: 70px;
	overflow: hidden;
}

.ds-runes-hero {
	max-width: 920px;
	margin: 0 auto;
	padding: 90px 24px 50px;
	text-align: center;
}

.ds-runes-kicker {
	margin: 0 0 14px;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: #7a6a5e;
}

.ds-runes-hero h1 {
	margin: 0 0 24px;
	font-size: clamp(2.7rem, 7vw, 5rem);
	line-height: 1.05;
	color: #57493f;
}

.ds-runes-hero p {
	max-width: 760px;
	margin: 0 auto;
	font-size: clamp(1.25rem, 3vw, 1.65rem);
	line-height: 1.8;
	color: #77695f;
}

.ds-runes-note {
	width: min(820px, 86%);
	margin: 0 auto 46px;
	padding: 0 0 0 28px;
	border-left: 6px solid #bac6aa;
}

.ds-runes-note p {
	margin: 0;
	font-size: clamp(1.1rem, 2.8vw, 1.4rem);
	line-height: 1.8;
	color: #6f6258;
}

.ds-runes-grid {
	width: min(1120px, 88%);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.ds-rune-card {
	background: #f6f0e3;
	border: 1px solid rgba(92, 78, 64, 0.10);
	border-radius: 32px;
	box-shadow: 0 10px 25px rgba(66, 54, 42, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.45s ease;
	opacity: 0;
	transform: translateY(24px);
}

.ds-rune-card.ds-rune-visible {
	opacity: 1;
	transform: translateY(0);
}

.ds-rune-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 34px rgba(66, 54, 42, 0.11);
}

.ds-rune-card a {
	display: block;
	min-height: 250px;
	padding: 38px 30px;
	text-align: center;
	color: #57493f;
	text-decoration: none;
}

.ds-rune-sign {
	display: block;
	margin-bottom: 18px;
	font-size: clamp(3.2rem, 8vw, 5.2rem);
	line-height: 1;
	color: #4f6b44;
}

.ds-rune-card h2 {
	margin: 0 0 14px;
	font-size: clamp(1.65rem, 4vw, 2.35rem);
	line-height: 1.1;
	color: #57493f;
	text-decoration: underline;
	text-underline-offset: 6px;
}

.ds-rune-card p {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.6;
	color: #75675d;
}

.ds-runes-info {
	width: min(900px, 88%);
	margin: 70px auto 0;
	padding: 42px;
	background: #f6f0e3;
	border-left: 6px solid #bac6aa;
	border-radius: 26px;
	box-shadow: 0 10px 25px rgba(66, 54, 42, 0.06);
}

.ds-runes-info h2 {
	margin: 0 0 18px;
	font-size: clamp(2rem, 5vw, 3rem);
	color: #57493f;
}

.ds-runes-info p {
	margin: 0;
	font-size: clamp(1.1rem, 2.8vw, 1.35rem);
	line-height: 1.8;
	color: #6f6258;
}

@media (max-width: 920px) {
	.ds-runes-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.ds-runes-hero {
		padding: 72px 24px 42px;
	}

	.ds-runes-grid {
		width: min(92%, 620px);
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.ds-rune-card {
		opacity: 1;
		transform: none;
	}

	.ds-rune-card a {
		min-height: auto;
		padding: 42px 30px;
	}

	.ds-runes-note,
	.ds-runes-info {
		width: min(92%, 620px);
	}

	.ds-runes-info {
		padding: 34px 28px;
	}
}