.hero {
	padding-bottom: 64px;
}
.hero .section-title {
	margin-bottom: 64px;
}

.terms-content {
	width: 100%;
	padding: 72px 0 128px;
}
.terms-content .container {
  display: flex;
	align-items: flex-start;
	gap: 48px;
}

.terms-content-side {
	position: sticky;
	top: 104px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
	max-width: 222px;
}
.terms-content-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background-color: var(--white);
	border: 1px solid #E2E8F0;
	box-shadow: 0 1px 2px 0 rgba(2, 6, 23, 0.03);
	border-radius: 100px;
	align-self: center;
}
.terms-content-actions a {
	display: flex;
	align-items: center;
	color: #202D3D;
	transition: color 0.3s ease-in-out;
}
.terms-content-actions a:hover {
	color: var(--azure-radiance-500);
}

/* Kopyala: .post-tools-copy-url* ile main.js (blog ile aynı davranış) */
.terms-content-actions .post-tools-copy-url-icons {
	position: relative;
	display: inline-block;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	vertical-align: top;
}

.terms-content-actions .post-tools-copy-url-svg {
	display: block;
	transition: opacity 0.2s ease;
}

.terms-content-actions .post-tools-copy-url-svg--check {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	pointer-events: none;
}

.terms-content-actions .post-tools-copy-url.is-copied .post-tools-copy-url-svg--link {
	opacity: 0;
}

.terms-content-actions .post-tools-copy-url.is-copied .post-tools-copy-url-svg--check {
	opacity: 1;
}

.terms-content-actions .post-tools-copy-url:hover .post-tools-copy-url-svg--link path,
.terms-content-actions .post-tools-copy-url:hover .post-tools-copy-url-svg--check path {
	fill: var(--azure-radiance-500);
}

@media (prefers-reduced-motion: reduce) {
	.terms-content-actions .post-tools-copy-url-svg {
		transition: none;
	}
}

@media print {
	@page {
		margin: 1.5cm;
	}

	body {
		background: #fff !important;
	}

	header.header,
	section.hero,
	footer,
	.terms-content-side {
		display: none !important;
	}

	.terms-content-actions,
	.terms-content-nav {
		display: none !important;
	}

	.terms-content {
		padding: 0 !important;
	}

	.terms-content .container {
		display: block !important;
		max-width: 100% !important;
		gap: 0 !important;
	}

	.terms-content-inner {
		flex: none !important;
		width: 100% !important;
		max-width: 100% !important;
	}
}
.terms-content-nav {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	width: 100%;
	padding: 6px;
	background-color: var(--white);
	border: 1px solid #E2E8F0;
	box-shadow: 0 1px 2px 0 rgba(2, 6, 23, 0.03);
	border-radius: 16px;
	overflow: hidden;
}
.terms-content-nav li {
	display: flex;
	align-items: center;
	width: 100%;
}
.terms-content-nav li a {
	width: 100%;
	padding: 8px;
	background-color: var(--white);
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: #475569;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.terms-content-nav li.active a {
	background-color: rgba(57, 122, 247, 0.10);
	color: var(--azure-radiance-500);
}
.terms-content-nav li a:hover {
	color: var(--azure-radiance-500);
}

.terms-content-inner {
	display: flex;
	flex-direction: column;
	flex: 1;
}

@media (max-width: 1023px) {
  .terms-content {
    padding: 48px 0;
  }
	.terms-content-nav {
		top: 80px;
	}
}
@media (max-width: 767px) {
	.terms-content .container {
		flex-direction: column;
	}
	.terms-content-nav {
		position: sticky;
		top: 64px;
		flex-direction: row;
		width: calc(100% + 32px);
		max-width: calc(100% + 32px);
		margin: -48px -16px -16px;
		padding: 16px;
		overflow-x: auto;
		overflow-y: hidden;
		border-radius: 0;
		border: none;
	}
	.terms-content-nav li {
		display: inline-flex;
		width: auto;
		white-space: nowrap;
	}
}

.terms-content-inner p {
  margin-bottom: 38px;
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-400);
  line-height: var(--line-height-28);
  color: var(--slate-700);
	text-align: justify;
}

@media (max-width: 767px) {
	.terms-content-inner p {
		margin-top: 8px;
		margin-bottom: 24px;
		text-align: left;
	}
}