/*
 * Modernā piedzīvojuma info josla (A virziens): dzeltenā ar baltu tekstu.
 * ADITĪVS fails — neaizvieto style.css, tikai pārraksta .main-info izskatu.
 * Sticky josla (.main-info-sticky) NETIEK skarta.
 * Ielādēts pēc piedzivojumi-styles, tāpēc pārraksta arī style.css media noteikumus.
 */

.adventures-single-header .main-info {
	height: auto;
	min-height: 78px;
}

.adventures-single-header .main-info ul {
	align-items: stretch;
}

.adventures-single-header .main-info ul li {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	padding: 11px 12px;
	position: relative;
}

/* Saglabā responsīvo .mobile/.desktop-tablet slēpšanu (mūsu display:flex to citādi pārrakstītu) */
.adventures-single-header .main-info ul li.mobile {
	display: none;
}

/* Smalki atdalītāji starp kolonnām */
.adventures-single-header .main-info ul li + li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 15px;
	bottom: 15px;
	width: 1px;
	background: rgba(255, 255, 255, .38);
}

/* Galvenā vērtība */
.adventures-single-header .main-info ul li .main {
	height: auto;
	padding: 0;
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	text-shadow: 0 1px 0 rgba(170, 122, 0, .28);
}

/* Apakšteksts */
.adventures-single-header .main-info ul li .sub {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .05em;
	opacity: .95;
}

/* Pirmās iemaksas summa — balta (nevis rozā) uz dzeltenā */
.adventures-single-header .main-info ul li .sub .highlight {
	color: #fff;
	font-weight: 800;
}

/* Grūtība kā CSS joslas */
.adventures-single-header .main-info .difficulty-bars {
	display: inline-flex;
	gap: 5px;
	align-items: flex-end;
	height: 28px;
}

.adventures-single-header .main-info .difficulty-bars i {
	width: 7px;
	border-radius: 2px;
	background: rgba(255, 255, 255, .45);
}

.adventures-single-header .main-info .difficulty-bars i:nth-child(1) { height: 12px; }
.adventures-single-header .main-info .difficulty-bars i:nth-child(2) { height: 20px; }
.adventures-single-header .main-info .difficulty-bars i:nth-child(3) { height: 28px; }
.adventures-single-header .main-info .difficulty-bars i.on { background: #ffffff; }

/* CTA poga — tīra taisnstūra (ne apaļa) */
.adventures-single-header .main-info .btn-single-enter {
	position: static;
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	line-height: 1;
	padding: 13px 30px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .04em;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(255, 0, 96, .28);
	transition: background .15s ease, transform .12s ease, box-shadow .15s ease;
}

.adventures-single-header .main-info .btn-single-enter:hover {
	background: #d40052;
	transform: translateY(-1px);
	box-shadow: 0 7px 18px rgba(255, 0, 96, .36);
}

/* --- Responsīvi (pārraksta style.css media noteikumus) --- */
@media (max-width: 1024px) {
	.adventures-single-header .main-info ul li .main { padding: 0; font-size: 26px; }
	.adventures-single-header .main-info ul li .sub { font-size: 12px; }
}

@media (max-width: 768px) {
	/* zem 768px rāda .mobile cenas variantu, slēpj .desktop-tablet */
	.adventures-single-header .main-info ul li.desktop-tablet { display: none; }
	.adventures-single-header .main-info ul li.mobile { display: flex; }
	.adventures-single-header .main-info ul li .main { height: auto; font-size: 22px; }
	.adventures-single-header .main-info ul li .sub { font-size: 11px; }
	.adventures-single-header .main-info .btn-single-enter { padding: 9px 16px; font-size: 13px; }
	.adventures-single-header .main-info .difficulty-bars { height: 20px; }
	.adventures-single-header .main-info .difficulty-bars i:nth-child(3) { height: 20px; }
}

/* Mobilais: VISS vienā rindā (kompakti). Kolonnas pēc satura — dienas/grūtība šauras,
   cena elastīga, poga kompakta un netiek ārpus rāmja. */
@media (max-width: 576px) {
	.adventures-single-header .main-info { height: auto; min-height: 0; }
	.adventures-single-header .main-info ul { flex-direction: row; flex-wrap: nowrap; align-items: stretch; justify-content: space-between; gap: 3px; }
	.adventures-single-header .main-info ul li { flex: 0 1 auto; min-width: 0; width: auto; padding: 8px 5px; gap: 2px; border-top: none; }
	/* cena aizņem brīvo vietu; pārējās pēc satura */
	.adventures-single-header .main-info ul li.desktop-tablet,
	.adventures-single-header .main-info ul li.mobile { flex: 1 1 auto; }
	.adventures-single-header .main-info ul li + li::before { display: block; top: 10px; bottom: 10px; }
	.adventures-single-header .main-info ul li .main { height: auto; font-size: 16px; }
	.adventures-single-header .main-info ul li .sub { font-size: 8.5px; letter-spacing: 0; line-height: 1.15; }
	.adventures-single-header .main-info .btn-single-enter { padding: 7px 9px; font-size: 11px; border-radius: 3px; box-shadow: none; white-space: nowrap; }
	/* pirmās iemaksas teksts uz telefona netiek rādīts (tas platināja pogas kolonnu ārpus rāmja) */
	.adventures-single-header .main-info ul li:last-child .sub { display: none; }
	.adventures-single-header .main-info .difficulty-bars { height: 14px; gap: 2px; }
	.adventures-single-header .main-info .difficulty-bars i { width: 4px; }
	.adventures-single-header .main-info .difficulty-bars i:nth-child(1) { height: 6px; }
	.adventures-single-header .main-info .difficulty-bars i:nth-child(2) { height: 10px; }
	.adventures-single-header .main-info .difficulty-bars i:nth-child(3) { height: 14px; }
}
