/**
 * Stránka Použití – přehledný layout (BEM: .usage)
 * Sekce: úvod, výhody (grid), služby (seznam + CTA), druhy využití (tagy) + CTA
 */

.usage-page {
	padding: 1.5rem 0 3rem;
}

/* ----- Hero (když je nastaven Náhledový obrázek stránky) ----- */
.usage-hero {
	position: relative;
	margin: 0 -0.9375rem 2rem;
	overflow: hidden;
	max-height: 320px;
}

.usage-hero__img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	object-position: center;
	max-height: 320px;
}

.usage-hero__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.5rem 1rem;
	background: linear-gradient( to top, rgba(0,0,0,0.75), transparent );
	color: #fff;
}

.usage-hero__title {
	margin: 0 0 0.25rem;
	font-size: clamp(1.35rem, 3.5vw, 1.75rem);
	font-weight: 800;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.usage-hero__subtitle {
	margin: 0;
	font-size: 0.95rem;
	opacity: 0.95;
}

@media (min-width: 768px) {
	.usage-hero {
		margin-left: 0;
		margin-right: 0;
		max-height: 380px;
		border-radius: 8px;
	}
	.usage-hero__img {
		max-height: 380px;
	}
	.usage-hero__overlay {
		padding: 2rem 1.5rem;
	}
}

/* ----- Hlavička stránky ----- */
.usage__header {
	text-align: center;
	margin-bottom: 2rem;
}

.usage__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 800;
	color: #222;
	line-height: 1.2;
}

.usage__subtitle {
	margin: 0;
	font-size: 1.1rem;
	color: #555;
	font-weight: 400;
}

/* ----- Úvodní text ----- */
.usage__intro {
	max-width: 48rem;
	margin: 0 auto 2.5rem;
}

.usage__intro-text {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	line-height: 1.7;
	color: #333;
}

.usage__intro-text strong {
	color: #222;
}

/* ----- Sekce (společné) ----- */
.usage__section {
	margin-bottom: 2.5rem;
}

.usage__section-title {
	margin: 0 0 1rem;
	font-size: 1.35rem;
	font-weight: 800;
	color: #222;
	border-bottom: 3px solid #333;
	padding-bottom: 0.4rem;
	display: inline-block;
}

/* ----- Výhody – mřížka, odrážka = lego kostička z .white-cont ul li ----- */
.usage-benefits__grid {
	list-style: none;
	margin: 0 0 0 0;
	padding: 0;
	display: grid;
	gap: 0.25rem 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 500px) {
	.usage-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.usage-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.85rem 1.5rem;
	}
}

.usage-benefits__item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 0.2rem 0 0 0;
	margin-left: 0;
	font-size: 0.95rem;
	line-height: 1.45;
	color: #333;
}

.usage-benefits__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25em;
	flex-shrink: 0;
	font-size: 0.9em;
	color: #2a7a2a;
	font-weight: bold;
}

.usage-benefits__icon::before {
	content: "✓";
}

.usage-benefits__text {
	display: inline;
}

/* ----- Služby – seznam, odrážka = lego kostička z .white-cont ul li ----- */
.usage-services__list {
	list-style: none;
	margin: 0 0 1rem 0;
	padding: 0;
	font-size: 1rem;
	line-height: 1.8;
	color: #333;
}

.usage-services__item {
	margin-bottom: 0.35em;
}

.usage-services__item:last-child {
	margin-bottom: 0;
}

/* ----- CTA tlačítka ----- */
.usage__cta-wrap {
	margin: 1rem 0;
}

.usage__cta {
	display: inline-block;
	padding: 0.85rem 1.5rem;
	font-size: 1.05rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background: #333;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}

.usage__cta:hover,
.usage__cta:focus {
	background: #555;
	color: #fff;
}

.usage__cta:focus-visible {
	outline: 2px solid #333;
	outline-offset: 2px;
}

.usage__cta--primary {
	background: #333;
	color: #fff;
}

.usage__cta--primary:hover,
.usage__cta--primary:focus {
	background: #555;
	color: #fff;
}

.usage__cta--secondary {
	background: transparent;
	color: #333;
	border: 2px solid #333;
}

.usage__cta--secondary:hover,
.usage__cta--secondary:focus {
	background: #333;
	color: #fff;
}

.usage__cta-wrap--secondary {
	margin-top: 1.25rem;
}

@media (max-width: 767px) {
	.usage__cta {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding: 1rem;
		font-size: 1.1rem;
	}
}

/* ----- Druhy využití – jako na megabeton.cz: skupiny + obyčejné odrážkové seznamy ----- */
.usage-types__lead {
	margin: 0 0 1.25rem;
	font-size: 1rem;
	color: #555;
}

.usage-types__group {
	margin-bottom: 1.5rem;
}

.usage-types__group:last-of-type {
	margin-bottom: 1rem;
}

.usage-types__group-title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 800;
	color: #333;
}

/* Obyčejný seznam – odrážka = lego kostička z .white-cont ul li */
.usage-types__list {
	list-style: none;
	margin: 0 0 0 0;
	padding: 0;
}

.usage-types__item {
	font-size: 0.95rem;
	line-height: 1.5;
	color: #333;
}

.usage-types__more {
	margin: 1.25rem 0 0;
	font-size: 0.98rem;
	color: #555;
}
