@charset "UTF-8";
/**
 * @file
 * Global layout styles for Velantis theme — mobile-first.
 */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ==========================================================================
   Container — Mobile base (xs)
   ========================================================================== */
.vel-container {
  max-width: var(--vel-max-width);
  margin: 0 auto;
  padding-inline: var(--vel-space-md); /* 16px */
}

.vel-section {
  padding-block: var(--vel-space-2xl); /* 48px */
}

/* Full-width layout — no sidebars */
.layout-content {
  width: 100%;
  max-width: 100%;
}

/* Hide sidebars globally */
.layout-sidebar-first,
.layout-sidebar-second {
  display: none;
}

/* Hide breadcrumbs on frontpage */
.path-frontpage .vel-breadcrumb-wrapper {
  display: none;
}

/* Mobile reorder: swap Resources (before Cyber) on frontpage */
.path-frontpage .vel-main .layout__region {
  display: flex;
  flex-direction: column;
}

.path-frontpage .vel-resources {
  order: -1;
}

/* Utility: visually hidden */
.vel-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   sm (576px)
   ========================================================================== */
@media (min-width: 576px) {
  .vel-container {
    padding-inline: var(--vel-space-lg); /* 24px */
  }
}
/* ==========================================================================
   md (768px)
   ========================================================================== */
@media (min-width: 768px) {
  .vel-container {
    padding-inline: 40px;
  }
  .vel-section {
    padding-block: var(--vel-space-3xl); /* 64px */
  }
}
/* ==========================================================================
   lg (992px) — Desktop layout switch
   ========================================================================== */
@media (min-width: 992px) {
  .vel-container {
    padding-inline: 60px;
  }
  .vel-section {
    padding-block: var(--vel-section-padding);
  }
  /* Remove mobile reordering */
  .path-frontpage .vel-main .layout__region {
    display: block;
  }
  .path-frontpage .vel-resources {
    order: 0;
  }
}
/* ==========================================================================
   xl (1200px)
   ========================================================================== */
@media (min-width: 1200px) {
  .vel-container {
    padding-inline: var(--vel-content-padding); /* 80px */
  }
}
/* ==========================================================================
   Responsive display utilities (mobile-first)
   ========================================================================== */
.vel-d-none {
  display: none !important;
}

.vel-d-block {
  display: block !important;
}

.vel-d-flex {
  display: flex !important;
}

@media (min-width: 992px) {
  .vel-d-lg-none {
    display: none !important;
  }
  .vel-d-lg-block {
    display: block !important;
  }
  .vel-d-lg-flex {
    display: flex !important;
  }
}
/*# sourceMappingURL=layout.css.map */
