/**
 * Stikli — 2026 redesign styles.
 *
 * Kept SEPARATE from the SASS-compiled style.css (whose sources are not on the
 * server) so a future `npm run compile:css` can't clobber redesign work.
 * Enqueued after style.css, so rules here win on equal specificity.
 *
 * Design tokens (from the existing theme):
 *   green #009b3b (brand) · green-dark #00852a · ink #292d32 · muted #707070
 *   line #e3eaf3 · panel #f5f7fa · font 'Muller', Helvetica, sans-serif
 */

/* =========================================================================
   Shared
   ========================================================================= */
.section-title {
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 32px;
	line-height: 1.15;
	color: #292d32;
	text-align: center;
	margin: 0 0 34px;
}

/* =========================================================================
   Header — mobile submenu caret (<= 1070px)
   -------------------------------------------------------------------------
   On mobile the primary-menu dropdowns are accordions: js/main.js
   (initMobileSubmenu) toggles .focus on the parent <li> and the theme's
   `.focus .sub-menu{display:block}` reveals it. Previously nothing signalled
   which items even had a submenu and the toggle was unreliable. This adds a
   caret to every parent item (Pakalpojumi, Cenas, Vakances, Kontakti) and
   rotates it up when the submenu is open. Desktop (> 1070px) is untouched —
   it still uses hover dropdowns with no caret.
   ========================================================================= */
@media screen and (max-width: 1070px) {
	/* Mobile dropdowns are tap-driven (.focus, set by initMobileSubmenu). The
	   theme's desktop `li:hover > .sub-menu{display:block}` isn't media-scoped,
	   so on touch it can "stick" after a tap and keep a submenu open, blocking
	   collapse-on-second-tap. Suppress hover-reveal here unless the item is the
	   open one; `:not(.focus)` keeps the .focus display:block rule winning. */
	.site-header #primary-menu > li.menu-item-has-children:not(.focus):hover > .sub-menu {
		display: none;
		animation: none;
	}
	.site-header #primary-menu > li.menu-item-has-children > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
	}
	.site-header #primary-menu > li.menu-item-has-children > a::after {
		content: "";
		flex: 0 0 auto;
		width: 11px;
		height: 11px;
		margin-right: 6px;
		border-right: 3px solid currentColor;
		border-bottom: 3px solid currentColor;
		transform: translateY( -25% ) rotate( 45deg );
		transition: transform .25s ease;
	}
	.site-header #primary-menu > li.menu-item-has-children.focus > a::after {
		transform: translateY( 25% ) rotate( -135deg );
	}
}

/* =========================================================================
   Header — desktop nav polish (> 1070px)
   -------------------------------------------------------------------------
   (1) Drop the italic on hover/active menu links — keep only the green
       colour as the cue (the theme set both green + italic).
   (2) Replace the theme's slide-in-from-the-side dropdown — `.sub-menu`
       sits at left:-100vw and @keyframes menu-show animates left -> 0 — with
       a clean, minimal "open downward" fade. Same resting position (still
       absolute, anchored to #site-navigation), just a short vertical reveal
       instead of a horizontal slide. Mobile accordion (above) is untouched.
   ========================================================================= */
.site-header #primary-menu li:hover > a,
.site-header #primary-menu li.focus > a,
.site-header #primary-menu li.current-menu-item > a,
.site-header #primary-menu li.current-menu-ancestor > a,
.site-header #primary-menu li.current-page-ancestor > a {
	font-style: normal;
}

@media screen and (min-width: 1071px) {
	.site-header #primary-menu .sub-menu {
		left: 0;                 /* was -100vw — cancels the off-screen slide-in */
		display: block;          /* kept in place; shown/hidden via opacity+visibility */
		opacity: 0;
		visibility: hidden;
		transform: translateY( -10px );
		transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
		animation: none;
	}
	.site-header #primary-menu li:hover > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY( 0 );
		transition: opacity .22s ease, transform .22s ease, visibility 0s;
		animation: none;
	}
	/* Long submenu labels (e.g. "Adaptīvās kruīza kontroles (ACC) kalibrēšana")
	   wrap onto a second line instead of overflowing the dropdown box. */
	.site-header #primary-menu .sub-menu li {
		white-space: normal;
		line-height: 1.35;
	}
}

/* =========================================================================
   1.1 — Dedicated booking page (/rezervet-laiku/)
   ========================================================================= */
.booking-page__intro {
	padding: 120px 0 8px;
	text-align: center;
}
.booking-page__intro h1 {
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 44px;
	line-height: 1.1;
	color: #292d32;
	margin: 0 0 12px;
}
.booking-page__lead {
	max-width: 620px;
	margin: 0 auto;
	color: #707070;
	font-size: 15px;
	line-height: 1.5;
}
/* LatePoint booking widget wrapper (replaced the Booknetic Vue #booking-form). */
.booking-page__form {
	padding: 24px 0 96px;
}

/* Task 3 — keep the fixed site header above the LatePoint form.
   LatePoint's inline elements (dropdowns, calendar day capacity, slot
   tooltips) sit at z-index:9999, so the theme's default header z-index:2
   let parts of the form render over it ("some above, some below"). 10000
   clears the whole inline form but stays below LatePoint's own overlays and
   modals (99999–1000001: loading, lightbox, notifications, phone dropdown),
   which should still cover the header. Scoped to the booking template so the
   global header stacking is untouched elsewhere. */
.page-template-template-booking .site-header {
	z-index: 10000;
}

/* Task 2 — hide the floating/sticky "Rezervēt laiku" button on the booking
   page itself (it only links back here). The contact icons in .floating-info
   stay visible. */
.page-template-template-booking .floating-info .green-block {
	display: none;
}
/* With the green CTA hidden, .floating-info is narrow and hugs the right edge,
   so the theme's centered contact tooltips (width:100% of .floating-info) spilled
   off the right of the screen. Right-anchor them here and size each pill to its
   own content (icon + address/number) with real right padding, so they grow
   leftward, stay on-screen, and don't shrink-wrap into a hard "cut-off" edge.
   Scoped to the booking page — other (wider) pages are unchanged. */
.page-template-template-booking .floating-info .black-block ul {
	left: auto;
	right: 0;
	width: max-content;
	max-width: calc(100vw - 40px);
}
.page-template-template-booking .floating-info .black-block ul > li {
	justify-content: flex-start;
	padding-right: 16px;
}

/* =========================================================================
   1.4 — Services grid (homepage)
   ========================================================================= */
.services-section {
	padding: 72px 0;
	background: #fff;
}
/* Standalone /pakalpojumi/ page (template-pakalpojumi.php): the services
   section is the first block, so add top room to clear the fixed header. */
.pakalpojumi-page .services-section {
	padding-top: 150px;
}
@media (max-width: 720px) {
	.pakalpojumi-page .services-section {
		padding-top: 120px;
	}
}
.services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	max-width: 1000px;
	margin: 0 auto;
}
.service-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 22px;
	border: 1px solid #e3eaf3;
	border-radius: 12px;
	background: #fff;
	text-decoration: none;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}
.service-card:hover {
	border-color: #009b3b;
	box-shadow: 0 10px 26px rgba( 0, 155, 59, .10 );
	transform: translateY( -1px );
}
.service-card__icon {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.service-card__icon img {
	max-width: 44px;
	max-height: 44px;
	object-fit: contain;
}
.service-card__icon-ph {
	width: 40px;
	height: 40px;
	border-radius: 9px;
	background: #f5f7fa;
	border: 1px dashed #cdd7e3;
	display: block;
}
.service-card__title {
	flex: 1 1 auto;
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.25;
	color: #292d32;
}
.service-card__arrow {
	flex: 0 0 auto;
	color: #009b3b;
	display: flex;
	align-items: center;
	transition: transform .25s;
}
.service-card:hover .service-card__arrow {
	transform: translateX( 3px );
}

/* =========================================================================
   1.4.2 — Customer reviews (Trustindex)
   ========================================================================= */
.reviews-section {
	padding: 8px 0 76px;
	background: #fff;
}
.reviews-embed {
	max-width: 1000px;
	margin: 0 auto;
}
.reviews-embed--placeholder {
	padding: 26px;
	border: 1px dashed #adbfc7;
	border-radius: 12px;
	background: #f5f7fa;
	color: #707070;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}

/* =========================================================================
   3 — Service page (template-service.php)
   ========================================================================= */
.service-page {
	background: #fff;
}
.service-hero {
	padding: 150px 0 40px;
	text-align: center;
	background: #f5f7fa;
	border-bottom: 1px solid #eef1f5;
}
.service-hero h1 {
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 46px;
	line-height: 1.08;
	color: #292d32;
	margin: 0 0 14px;
}
.service-hero__lead {
	max-width: 640px;
	margin: 0 auto 22px;
	color: #707070;
	font-size: 16px;
	line-height: 1.55;
}
.wrapper.narrow {
	max-width: 760px;
}
.service-faq {
	padding: 18px 0;
}
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.faq-item {
	border: 1px solid #e3eaf3;
	border-radius: 12px;
	background: #fff;
}
.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 17px;
	color: #292d32;
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-item__ico {
	flex: 0 0 auto;
	position: relative;
	width: 14px;
	height: 14px;
}
.faq-item__ico::before,
.faq-item__ico::after {
	content: '';
	position: absolute;
	background: #009b3b;
	border-radius: 2px;
	transition: transform .25s;
}
.faq-item__ico::before {
	top: 6px;
	left: 0;
	width: 14px;
	height: 2px;
}
.faq-item__ico::after {
	top: 0;
	left: 6px;
	width: 2px;
	height: 14px;
}
.faq-item[open] .faq-item__ico::after {
	transform: scaleY( 0 );
}
.faq-item__a {
	padding: 0 22px 18px;
	color: #4a4f55;
	font-size: 15px;
	line-height: 1.6;
}
.faq-item__a p {
	margin: 0 0 10px;
}
.faq-item__a p:last-child {
	margin-bottom: 0;
}
.service-body {
	padding: 30px 0;
}
.service-body .entry-content {
	color: #3a3f45;
	font-size: 16px;
	line-height: 1.7;
}
/* Rich service body (2026 content import): headings, brand-bulleted lists, an
   expert-tip callout, and visible media placeholders the client replaces. */
.service-body .entry-content > *:first-child {
	margin-top: 0;
}
.service-body .entry-content h2 {
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 26px;
	line-height: 1.2;
	color: #292d32;
	margin: 36px 0 14px;
}
.service-body .entry-content h3 {
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 20px;
	color: #292d32;
	margin: 26px 0 10px;
}
.service-body .entry-content p {
	margin: 0 0 16px;
}
.service-body .entry-content a {
	color: #009b3b;
}
.service-body .entry-content ul {
	margin: 0 0 18px;
	padding-left: 0;
	list-style: none;
}
.service-body .entry-content ul li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 10px;
}
.service-body .entry-content ul li::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #009b3b;
}
.service-tip {
	background: #f0f8f2;
	border-left: 4px solid #009b3b;
	border-radius: 8px;
	padding: 14px 18px;
	margin: 0 0 18px;
	color: #2b5f3d;
}
.service-media-ph {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 120px;
	text-align: center;
	background: #f5f7fa;
	border: 2px dashed #c3d0dd;
	border-radius: 12px;
	padding: 22px;
	margin: 0 0 20px;
	color: #7c8aa0;
	font-size: 14px;
}
/* Service body — real content images (ACC/radar import) */
.service-body .entry-content .wp-block-image {
	margin: 6px 0 24px;
}
.service-body .entry-content .wp-block-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}
.service-body .entry-content .wp-block-image figcaption {
	margin-top: 8px;
	font-size: 13px;
	color: #7c8aa0;
	text-align: center;
}
.service-media {
	padding: 16px 0 30px;
}
.service-media__img {
	width: 100%;
	border-radius: 14px;
	display: block;
}
.service-media__video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	border-radius: 14px;
	overflow: hidden;
}
.service-media__video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.service-price {
	padding: 18px 0 64px;
}
.price-card {
	max-width: 760px;
	margin: 0 auto;
	padding: 32px;
	text-align: center;
	border: 1px solid #e3eaf3;
	border-radius: 16px;
	background: #f5f7fa;
}
.price-card__from {
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 40px;
	color: #009b3b;
	margin-bottom: 6px;
}
.price-card__note {
	color: #707070;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 20px;
}
.price-card__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* =========================================================================
   2 — Prices page (template-prices.php)
   ========================================================================= */
.prices-page {
	background: #fff;
}
/* Hero removed 2026-08-06 — the VAT note is now the first element and provides
   the top clearance under the fixed header; the first price section follows it. */
.prices-page__vat {
	margin: 0;
	padding-top: 140px;
	text-align: center;
	color: #707070;
	font-size: 14px;
}
.prices-page > section:first-of-type {
	padding-top: 28px;
}
@media (max-width: 720px) {
	.prices-page__vat {
		padding-top: 110px;
	}
}
.prices-hero {
	padding: 150px 0 40px;
	text-align: center;
	background: #f5f7fa;
	border-bottom: 1px solid #eef1f5;
}
.prices-hero h1 {
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 46px;
	color: #292d32;
	margin: 0 0 12px;
}
.prices-hero__lead {
	max-width: 640px;
	margin: 0 auto;
	color: #707070;
	font-size: 16px;
	line-height: 1.55;
}
.prices-services {
	padding: 54px 0 26px;
}
.price-table {
	max-width: 760px;
	margin: 0 auto 24px;
	border: 1px solid #e3eaf3;
	border-radius: 14px;
	overflow: hidden;
}
.price-table__head {
	background: #009b3b;
	color: #fff;
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 18px;
	padding: 14px 22px;
}
.price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 13px 22px;
	border-top: 1px solid #eef1f5;
}
.price-row__name {
	color: #3a3f45;
	font-size: 15px;
}
.price-row__val {
	color: #292d32;
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 16px;
	white-space: nowrap;
}
.prices-top100 {
	padding: 24px 0 64px;
}
.top100__filter {
	max-width: 1000px;
	margin: 0 auto 18px;
}
.top100__filter .edited-select {
	display: inline-block;
	min-width: 280px;
}
.top100__filter .edited-select select {
	width: 100%;
}
.top100 {
	max-width: 1000px;
	margin: 0 auto;
	border: 1px solid #e3eaf3;
	border-radius: 14px;
	overflow: hidden;
}
.top100__row {
	display: grid;
	grid-template-columns: 1.1fr 2fr 1fr;
	gap: 16px;
	align-items: center;
	padding: 12px 22px;
	border-top: 1px solid #eef1f5;
}
.top100__row:first-child {
	border-top: 0;
}
.top100__row[hidden] {
	display: none;
}
.top100__row--head {
	background: #f5f7fa;
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .02em;
	color: #292d32;
}
.top100__row span:first-child {
	font-family: 'Muller', Helvetica, sans-serif;
	color: #292d32;
}
.top100__row span:nth-child(2) {
	color: #3a3f45;
	font-size: 14px;
}
.top100__row:not(.top100__row--head) span:last-child {
	color: #009b3b;
	font-family: 'Muller', Helvetica, sans-serif;
	white-space: nowrap;
}
.top100__empty {
	padding: 20px 22px;
	color: #707070;
	text-align: center;
}
.prices-note {
	max-width: 1000px;
	margin: 14px auto 0;
	color: #adbfc7;
	font-size: 12px;
	text-align: center;
}

/* =========================================================================
   4 — Contacts: per-branch navigation buttons
   ========================================================================= */
.branches {
	padding: 44px 0 24px;
	background: #fff;
	position: relative;
}
/* Contacts page lost its hero (2026-08-06), so .branches is now the first block
   under the fixed header — add top room the hero used to provide. */
.contacts-page .branches {
	padding-top: 140px;
}
@media (max-width: 720px) {
	.contacts-page .branches {
		padding-top: 110px;
	}
}
.branches__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}
.branch-card {
	border: 1px solid #e3eaf3;
	border-radius: 14px;
	padding: 26px;
	background: #fff;
}
.branch-card__title {
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 22px;
	color: #292d32;
	margin: 0 0 8px;
}
.branch-card__addr {
	color: #3a3f45;
	font-size: 15px;
	margin: 0 0 8px;
}
.branch-card__meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: #707070;
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 18px;
}
.branch-card__meta a {
	color: #009b3b;
}
.branch-card__work p {
	margin: 0;
}
.branch-card__nav {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.nav-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.nav-btn svg {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 720px) {
	.section-title {
		font-size: 24px;
	}
	.booking-page__intro {
		padding: 96px 0 4px;
	}
	.booking-page__intro h1 {
		font-size: 30px;
	}
	.services-section {
		padding: 44px 0;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	.reviews-section {
		padding: 4px 0 48px;
	}
	.service-hero {
		padding: 110px 0 24px;
	}
	.service-hero h1 {
		font-size: 30px;
	}
	.price-card__from {
		font-size: 32px;
	}
	.prices-hero {
		padding: 110px 0 24px;
	}
	.prices-hero h1 {
		font-size: 30px;
	}
	.top100__filter .edited-select {
		min-width: 0;
		width: 100%;
		display: block;
	}
	.top100__row {
		grid-template-columns: 1fr 1.4fr auto;
		gap: 10px;
		padding: 10px 14px;
		font-size: 13px;
	}
	.branches__grid {
		grid-template-columns: 1fr;
	}
	.branch-card__nav .nav-btn {
		flex: 1 1 auto;
		justify-content: center;
	}
}

/* =========================================================================
   5 — Blog (template-blog.php listing + single.php)
   ========================================================================= */
.blog-archive {
	padding: 150px 0 80px;
	background: #fff;
}
.blog-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 320px, 1fr ) );
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
}
.blog-card {
	background: #fff;
	border: 1px solid #e3eaf3;
	border-radius: 14px;
	overflow: hidden;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}
.blog-card:hover {
	border-color: #009b3b;
	box-shadow: 0 12px 30px rgba( 0, 155, 59, .10 );
	transform: translateY( -2px );
}
.blog-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}
.blog-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f5f7fa;
}
.blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.blog-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 22px 24px 24px;
}
.blog-card__date {
	color: #009b3b;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 8px;
}
.blog-card__title {
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 20px;
	line-height: 1.25;
	color: #292d32;
	margin: 0 0 10px;
}
.blog-card__excerpt {
	color: #707070;
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 18px;
}
.blog-card__more {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #009b3b;
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 14px;
}
.blog-card__more svg {
	transition: transform .25s;
}
.blog-card:hover .blog-card__more svg {
	transform: translateX( 3px );
}
.blog-empty {
	text-align: center;
	color: #707070;
	padding: 40px 0;
}
.blog-pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 44px;
}
.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border: 1px solid #e3eaf3;
	border-radius: 8px;
	color: #292d32;
	text-decoration: none;
	font-family: 'Muller', Helvetica, sans-serif;
}
.blog-pagination .page-numbers.current,
.blog-pagination a.page-numbers:hover {
	background: #009b3b;
	border-color: #009b3b;
	color: #fff;
}

/* Single post */
.blog-single__head {
	padding: 140px 0 22px;
	background: #f5f7fa;
	border-bottom: 1px solid #eef1f5;
}
.blog-single__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #707070;
	font-size: 14px;
	text-decoration: none;
	margin-bottom: 18px;
}
.blog-single__back:hover {
	color: #009b3b;
}
.blog-single__title {
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 40px;
	line-height: 1.12;
	color: #292d32;
	margin: 0 0 12px;
}
.blog-single__date {
	color: #009b3b;
	font-size: 14px;
	font-weight: 500;
}
.blog-single__media {
	padding: 30px 0 0;
	background: #fff;
}
.blog-single__media img {
	width: 100%;
	border-radius: 14px;
	display: block;
}
.blog-single__body {
	padding: 34px 0 20px;
	background: #fff;
}
.blog-single__body .entry-content {
	color: #3a3f45;
	font-size: 16px;
	line-height: 1.75;
}
.blog-single__body .entry-content > *:first-child {
	margin-top: 0;
}
.blog-single__body .entry-content h2 {
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 26px;
	line-height: 1.2;
	color: #292d32;
	margin: 38px 0 14px;
}
.blog-single__body .entry-content h3 {
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 20px;
	color: #292d32;
	margin: 26px 0 10px;
}
.blog-single__body .entry-content p {
	margin: 0 0 16px;
}
.blog-single__body .entry-content a {
	color: #009b3b;
}
.blog-single__body .entry-content ul {
	margin: 0 0 18px;
	padding-left: 0;
	list-style: none;
}
.blog-single__body .entry-content ul li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 10px;
}
.blog-single__body .entry-content ul li::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #009b3b;
}
.blog-single__body .entry-content .wp-block-image {
	margin: 6px 0 24px;
}
.blog-single__body .entry-content .wp-block-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}
.blog-single__body .entry-content .wp-block-image figcaption {
	margin-top: 8px;
	font-size: 13px;
	color: #7c8aa0;
	text-align: center;
}
.blog-single__body .entry-content .wp-block-table {
	margin: 0 0 22px;
	overflow-x: auto;
}
.blog-single__body .entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	border: 1px solid #e3eaf3;
	border-radius: 12px;
	overflow: hidden;
}
.blog-single__body .entry-content thead th {
	background: #009b3b;
	color: #fff;
	font-family: 'Muller', Helvetica, sans-serif;
	text-align: left;
	padding: 12px 16px;
}
.blog-single__body .entry-content tbody td {
	padding: 11px 16px;
	border-top: 1px solid #eef1f5;
}
.blog-single__body .entry-content tbody tr:nth-child( even ) td {
	background: #f7f9fc;
}
.blog-media-ph {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	text-align: center;
	background: #f5f7fa;
	border: 2px dashed #c3d0dd;
	border-radius: 12px;
	padding: 22px;
	margin: 0 0 20px;
	color: #7c8aa0;
	font-size: 14px;
}
.blog-source {
	font-size: 13px;
	color: #adbfc7;
	word-break: break-word;
	margin-top: 26px;
}
.blog-source a {
	color: #7c8aa0;
}
.blog-single__cta {
	padding: 12px 0 72px;
	background: #fff;
	text-align: center;
}
.blog-single__cta-text {
	color: #292d32;
	font-family: 'Muller', Helvetica, sans-serif;
	font-size: 18px;
	margin: 0 0 16px;
}
@media (max-width: 720px) {
	.blog-archive {
		padding-top: 120px;
	}
	.blog-single__head {
		padding-top: 110px;
	}
	.blog-single__title {
		font-size: 28px;
	}
}

/* =========================================================================
   Legal pages (Lietošanas noteikumi etc.) — anchored section headings must
   clear the fixed 106px header when jumped to (e.g. footer → #atteikuma-tiesibas).
   ========================================================================= */
.wp-block-group__inner-container h2 {
	scroll-margin-top: 130px;
}
