*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Lato", Arial, sans-serif;
  background-color: #ffffff;
  color: #111111;
}

:root {
  /* Shared across header + hero (siblings), so must live globally */
  --header-overlap: 140px;
  --headline-hero-desktop: 60px;
  --headline-hero-tablet: 44px;
  --headline-hero-mobile: 32px;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Motion: subtle + professional, respects reduced motion */
:root {
  --motion-fast: 180ms;
  --motion-med: 650ms;
  --motion-slow: 900ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--motion-slow) var(--motion-ease),
    transform var(--motion-slow) var(--motion-ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-reveal-delay="1"] {
  transition-delay: 140ms;
}

.reveal[data-reveal-delay="2"] {
  transition-delay: 260ms;
}

.reveal[data-reveal-delay="3"] {
  transition-delay: 380ms;
}

.lift-hover {
  transition: transform 240ms var(--motion-ease),
    box-shadow 240ms var(--motion-ease);
}

.lift-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.img-soft-zoom {
  transition: transform var(--motion-slow) var(--motion-ease);
}

.img-soft-zoom:hover {
  transform: scale(1.02);
}

.focus-ring:focus-visible {
  outline: 2px solid #fa8906;
  outline-offset: 3px;
  border-radius: 999px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

.split-heading {
  font-family: "Anton", sans-serif;
  font-size: 56px;
  line-height: 1;
  text-transform: uppercase;
}

/* Subpage main titles: match homepage hero headline size */
.split-heading--subpage {
  font-size: var(--headline-hero-desktop);
  text-align: center;
}

@media (max-width: 768px) {
  .split-heading--subpage {
    font-size: var(--headline-hero-tablet);
  }
}

@media (max-width: 480px) {
  .split-heading--subpage {
    font-size: var(--headline-hero-mobile);
  }
}

/* Ensure subpage base sizing doesn't override titles */
body.subpage .split-heading.split-heading--subpage {
  font-size: var(--headline-hero-desktop);
  text-align: center;
}

@media (max-width: 768px) {
  body.subpage .split-heading.split-heading--subpage {
    font-size: var(--headline-hero-tablet);
  }
}

@media (max-width: 480px) {
  body.subpage .split-heading.split-heading--subpage {
    font-size: var(--headline-hero-mobile);
  }
}

.split-heading .line {
  display: block;
  position: relative;
}

.split-heading .line-orange {
  color: #fa8906;
}

.split-heading .line-white {
  color: #ffffff;
  margin-top: -14px;
}

.split-heading .line-black {
  color: #111111;
  margin-top: -14px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: #fa8906;
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  background-color: #ff980f;
}

.btn-secondary {
  background-color: #111111;
  color: #ffffff;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  background-color: #222222;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  --nav-panel-bg: rgba(0, 0, 0, 0.98);
  --nav-panel-border: rgba(255, 255, 255, 0.14);
  --nav-toggle-bg: rgba(255, 255, 255, 0.08);
  --nav-toggle-border: rgba(255, 255, 255, 0.18);
  --nav-toggle-fg: #ffffff;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0) 75%
  );
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  position: relative;
}

.logo-img {
  height: 62px;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--nav-toggle-border);
  background: var(--nav-toggle-bg);
  color: var(--nav-toggle-fg);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(250, 137, 6, 0.8);
  background: rgba(250, 137, 6, 0.14);
}

.nav-toggle__icon {
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle__icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 999px;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  font-family: "Anton", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.main-nav a[aria-label="Domov"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 22px;
  line-height: 1;
  border-radius: 999px;
  border-bottom: none;
}

.main-nav a[aria-label="Domov"]:hover,
.main-nav a[aria-label="Domov"]:focus-visible {
  background-color: rgba(250, 137, 6, 0.16);
}

.header-call {
  flex: 0 0 auto;
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.header-call--icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
}

.header-call--icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

body.header-solid .site-header {
  background: #000000;
}

/* Light grey bar behind header + page (matches .schedule #f5f5f5) */
body.subpage-light-header {
  background-color: #f5f5f5;
}

body.subpage-light-header .site-header {
  background: #f5f5f5;
  --nav-panel-bg: #f5f5f5;
  --nav-panel-border: rgba(0, 0, 0, 0.1);
  --nav-toggle-bg: rgba(0, 0, 0, 0.06);
  --nav-toggle-border: rgba(0, 0, 0, 0.14);
  --nav-toggle-fg: #111111;
}

body.subpage-light-header .main-nav a {
  color: #111111;
}

body.subpage-light-header .main-nav a[aria-label="Domov"] {
  color: #111111;
}

body.subpage-light-header .main-nav a[aria-label="Domov"]:hover,
body.subpage-light-header .main-nav a[aria-label="Domov"]:focus-visible {
  background-color: rgba(250, 137, 6, 0.14);
}

body.subpage-light-header .section.contact,
body.subpage-light-header .section.transport {
  background-color: #f5f5f5;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-bottom-color: #fa8906;
}

.hero {
  position: relative;
  height: 560px;
  margin-top: calc(-1 * var(--header-overlap));
  color: #ffffff;
  overflow: visible;
  isolation: isolate;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 88%;
  z-index: 1;
  display: block;
  transform: scale(1.0);
}

/* Hero entrance animation (homepage) */
@keyframes heroFloatIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.0);
  }
}

.hero .hero-bg-image {
  animation: heroKenBurns 1400ms var(--motion-ease) both;
}

.hero .split-heading .line {
  opacity: 0;
  animation: heroLineIn 780ms var(--motion-ease) both;
}

.hero .split-heading .line-orange {
  animation-delay: 120ms;
}

.hero .split-heading .line-white {
  animation-delay: 240ms;
}

.hero .hero-tagline {
  opacity: 0;
  animation: heroFloatIn 900ms var(--motion-ease) both;
  animation-delay: 420ms;
}

.hero .hero-form-wrapper,
.hero .form-title {
  opacity: 0;
  animation: heroFloatIn 950ms var(--motion-ease) both;
  animation-delay: 520ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero .hero-bg-image,
  .hero .split-heading .line,
  .hero .hero-tagline,
  .hero .hero-form-wrapper,
  .hero .form-title {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.78) 38%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.15) 78%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--header-overlap) + 34px) 20px 0 20px;
  height: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text {
  margin-bottom: 0;
  width: 100%;
  align-self: flex-start;
}

.hero-text .split-heading {
  text-align: left;
}

.hero-tagline {
  font-family: "Lato", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 16px 0 0 0;
  max-width: 420px;
  line-height: 1.5;
  text-align: left;
}

.hero-form-wrapper {
  width: 100%;
  max-width: 980px;
  margin-top: 36px;
  padding-bottom: 0;
  position: relative;
  z-index: 4;
}

.hero .inquiry-form {
  padding: 14px 28px 18px 28px;
}

.hero .inquiry-form .form-row {
  margin-bottom: 6px;
}

.hero .inquiry-form .form-field {
  margin-bottom: 4px;
}

.hero .inquiry-form .form-consent {
  margin: 6px 0 10px 0;
}

.hero .inquiry-form textarea {
  min-height: 72px;
  resize: vertical;
}

.hero .inquiry-form .form-title,
.hero .inquiry-form .form-field label,
.hero .inquiry-form .form-consent label,
.hero .inquiry-form input,
.hero .inquiry-form textarea,
.hero .inquiry-form button {
  font-family: "Anton", sans-serif;
}

.hero .inquiry-form .form-consent label {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-text .split-heading {
  font-size: var(--headline-hero-desktop);
}

.form-title {
  font-family: "Anton", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.inquiry-form {
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
}

.inquiry-form .form-title {
  color: #111111;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
}

.inquiry-form .form-field label {
  color: #333333;
}

.inquiry-form .form-field input,
.inquiry-form .form-field textarea {
  border: 1px solid #cccccc;
  background-color: #ffffff;
  color: #111111;
}

.inquiry-form .form-consent,
.inquiry-form .form-consent label {
  color: #333333;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.form-field label {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #f5f5f5;
}

.form-field input,
.form-field textarea {
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #444444;
  background-color: #111111;
  color: #ffffff;
}

/* Date placeholder (dd.mm.llll): no extra font — matches surrounding form inputs */
/* Filled date: same font as other inputs (Lato on light forms; Anton in hero) */
.inquiry-form input[data-date-input="true"]:not(.date-placeholder) {
  font-family: "Lato", Arial, sans-serif;
}

.hero .inquiry-form input[data-date-input="true"]:not(.date-placeholder) {
  font-family: "Anton", sans-serif;
}

.inquiry-form input.date-placeholder {
  color: #c7ccd2;
}

.inquiry-form input.date-placeholder::placeholder {
  color: #c7ccd2;
  opacity: 1;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid #fa8906;
  outline-offset: 1px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  margin: 8px 0 16px 0;
  color: #f5f5f5;
}

.form-consent input[type="checkbox"] {
  margin-top: 2px;
}

.form-feedback {
  font-size: 12px;
  margin-top: 8px;
  min-height: 16px;
}

.form-feedback.error {
  color: #ff6b6b;
}

.form-feedback.success {
  color: #4caf50;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.section-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}

.section-heading {
  font-family: "Anton", sans-serif;
  font-size: 42px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.section-heading.light {
  color: #ffffff;
}

.transport {
  background-color: #ffffff;
  padding-top: 340px;
}

.transport .section-media img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  display: block;
}

.services-image {
  margin-top: 18px;
  max-width: 520px;
}

.services-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

body.subpage .services-image {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.schedule {
  background-color: #f5f5f5;
}

.schedule .section-media img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  display: block;
}

.trips {
  background-color: #111111;
  color: #ffffff;
}

.trips .section-header {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.trips .section-header p {
  max-width: 600px;
  font-size: 14px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

.trips-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.trip-card {
  background-color: #1b1b1b;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.trip-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.trip-content {
  padding: 16px 16px 20px 16px;
}

.trip-content h3 {
  font-size: 16px;
  margin: 0 0 8px 0;
}

.trip-content p {
  font-size: 13px;
  color: #dddddd;
  margin: 0 0 12px 0;
}

.card-link {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fa8906;
}

.trips-footer {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  text-align: center;
}

.fleet {
  background-color: #ffffff;
}

.fleet .section-media img {
  border-radius: 12px;
}

.fleet-placeholder {
  border-radius: 12px;
  border: 2px dashed #cccccc;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #777777;
}

.why-us {
  background-color: #111111;
  color: #ffffff;
  text-align: center;
}

.why-overlay {
  display: none;
}

.why-us .section-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.why-us .section-heading.light {
  font-size: 40px;
  margin-bottom: 18px;
}

.why-us .section-text p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
}

.contact {
  background-color: #ffffff;
}

.contact .contact-form-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact .inquiry-form {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.contact .inquiry-form .form-field input,
.contact .inquiry-form .form-field textarea {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: #111111;
}

.contact .inquiry-form .form-title,
.contact .inquiry-form .form-field label,
.contact .inquiry-form .form-consent,
.contact .inquiry-form .form-consent label {
  color: #333333;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
}

.contact-inner {
  align-items: center;
  flex-direction: column;
  gap: 32px;
}

.contact-details p {
  font-size: 14px;
  margin: 4px 0;
}

.contact-details a {
  color: #fa8906;
}

.contact-heading {
  text-align: center;
}

.contact .inquiry-form button {
  font-family: "Anton", sans-serif;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background-color: #fa8906;
  width: 320px;
  height: 320px;
  z-index: 0;
  animation: floatCircle 4s ease-in-out infinite alternate;
  pointer-events: none;
}

.circle-trips {
  width: 320px;
  height: 320px;
}

.circle-trips-left {
  left: -200px;
  top: -60px;
  right: auto;
}

.circle-trips-right {
  right: -210px;
  top: -60px;
  left: auto;
}

.schedule .section-inner,
.trips .section-header,
.trips-grid,
.trips-footer {
  position: relative;
  z-index: 1;
}

.circle-why {
  left: -180px;
  top: -80px;
}

.circle-contact {
  left: -210px;
  bottom: -40px;
}

@keyframes floatCircle {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(18px);
  }
}

.site-footer {
  background-color: #111111;
  color: #ffffff;
  padding: 40px 20px 20px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 16px auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.footer-column {
  flex: 1;
  font-size: 13px;
}

.footer-links-title {
  font-family: "Anton", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  font-weight: 400;
}

.footer-logo {
  height: 36px;
  margin-bottom: 8px;
}

.footer-links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 28px;
}

.footer-links a {
  font-family: "Anton", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-contact h3 {
  margin: 0 0 8px 0;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 12px;
}

.footer-bottom a {
  color: #f5f5f5;
  text-decoration: underline;
}

.blog-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 16px 16px 20px 16px;
}

.blog-card-title {
  font-size: 16px;
  margin: 0 0 8px 0;
}

.blog-card-meta {
  font-size: 12px;
  color: #777777;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 13px;
  color: #555555;
}

.blog-skeleton {
  border-radius: 16px;
  overflow: hidden;
  background-color: #f0f0f0;
  animation: skeletonPulse 1.4s ease-in-out infinite;
  height: 260px;
}

@keyframes skeletonPulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

.spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #f5f5f5;
  border-top-color: #fa8906;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.post-container {
  max-width: 840px;
  margin: 80px auto;
  padding: 0 20px 60px 20px;
}

.post-hero-image {
  width: 100%;
  border-radius: 16px;
  height: 320px;
  object-fit: cover;
  margin-bottom: 20px;
}

.post-title {
  font-family: "Anton", sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.post-meta {
  font-size: 12px;
  color: #777777;
  margin-bottom: 20px;
}

.post-body {
  font-size: 14px;
  line-height: 1.7;
}

.share-row {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.share-row button {
  font-size: 12px;
}

.auth-container,
.admin-container {
  max-width: 480px;
  margin: 80px auto;
  padding: 0 20px 60px 20px;
}

.auth-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 20px 28px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.auth-card h1 {
  font-family: "Anton", sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.auth-card label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.auth-card input {
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 12px;
}

.auth-feedback {
  font-size: 12px;
  min-height: 16px;
  margin-top: 8px;
}

.auth-feedback.error {
  color: #d64545;
}

.auth-feedback.success {
  color: #2e7d32;
}

.admin-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
}

.admin-sidebar {
  background-color: #111111;
  color: #ffffff;
  border-radius: 16px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
}

.admin-sidebar h2 {
  font-family: "Anton", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.admin-sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.admin-sidebar-nav {
  flex: 1;
}

.admin-sidebar .admin-logout-btn.btn-secondary {
  width: 100%;
  margin-top: 14px;
  padding: 9px 12px;
  font-size: 12px;
  letter-spacing: 0.6px;
  border-radius: 12px;
  border: 2px solid #fa8906;
  background-color: transparent;
  color: #ffffff;
  box-shadow: none;
}

.admin-sidebar .admin-logout-btn.btn-secondary:hover {
  background-color: #fa8906;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.admin-sidebar .admin-logout-btn.btn-secondary:focus-visible {
  outline: 2px solid #fa8906;
  outline-offset: 3px;
}

.admin-main {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px 18px 24px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.admin-main h1 {
  font-family: "Anton", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th,
.admin-table td {
  padding: 8px 6px;
  border-bottom: 1px solid #eeeeee;
  text-align: left;
}

.admin-table th {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.admin-badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background-color: #f5f5f5;
}

.admin-badge.published {
  background-color: rgba(76, 175, 80, 0.12);
  color: #2e7d32;
}

.admin-badge.draft {
  background-color: rgba(255, 193, 7, 0.15);
  color: #b28704;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 12px;
}

.admin-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.admin-form-field label {
  font-size: 13px;
  margin-bottom: 4px;
}

.admin-form-field input,
.admin-form-field textarea,
.admin-form-field select {
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #cccccc;
}

.admin-form-field textarea {
  min-height: 140px;
}

.mibus-editor {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.mibus-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px 10px;
  background: #111111;
  color: #ffffff;
}

.mibus-tool {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.mibus-tool:hover {
  transform: translateY(-1px);
  border-color: rgba(250, 137, 6, 0.8);
  background: rgba(250, 137, 6, 0.14);
}

.mibus-tool:focus-visible {
  outline: 2px solid #fa8906;
  outline-offset: 2px;
}

.mibus-tool-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 2px;
}

.mibus-tool-select {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.mibus-tool-select option {
  color: #111111;
}

.mibus-editor-surface {
  padding: 14px 14px 18px 14px;
  min-height: 260px;
  font-size: 14px;
  line-height: 1.75;
}

.mibus-editor-surface:focus {
  outline: 2px solid rgba(250, 137, 6, 0.65);
  outline-offset: -2px;
}

.mibus-editor-surface h2 {
  font-family: "Anton", sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  margin: 18px 0 10px 0;
}

.mibus-editor-surface h3 {
  font-family: "Anton", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  margin: 16px 0 8px 0;
}

.mibus-editor-surface blockquote {
  margin: 14px 0;
  padding: 12px 14px;
  border-left: 4px solid #fa8906;
  background: rgba(250, 137, 6, 0.06);
  border-radius: 10px;
}

.mibus-editor-hint {
  font-size: 12px;
  color: #777777;
  margin: 10px 0 0 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tag-pill {
  padding: 4px 8px;
  border-radius: 999px;
  background-color: #f0f0f0;
  font-size: 11px;
}

/* Subpage layout: smaller elements, more spacing */
body.subpage .section {
  padding: 56px 20px;
}

body.subpage.about-page .section {
  padding-top: 28px;
}

body.subpage .section-inner {
  gap: 40px;
}

body.subpage .split-heading {
  font-size: 36px;
}

body.subpage .split-heading .line-white,
body.subpage .split-heading .line-black {
  margin-top: -10px;
}

body.subpage .section-heading,
body.subpage .section-header .split-heading {
  font-size: 36px;
}

body.subpage .section-text p,
body.subpage .section-header p {
  font-size: 13px;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 16px;
}

body.subpage .section-text p:last-of-type {
  margin-bottom: 24px;
}

body.subpage .trips .section-header {
  margin-bottom: 48px;
  text-align: center;
}

body.subpage .trips .section-header.section-header--centered {
  margin-top: 12px;
}

body.subpage .trips .section-header p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

body.subpage .trips-grid {
  gap: 28px;
}

body.subpage .trip-card img {
  height: 160px;
}

body.subpage .trip-content {
  padding: 14px 16px 18px 16px;
}

body.subpage .trip-content h3 {
  font-size: 14px;
  margin: 0 0 6px 0;
}

body.subpage .trip-content p {
  font-size: 12px;
  margin: 0 0 10px 0;
}

body.subpage .schedule .section-media img {
  max-height: 220px;
  width: auto;
}

body.subpage .contact-inner {
  gap: 48px;
}

body.subpage .contact .inquiry-form .form-title {
  font-size: 16px;
  margin-bottom: 14px;
}

body.subpage .page-container {
  max-width: 720px;
  margin: 56px auto;
  padding: 0 20px 56px 20px;
}

body.subpage .page-container h1 {
  font-family: "Anton", sans-serif;
  font-size: 34px;
  text-transform: uppercase;
  margin: 0 0 28px 0;
  color: #111111;
}

body.subpage .page-container p {
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}

body.subpage .page-container p:last-of-type {
  margin-bottom: 0;
}

/* Kako do nas: map left, content right */
body.subpage .page-container.map-page {
  max-width: 1200px;
}

.map-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: start;
}

.map-embed {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.map-embed iframe {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .map-page-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .map-embed iframe {
    aspect-ratio: 1 / 1;
    height: auto;
  }
}

body.subpage .page-container .contact-block {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eeeeee;
}

body.subpage .page-container .contact-block p {
  margin-bottom: 12px;
}

body.subpage .page-container .contact-block p:last-child {
  margin-bottom: 0;
}

body.subpage .trips-cta {
  max-width: 560px;
  margin: 40px auto 0 auto;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #555555;
}

body.subpage .trips-cta a {
  color: #fa8906;
  text-decoration: underline;
}

/* Aktualno subpage — same look as homepage „AKTUALNO / IZLETI IN POTOVANJA“ */
body.subpage .aktualno-trips .section-header {
  margin: 0 auto 40px auto;
}

body.subpage .aktualno-trips .section-header .split-heading {
  font-size: 56px;
  line-height: 1;
}

body.subpage .aktualno-trips .section-header .split-heading .line-white {
  margin-top: -14px;
}

body.subpage .aktualno-trips .section-header p {
  max-width: 600px;
  font-size: 14px;
  line-height: 1.6;
}

body.subpage .aktualno-trips .trips-grid {
  gap: 24px;
}

body.subpage .aktualno-trips .trip-card img {
  height: 200px;
}

body.subpage .aktualno-trips .trip-content {
  padding: 16px 16px 20px 16px;
}

body.subpage .aktualno-trips .trip-content h3 {
  font-size: 16px;
  margin: 0 0 8px 0;
}

body.subpage .aktualno-trips .trip-content p {
  font-size: 13px;
  color: #dddddd;
  margin: 0 0 12px 0;
}

/* Aktualno page: full-page #111 + header matches trips; section underlap for circles into menu */
body.aktualno-page {
  background-color: #111111;
}

body.aktualno-page .site-header {
  background: linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.97) 0%,
    rgba(17, 17, 17, 0.85) 32%,
    rgba(17, 17, 17, 0.5) 58%,
    rgba(17, 17, 17, 0) 100%
  );
  --nav-panel-bg: rgba(17, 17, 17, 0.98);
  --nav-panel-border: rgba(255, 255, 255, 0.12);
  --nav-toggle-bg: rgba(255, 255, 255, 0.08);
  --nav-toggle-border: rgba(255, 255, 255, 0.18);
  --nav-toggle-fg: #ffffff;
}

body.aktualno-page .aktualno-trips {
  margin-top: calc(-1 * var(--header-overlap));
  padding: calc(48px + var(--header-overlap)) 20px 80px 20px;
}

/* Circles much lower (aktualno only) */
body.aktualno-page .aktualno-trips .circle-trips-left,
body.aktualno-page .aktualno-trips .circle-trips-right {
  top: 140px;
}

@media (max-width: 768px) {
  body.subpage .aktualno-trips .section-header .split-heading {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  body.subpage .aktualno-trips .section-header .split-heading {
    font-size: 32px;
  }
}

.page-container {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px 60px 20px;
}

.page-container h1 {
  font-family: "Anton", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.page-container p {
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .hero-text {
    order: 1;
  }

  .hero-form-wrapper {
    order: 2;
  }

  .trips-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: column;
  }

  .admin-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  body.nav-open {
    overflow: hidden;
  }

  /* Hero stays fixed-height; mobile form needs more space */
  .hero {
    height: 720px;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 18px;
  }

  .logo-img {
    height: 54px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-call {
    margin-left: 8px;
  }

  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    margin-left: 0;
    padding: 10px 10px;
    border-radius: 16px;
    background: var(--nav-panel-bg);
    border: 1px solid var(--nav-panel-border);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms var(--motion-ease), transform 180ms var(--motion-ease);
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav ul {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    align-items: stretch;
  }

  .main-nav a {
    padding: 12px 12px;
    border-radius: 12px;
    border-bottom: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background-color: rgba(250, 137, 6, 0.14);
  }

  .main-nav a[aria-label="Domov"] {
    width: auto;
    height: auto;
    font-size: 14px;
    justify-content: flex-start;
  }

  .hero-content {
    padding-top: calc(var(--header-overlap) + 72px);
  }

  .hero-text .split-heading {
    font-size: var(--headline-hero-tablet);
  }

  .section-inner,
  .contact-inner {
    flex-direction: column;
  }

  .trips-grid,
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .floating-circle {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .split-heading {
    font-size: 32px;
  }

  .hero-text .split-heading {
    font-size: var(--headline-hero-mobile);
  }

  .hero-content {
    padding-top: calc(var(--header-overlap) + 88px);
  }
  
  .hero {
    height: 780px;
  }

  .form-row {
    flex-direction: column;
  }

  .site-footer {
    padding-top: 32px;
  }

  .footer-bottom {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .footer-links ul {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Homepage helpers */
.transport--home {
  padding-top: 380px;
}

.transport--home .section-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

.transport--home .section-text {
  flex: 1.05;
}

.transport--home .section-media {
  flex: 0.95;
  min-width: 360px;
}

.schedule--home .section-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

.schedule--home .section-media {
  flex: 1.05;
  min-width: 380px;
}

.schedule--home .section-text {
  flex: 0.95;
}

/* Reviews */
.reviews {
  background-color: #f5f5f5;
}

.reviews .section-inner {
  flex-direction: column;
  align-items: stretch;
}

.reviews .section-text {
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.review-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.review-stars {
  color: #fa8906;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.review-text {
  margin: 0 0 14px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}

.review-author {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #111111;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Subpage hero (e.g. storitve) */
.subpage-hero {
  position: relative;
  height: 360px;
  margin-top: calc(-1 * var(--header-overlap));
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.subpage-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.subpage-hero--darker::after {
  background: rgba(0, 0, 0, 0.68);
}

/* Storitve: taller hero, bus focal point toward lower part of photo */
.subpage-hero--storitve {
  height: 440px;
}

.subpage-hero--storitve img {
  object-position: center 50%;
}

.subpage-hero-content--center {
  text-align: center;
}

.subpage-hero-tagline {
  margin: 14px auto 0 auto;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.subpage-hero--storitve .subpage-hero-title {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  text-align: center;
}

.storitve-hero-headline {
  font-family: "Anton", sans-serif;
  font-size: var(--headline-hero-desktop);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.storitve-hero-line {
  display: block;
}

.storitve-hero-line--white {
  color: #ffffff;
}

.storitve-hero-line--orange {
  color: #fa8906;
  margin-top: -10px;
}

.subpage-hero--storitve .subpage-hero-tagline {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .storitve-hero-headline {
    font-size: var(--headline-hero-tablet);
  }

  .storitve-hero-line--orange {
    margin-top: -8px;
  }
}

@media (max-width: 480px) {
  .storitve-hero-headline {
    font-size: var(--headline-hero-mobile);
  }
}

.subpage-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--header-overlap) + 38px) 20px 0 20px;
}

.subpage-hero-title {
  margin: 0;
  max-width: 720px;
}

@media (max-width: 768px) {
  .subpage-hero {
    height: 300px;
  }

  .subpage-hero--storitve {
    height: 360px;
  }

  .subpage-hero-content {
    padding-top: 120px;
  }
}

/* Povpraševanje page: text left, form right */
.contact-inner--split {
  flex-direction: row;
  align-items: flex-start;
}

.contact-inner--split .section-text {
  flex: 1.15;
}

.contact-inner--split .contact-form-wrapper {
  flex: 0.85;
}

@media (max-width: 768px) {
  .contact-inner--split {
    flex-direction: column;
  }
}

/* Kdo smo page */
.about-layout .section-text {
  flex: 1.25;
}

.about-layout .section-media {
  flex: 0.75;
}

.about-layout .section-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

.about-layout .split-heading {
  text-align: center;
}

.about-layout .section-text {
  padding-right: 10px;
}

.about-layout .section-media {
  min-width: 380px;
}

@media (max-width: 768px) {
  .about-layout .section-media {
    min-width: 0;
  }
}

.advantages-list {
  list-style: disc;
  padding-left: 18px;
  margin: 8px 0 18px 0;
}

.advantages-list li {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.55;
  color: #333333;
}

/* Povpraševanje: centered block, left-aligned bullets close to text */
.requirements-list {
  list-style: disc;
  list-style-position: inside;
  padding-left: 0;
  margin: 8px auto 18px auto;
  width: fit-content;
  max-width: 100%;
  text-align: left;
}

.requirements-list li {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.55;
  color: #333333;
}

/* Services blocks */
.services-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 22px 0;
}

.services-page .section-inner {
  justify-content: center;
}

.services-page .section-text {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-page .services-bottom {
  justify-items: center;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(250, 137, 6, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #fa8906;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.service-block {
  border: 1px solid #eeeeee;
  border-radius: 14px;
  padding: 18px 18px 20px 18px;
  background-color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 240ms var(--motion-ease),
    box-shadow 240ms var(--motion-ease),
    border-color 240ms var(--motion-ease);
}

.service-block h2 {
  font-family: "Anton", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  color: #fa8906;
}

.services-page .service-block h2 {
  color: #111111;
  font-size: 23px;
}

.service-block:hover {
  border-color: rgba(250, 137, 6, 0.9);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}
.service-block p {
  margin: 0;
}

.services-bottom {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.services-page .services-bottom img {
  width: 100%;
  height: 372px;
  object-fit: cover;
  object-position: 18% 72%;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .services-blocks {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Vozni red page: larger featured image */
.schedule--vozni-red .section-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

body.subpage .schedule--vozni-red .section-inner {
  /* Override global flex layout for a cleaner, predictable split */
  display: grid;
  grid-template-columns: minmax(520px, 1.25fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  max-width: 1320px;
}

body.subpage .schedule--vozni-red .section-media {
  width: 100%;
}

body.subpage .schedule--vozni-red .section-media img {
  /* Override subpage schedule image cap (max-height: 220px; width: auto) */
  max-height: none;
  width: 100%;
  height: 440px;
}

body.subpage .schedule--vozni-red .section-text {
  width: 100%;
  display: flex;
  flex-direction: column;
}

body.subpage .schedule--vozni-red .section-text > h1,
body.subpage .schedule--vozni-red .section-text > p {
  width: 100%;
  align-self: stretch;
}

body.subpage .schedule--vozni-red .section-text > .btn-primary {
  align-self: center;
  margin-top: 8px;
}

/* Kdo smo — match vozni-red layout */
body.subpage .schedule--kdo-smo .section-inner {
  display: grid;
  grid-template-columns: minmax(520px, 1.25fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  max-width: 1320px;
}

body.subpage .schedule--kdo-smo .section-media img {
  max-height: none;
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 12px;
}

body.subpage .schedule--kdo-smo .section-text {
  width: 100%;
}

@media (max-width: 768px) {
  body.subpage .schedule--kdo-smo .section-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  body.subpage .schedule--kdo-smo .section-media img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .schedule--vozni-red .section-media img {
    height: 320px;
  }

  body.subpage .schedule--vozni-red .section-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
}

