:root {
  --aksk-navy: #1d3557;
  --aksk-navy-dark: #142640;
  --aksk-teal: #27706f;
  --aksk-green: #2d8a74;
  --aksk-mint: #66c2a4;
  --aksk-offwhite: #f1faee;
  --aksk-light-neutral: #f5f7f9;
  --aksk-red: #e11d48;
  --aksk-red-dark: #be123c;
  --aksk-ink: #111827;
  --aksk-copy: #334155;
  --aksk-muted: #64748b;
  --aksk-line: #e2e8f0;
  --aksk-soft: #f8fafc;
  --aksk-bg: #f9fafb;
  --aksk-white: #fff;
  --aksk-max: 1140px;
  --aksk-shadow: 0 14px 38px rgba(15, 23, 42, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--aksk-ink);
  background: var(--aksk-bg);
  font-family: "Cabin", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open,
body.search-open,
body.a11y-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a {
  color: var(--aksk-navy);
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--aksk-teal);
  outline-offset: 3px;
}
button,
input,
textarea,
select { font: inherit; }
button { cursor: pointer; }
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  z-index: 10000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  color: #fff;
  background: var(--aksk-navy);
}
.aksk-container {
  width: min(calc(100% - 48px), var(--aksk-max));
  margin-inline: auto;
}
.aksk-section { padding: 72px 0; }
.aksk-section-title {
  margin: 0 0 28px;
  color: var(--aksk-navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
}
.aksk-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--aksk-red);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.aksk-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--aksk-navy);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.aksk-arrow-link:hover { color: var(--aksk-red); }

/* Header */
.aksk-alert {
  border-bottom: 3px solid var(--aksk-red);
  background: #fff1f2;
}
.aksk-alert__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11.5px 32px;
  color: #4c0519;
  font-size: .81rem;
  line-height: 1.5;
}
.aksk-alert__icon {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  place-items: center;
  border: 1.5px solid var(--aksk-red);
  border-radius: 50%;
  color: var(--aksk-red);
  font-size: 10px;
  font-weight: 700;
}
.aksk-alert__badge {
  flex: 0 0 auto;
  padding: 3px 9px;
  border-radius: 3px;
  color: #fff;
  background: var(--aksk-red);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.aksk-alert__title {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.aksk-alert__title strong { color: var(--aksk-red); }
.aksk-alert__link {
  flex: 0 0 auto;
  color: var(--aksk-red);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
}
.aksk-sticky-top {
  position: sticky;
  z-index: 500;
  top: 0;
}
.aksk-header-sentinel { height: 1px; margin-bottom: -1px; }
.admin-bar .aksk-sticky-top { top: 32px; }
.aksk-site-header {
  border-bottom: 1px solid var(--aksk-line);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
  transition: box-shadow .28s ease;
}
.aksk-sticky-top.is-stuck .aksk-site-header {
  box-shadow: 0 10px 30px rgba(15, 23, 42, .16);
  animation: aksk-header-stick .28s ease-out both;
}
@keyframes aksk-header-stick {
  from { opacity: .94; }
  to { opacity: 1; }
}
.aksk-language-switcher {
  display: flex;
  overflow: hidden;
  height: 40px;
  border: 1px solid var(--aksk-line);
  border-radius: 4px;
  background: #fff;
}
.aksk-language-switcher a {
  display: flex;
  min-width: 38px;
  padding: 0 9px;
  align-items: center;
  justify-content: center;
  color: var(--aksk-muted);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.aksk-language-switcher a + a { border-left: 1px solid var(--aksk-line); }
.aksk-language-switcher .is-current {
  color: #fff;
  background: var(--aksk-navy);
}
.aksk-header-main {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 32px;
  transition: min-height .28s ease, padding .28s ease;
}
.aksk-brand {
  display: block;
  flex: 0 0 auto;
}
.aksk-brand__logo {
  display: block;
  width: auto;
  height: 78px;
  max-height: 78px;
  transition: height .28s ease, max-height .28s ease;
}
.aksk-sticky-top.is-stuck .aksk-header-main { min-height: 62px; padding-block: 7px; }
.aksk-sticky-top.is-stuck .aksk-brand__logo { height: 64px; max-height: 64px; }
.aksk-sticky-top.is-stuck .aksk-primary-nav a { padding-block: 11px; }
.aksk-primary-nav {
  min-width: 0;
  flex: 0 1 auto;
  padding-left: 24px;
  border-left: 1px solid var(--aksk-line);
  overflow: visible;
}
.aksk-primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.aksk-primary-nav > div > ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.aksk-primary-nav .lang-item,
.aksk-primary-nav .astm-search-menu,
.aksk-mobile-nav .lang-item,
.aksk-mobile-nav .astm-search-menu { display: none !important; }
.aksk-primary-nav li {
  position: relative;
  display: flex;
}
.aksk-primary-nav a {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 3px solid transparent;
  color: #111827;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: padding .28s ease;
  white-space: nowrap;
}
.aksk-primary-nav > div > ul > li.menu-item-has-children > a::after {
  width: 13px;
  height: 13px;
  margin-left: 6px;
  flex: 0 0 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6l6-6' fill='none' stroke='%23111827' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  content: "";
}
.aksk-primary-nav > div > ul > li:hover > a,
.aksk-primary-nav > div > ul > li:focus-within > a {
  color: var(--aksk-navy);
  border-bottom-color: var(--aksk-navy);
  background: var(--aksk-soft);
}
.aksk-primary-nav .aksk-mega {
  position: fixed;
  z-index: 9999;
  display: none;
  border: 1px solid var(--aksk-line);
  border-top: 3px solid var(--aksk-navy);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .12);
}
.aksk-primary-nav .aksk-mega--simple {
  min-width: 220px;
  padding: 8px 0;
}
.aksk-primary-nav .aksk-mega--wide2 {
  width: 520px;
  min-width: 520px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.aksk-primary-nav .aksk-mega--wide {
  width: 680px;
  min-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.aksk-primary-nav li:hover > .aksk-mega--simple,
.aksk-primary-nav li:focus-within > .aksk-mega--simple {
  display: block;
}
.aksk-primary-nav li:hover > .aksk-mega--wide,
.aksk-primary-nav li:hover > .aksk-mega--wide2,
.aksk-primary-nav li:focus-within > .aksk-mega--wide,
.aksk-primary-nav li:focus-within > .aksk-mega--wide2 {
  display: grid;
}
.aksk-primary-nav .aksk-mega__column {
  padding: 20px 22px;
  border-right: 1px solid #f3f4f6;
}
.aksk-primary-nav .aksk-mega--simple .aksk-mega__column {
  padding: 0;
  border: 0;
}
.aksk-primary-nav .aksk-mega__column:last-child { border-right: 0; }
.aksk-primary-nav .aksk-mega__title {
  display: block;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f3f4f6;
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}
.aksk-primary-nav .aksk-mega__divider {
  display: block;
  height: 1px;
  margin: 8px 0;
  background: #f3f4f6;
}
.aksk-primary-nav .aksk-mega__link {
  width: 100%;
  padding: 6px 0;
  border: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
}
.aksk-primary-nav .aksk-mega--simple .aksk-mega__link { padding: 8px 20px; }
.aksk-primary-nav .aksk-mega__link--sub {
  padding-left: 12px;
  color: #6b7280;
  font-size: 13px;
}
.aksk-primary-nav .aksk-mega__link:hover,
.aksk-primary-nav .aksk-mega__link:focus,
.aksk-primary-nav .aksk-mega__link.is-current {
  color: var(--aksk-navy);
  background: #f9fafb;
}
.aksk-primary-nav .aksk-mega__link:focus-visible {
  outline: 2px solid var(--aksk-navy);
  outline-offset: -2px;
}
.aksk-header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.aksk-header-language { flex: 0 0 auto; }
.aksk-mobile-panel__languages { display: none; }
.aksk-icon-button,
.aksk-menu-button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--aksk-line);
  border-radius: 50%;
  color: var(--aksk-navy);
  background: var(--aksk-soft);
}
.aksk-icon-button svg,
.aksk-menu-button svg { width: 20px; height: 20px; }
.aksk-menu-button { display: none; border-radius: 6px; }
.aksk-report-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 8px 19px;
  border-radius: 4px;
  color: #fff;
  background: var(--aksk-red);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.aksk-report-button:hover { color: #fff; background: var(--aksk-red-dark); }
.aksk-report-button svg { width: 17px; height: 17px; }

/* Search and mobile navigation */
.aksk-search {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: 24px;
  place-items: center;
  opacity: 0;
  background: rgba(15, 23, 42, .68);
  transition: .2s ease;
}
.search-open .aksk-search { visibility: visible; opacity: 1; }
.aksk-search__panel {
  position: relative;
  width: min(640px, 100%);
  padding: 42px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--aksk-shadow);
}
.aksk-search__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  color: var(--aksk-muted);
  background: none;
  font-size: 1.6rem;
}
.aksk-search-form { display: flex; gap: 8px; }
.aksk-search-form label { flex: 1; }
.aksk-search-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
}
.aksk-search-form button {
  padding: 10px 22px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: var(--aksk-red);
  font-weight: 700;
}
.aksk-mobile-panel,
.aksk-mobile-overlay { display: none; }

/* Mockup-matched homepage */
.home #main-content { line-height: 1.5; }
.aksk-home-title {
  margin: 0 0 18px;
  padding-left: 10px;
  border-left: 3px solid var(--aksk-navy);
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 14px;
  text-transform: uppercase;
}
.aksk-home-title svg {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: -2px;
}

.aksk-hero {
  position: relative;
  height: clamp(580px, 44vw, 700px);
  overflow: hidden;
  color: #fff;
  background: #123b51;
}
.aksk-hero__slider { position: relative; width: 100%; height: 100%; touch-action: pan-y; }
.aksk-hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  padding-inline: max(32px, calc((100% - var(--aksk-max)) / 2 + 32px));
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(48px, 6vw, 84px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
}
.aksk-hero__slide::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 45, 59, .88) 0%, rgba(7, 66, 79, .58) 48%, rgba(6, 45, 59, .34) 100%);
}
.aksk-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.aksk-hero__backdrop {
  position: absolute;
  z-index: 0;
  inset: -30px;
  background-position: center;
  background-size: cover;
  filter: blur(16px) saturate(.95);
  opacity: .84;
  transform: scale(1.06);
}
.aksk-hero__copy,
.aksk-hero__media { position: relative; z-index: 1; }
.aksk-hero__copy {
  min-width: 0;
  max-width: 560px;
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity .5s ease .12s, transform .5s ease .12s;
}
.aksk-hero__slide.is-active .aksk-hero__copy { opacity: 1; transform: translateX(0); }
.aksk-hero__title {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(36px, 2.8vw, 46px);
  line-height: 1.13;
  letter-spacing: -.7px;
  text-wrap: balance;
}
.aksk-hero__link {
  display: inline-flex;
  min-width: 154px;
  min-height: 48px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--aksk-navy);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}
.aksk-hero__link:hover { color: var(--aksk-navy); background: #f1f5f9; }
.aksk-hero__media {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  display: grid;
  width: 100%;
  height: min(520px, calc(100% - 96px));
  overflow: hidden;
  place-items: center;
  border-radius: 18px;
  background: #1a4a70;
  box-shadow: 0 24px 55px rgba(2, 20, 34, .34);
  opacity: 0;
  transform: perspective(1100px) translate3d(24px, 0, 0) scale(.98);
  transition: opacity .55s ease .08s, transform .55s ease .08s;
}
.aksk-hero__slide.is-active .aksk-hero__media {
  opacity: 1;
  transform: perspective(1100px) translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y)) scale(1);
}
.aksk-hero__image { width: 100%; height: 100%; object-fit: cover; }
.aksk-hero__media > svg { width: 64px; color: rgba(255,255,255,.16); }
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .aksk-hero__slide.is-active .aksk-hero__media {
    transform-style: preserve-3d;
    transition: opacity .55s ease .08s, transform .2s ease-out, box-shadow .2s ease-out;
    will-change: transform;
  }
  .aksk-hero__slide.is-active .aksk-hero__media:hover {
    box-shadow: 0 30px 66px rgba(2, 20, 34, .42);
  }
}
.aksk-hero__dots {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: flex;
  transform: translateX(-50%);
  gap: 7px;
}
.aksk-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}
.aksk-hero__dot.is-active { background: #fff; }
.aksk-hero__arrows {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.aksk-hero__arrow {
  display: grid;
  width: 54px;
  height: 64px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  font-size: 52px;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(5, 34, 48, .65);
  transition: transform .2s ease;
  pointer-events: auto;
}
.aksk-hero__arrow:hover,
.aksk-hero__arrow:focus-visible { color: #fff; background: transparent; transform: scale(1.16); }

.aksk-services {
  padding: 40px 32px;
  border-bottom: 1px solid var(--aksk-line);
  background: #fff;
}
.aksk-services > .aksk-container,
.aksk-home-body > .aksk-container,
.aksk-stats > .aksk-container,
.aksk-notices > .aksk-container,
.aksk-partners > .aksk-container,
.aksk-site-footer > .aksk-container {
  width: min(100%, var(--aksk-max));
}
.aksk-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.aksk-service-card {
  height: 191px;
  min-height: 191px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  transition: .15s ease;
}
.aksk-service-card:hover {
  border-color: var(--aksk-navy);
  box-shadow: 0 4px 16px rgba(29,53,87,.1);
  transform: translateY(-1px);
}
.aksk-service-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 10px;
  color: var(--aksk-navy);
  background: #dbeafe;
}
.aksk-service-card__icon svg { width: 24px; height: 24px; }
.aksk-service-card h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 15px;
  line-height: normal;
}
.aksk-service-card p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}
.aksk-service-card .aksk-arrow-link {
  display: flex;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
}

.aksk-home-body {
  padding: 40px 32px;
  background: #f9fafb;
}
.aksk-children {
  display: grid;
  height: 344px;
  margin-bottom: 28px;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--aksk-navy);
}
.aksk-children__copy {
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.aksk-children__intro { display: grid; grid-template-columns: 48px 1fr; gap: 16px; }
.aksk-children__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: #93c5fd;
  background: rgba(255,255,255,.1);
}
.aksk-children__icon svg { width: 24px; height: 24px; }
.aksk-children__label {
  display: block;
  margin-bottom: 10px;
  color: #93c5fd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.aksk-children h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 26px;
  line-height: 1.3;
}
.aksk-children__copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.65;
}
.aksk-children__actions {
  display: flex;
  margin-left: 64px;
  flex-wrap: wrap;
  gap: 10px;
}
.aksk-button {
  display: inline-flex;
  min-height: 44px;
  padding: 11px 22px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.aksk-button svg { width: 16px; height: 16px; }
.aksk-button--light { color: var(--aksk-navy); background: #fff; }
.aksk-button--light:hover { color: var(--aksk-navy); background: #f1f5f9; }
.aksk-button--ghost { color: #fff; border-color: rgba(255,255,255,.3); background: transparent; }
.aksk-button--ghost:hover { color: #fff; background: rgba(255,255,255,.07); }
.aksk-button--teal { color: #fff; border-color: var(--aksk-teal); background: var(--aksk-teal); }
.aksk-button--teal:hover { color: #fff; border-color: var(--aksk-green); background: var(--aksk-green); }
.aksk-children__video {
  position: relative;
  display: flex;
  padding: 24px 24px 40px 0;
  flex-direction: column;
}
.aksk-children__video iframe {
  width: 100%;
  height: 280px;
  margin: auto 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
}
.aksk-children__video p {
  position: absolute;
  right: 24px;
  bottom: 14px;
  left: 0;
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  text-align: center;
}

.aksk-news .aksk-home-title { margin-bottom: 18px; }
.aksk-news .aksk-home-title a {
  color: inherit;
  text-decoration: none;
}
.aksk-news .aksk-home-title a:hover,
.aksk-news .aksk-home-title a:focus-visible { color: var(--aksk-teal); }
.aksk-news { margin-bottom: 8px; }
.aksk-news__content {
  padding-top: 22px;
  border-top: 4px solid var(--aksk-navy);
}
.aksk-news-feature {
  display: block;
  min-height: 536px;
  margin-bottom: 28px;
  color: #111827;
  text-decoration: none;
}
.aksk-news-feature__media {
  display: block;
  width: 100%;
  height: 340px;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--aksk-navy);
}
.aksk-news-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.aksk-news-feature__body { display: block; }
.aksk-news__kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--aksk-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: normal;
  text-transform: uppercase;
}
.aksk-news-feature h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 28px;
  line-height: 1.25;
}
.aksk-news-feature__excerpt {
  display: block;
  max-width: 760px;
  margin-bottom: 10px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}
.aksk-news-list {
  display: grid;
  height: auto;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--aksk-line);
}
.aksk-news-card {
  display: block;
  min-width: 0;
  padding: 20px 20px 20px 0;
  border-right: 1px solid var(--aksk-line);
  color: #111827;
  text-decoration: none;
  overflow: hidden;
}
.aksk-news-card:not(:first-child) { padding-left: 20px; }
.aksk-news-card:last-child { padding-right: 0; border-right: 0; }
.aksk-news-card__media {
  display: block;
  width: 100%;
  height: 270px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--aksk-navy);
}
.aksk-news-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.aksk-news-card__body { display: block; }
.aksk-news-card h3 {
  display: -webkit-box;
  height: 43px;
  margin: 0 0 8px;
  overflow: hidden;
  color: #111827;
  font-size: 16px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.aksk-stats {
  padding: 28px 32px;
  border-bottom: 1px solid var(--aksk-line);
  background: #fff;
}
.aksk-stats .aksk-home-title { margin-bottom: 8px; }
.aksk-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.aksk-stats__grid--annual { border-top: 1px solid var(--aksk-line); }
.aksk-stat {
  position: relative;
  padding: 16px 24px;
}
.aksk-stat::after {
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 4px;
  width: 1px;
  content: "";
  background: #e5e7eb;
}
.aksk-stat:nth-child(4n)::after { display: none; }
.aksk-stat__number {
  display: block;
  color: var(--aksk-navy);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.aksk-stats__grid--annual .aksk-stat__number { color: var(--aksk-red); }
.aksk-stat__label,
.aksk-stat__trend,
.aksk-stat__period { display: block; }
.aksk-stat__label { margin-top: 6px; color: #6b7280; font-size: 13px; }
.aksk-stat__trend { margin-top: 4px; color: #16a34a; font-size: 11px; }
.aksk-stat__period { margin-top: 4px; color: #6b7280; font-size: 11px; }
.aksk-stat__label,
.aksk-stat__trend,
.aksk-stat__period { line-height: normal; }

.aksk-notices {
  padding: 32px;
  border-top: 1px solid var(--aksk-line);
  border-bottom: 1px solid var(--aksk-line);
  background: #f8fafc;
}
.aksk-notices__heading {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
}
.aksk-notices__heading .aksk-home-title { margin-bottom: 0; }
.aksk-alerts-link {
  color: var(--aksk-red);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.aksk-notices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.aksk-notice {
  position: relative;
  padding: 16px;
  border-left: 4px solid var(--aksk-red);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  line-height: normal;
}
.aksk-notice--medium { border-left-color: #f59e0b; }
.aksk-notice--low { border-left-color: #eab308; }
.aksk-notice__cve { display: block; color: #6b7280; font-family: monospace; font-size: 13px; line-height: normal; }
.aksk-notice__level {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 2px 6px;
  color: var(--aksk-red);
  background: #fff1f2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.aksk-notice--medium .aksk-notice__level { color: #a16207; background: #fffbeb; }
.aksk-notice--low .aksk-notice__level { color: #1d4ed8; background: #eff6ff; }
.aksk-notice h3 { margin: 6px 0; color: #111827; font-size: 15px; line-height: 1.35; }
.aksk-notice__meta { display: flex; margin-top: 8px; align-items: center; justify-content: space-between; line-height: normal; }
.aksk-notice time { color: #9ca3af; font-size: 12px; }
.aksk-notice__meta strong { color: #6b7280; font-size: 12px; }

.aksk-partners {
  padding: 44px 32px;
  border-top: 1px solid var(--aksk-line);
  border-bottom: 1px solid var(--aksk-line);
  background: #eff3f8;
}
.aksk-partners__grid {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.aksk-partner {
  display: flex;
  width: 154px;
  min-height: 128px;
  flex: 0 0 154px;
  padding: 16px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--aksk-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15,23,42,.06);
  overflow: hidden;
  transition: .15s ease;
}
.aksk-partner:hover {
  border-color: var(--aksk-navy);
  box-shadow: 0 4px 14px rgba(29,53,87,.16);
  transform: translateY(-2px);
}
.aksk-partner img { max-width: 100%; max-height: 92px; object-fit: contain; transform: scale(1.25); }

/* Footer */
.aksk-site-footer { padding: 48px 32px; color: #cbd5e1; background: var(--aksk-navy); line-height: 1.55; }
.aksk-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 7vw, 96px);
}
.aksk-social-links { display: flex; margin-top: 20px; align-items: center; gap: 10px; }
.aksk-social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(29, 53, 87, .16);
  border-radius: 50%;
  color: var(--aksk-navy);
  background: #fff;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.aksk-social-links a:hover,
.aksk-social-links a:focus-visible { border-color: var(--aksk-mint); color: var(--aksk-teal); transform: translateY(-2px); }
.aksk-social-links svg { width: 18px; height: 18px; }
.aksk-footer-column h2 {
  margin: 0 0 14px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.aksk-footer-column > a {
  display: block;
  margin-bottom: 9px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
}
.aksk-footer-column > a:hover { color: #fff; }
.aksk-footer-contact > a {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.aksk-footer-contact svg { width: 15px; height: 15px; margin-top: 3px; flex: 0 0 auto; }
.aksk-footer-contact .aksk-social-links { display: flex; }
.aksk-footer-contact .aksk-social-links a { margin: 0; }
.aksk-footer-contact .aksk-social-links svg { width: 18px; height: 18px; margin: 0; }
.aksk-footer-column .aksk-footer-urgent { color: var(--aksk-red); font-weight: 700; }

/* Standard WordPress, post and event content */
.aksk-inner-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 54px;
  border-bottom: 4px solid var(--aksk-mint);
  color: #fff;
  background:
    radial-gradient(circle at 86% 22%, rgba(102,194,164,.16), transparent 24%),
    linear-gradient(135deg, var(--aksk-navy-dark), var(--aksk-navy));
}
.aksk-inner-hero__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--aksk-mint);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.aksk-inner-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: "Cabin", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.625rem);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}
.single-post .aksk-inner-hero h1 {
  width: 100%;
  max-width: none;
  text-wrap: pretty;
}
.aksk-inner-hero__meta {
  margin: 16px 0 0;
  color: #ccebe1;
  font-size: .82rem;
}
.aksk-content {
  width: calc(100% - 48px) !important;
  max-width: var(--aksk-max) !important;
  min-height: 54vh;
  margin-inline: auto !important;
  padding-block: 54px 76px;
}
.aksk-entry {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(39, 112, 111, .2);
  border-top: 4px solid var(--aksk-teal);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(29, 53, 87, .07);
}
.aksk-entry-content {
  color: var(--aksk-copy);
  font-family: "Cabin", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.72;
}
.aksk-entry-content > :first-child { margin-top: 0; }
.aksk-entry-content > :last-child { margin-bottom: 0; }
.aksk-entry-content h1,
.aksk-entry-content h2,
.aksk-entry-content h3,
.aksk-entry-content h4,
.aksk-entry-content h5,
.aksk-entry-content h6 {
  margin-top: 1.6em;
  color: var(--aksk-navy);
  font-family: "Cabin", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}
.aksk-entry-content h1 { font-size: clamp(2rem, 4vw, 2.625rem); }
.aksk-entry-content h2 { font-size: clamp(1.55rem, 3vw, 1.75rem); }
.aksk-entry-content h3 { font-size: 1.375rem; }
.aksk-entry-content h4 { font-size: 1.125rem; }
.aksk-entry-content h5,
.aksk-entry-content h6 { font-size: 1rem; }
.aksk-entry-content p { margin: 0 0 1.35em; }
.aksk-entry-content a {
  color: var(--aksk-teal);
  font-weight: 600;
  overflow-wrap: anywhere;
  text-decoration: none;
}
.aksk-entry-content a:hover {
  color: var(--aksk-green);
  text-decoration: underline;
  text-underline-offset: .18em;
}
.aksk-entry-content a :where(strong, b) { color: inherit; }
.aksk-entry-content iframe { max-width: 100%; }
.aksk-entry-content table { width: 100%; border-collapse: collapse; }
.aksk-entry-content th,
.aksk-entry-content td { padding: 10px; border: 1px solid var(--aksk-line); }
.aksk-entry--elementor .elementor-widget-text-editor,
.aksk-entry--elementor .elementor-heading-title {
  font-family: "Cabin", system-ui, sans-serif !important;
}
.aksk-entry--elementor .elementor-widget-text-editor,
.aksk-entry--elementor .elementor-widget-text-editor :where(p, li, td, th) {
  font-size: 1.0625rem !important;
  line-height: 1.75 !important;
}
.aksk-entry--elementor h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem) !important; }
.aksk-entry--elementor h2 { font-size: clamp(1.55rem, 3vw, 2.15rem) !important; }
.aksk-entry--elementor h3 { font-size: 1.35rem !important; }
.aksk-entry--elementor h4 { font-size: 1.18rem !important; }

/* Native About page */
.aksk-about {
  background: var(--aksk-bg);
  color: var(--aksk-copy);
}
.aksk-about :where(h2, h3, p) { margin-top: 0; }
.aksk-about h2,
.aksk-about h3 {
  color: var(--aksk-navy);
  line-height: 1.2;
  text-wrap: balance;
}
.aksk-about h2 {
  margin-bottom: 22px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.aksk-about h3 { font-size: 1.125rem; }
.aksk-about-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--aksk-teal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.aksk-about-kicker::before {
  display: inline-block;
  width: 3px;
  height: 14px;
  margin-right: 10px;
  vertical-align: -2px;
  background: var(--aksk-mint);
  content: "";
}
.aksk-about-intro { padding: 84px 0; }
.aksk-about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
}
.aksk-about-intro__copy > p {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: 1.0625rem;
  line-height: 1.78;
}
.aksk-about-intro__copy .aksk-about-intro__lead {
  color: var(--aksk-navy);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.55;
}
.aksk-about-intro__link {
  display: inline-flex;
  margin-top: 14px;
  align-items: center;
  gap: 10px;
  background: var(--aksk-navy);
  color: #fff;
}
.aksk-about-intro__link:hover {
  background: var(--aksk-teal);
  color: #fff;
}
.aksk-about-intro__media {
  position: relative;
  margin: 0;
}
.aksk-about-intro__media::before {
  position: absolute;
  z-index: 0;
  inset: -18px 22px 22px -18px;
  border-radius: 16px;
  background: rgba(102, 194, 164, .2);
  content: "";
}
.aksk-about-intro__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--aksk-shadow);
}
.aksk-about-intro__image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: zoom-in;
}
.aksk-about-intro__image-button:focus-visible {
  outline: 3px solid var(--aksk-mint);
  outline-offset: 4px;
}
.aksk-about-intro__media figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 15px;
  border-radius: 5px;
  color: #fff;
  background: rgba(20, 38, 64, .9);
  font-size: .78rem;
  font-weight: 600;
}
.aksk-about-image-dialog {
  max-width: min(94vw, 1200px);
  padding: 14px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(6, 22, 58, .35);
}
.aksk-about-image-dialog::backdrop { background: rgba(6, 22, 58, .82); }
.aksk-about-image-dialog form { position: relative; margin: 0; }
.aksk-about-image-dialog img {
  display: block;
  max-width: 90vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.aksk-about-image-dialog__close {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 38, 64, .9);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.aksk-about-legal {
  padding: 72px 0 78px;
  border-block: 1px solid var(--aksk-line);
  background: #edf3f7;
}
.aksk-about-heading { max-width: 740px; margin-bottom: 34px; }
.aksk-about-heading h2 { margin-bottom: 0; }
.aksk-about-legal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.aksk-about-legal__grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(39, 112, 111, .18);
  border-top: 4px solid var(--aksk-teal);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(29, 53, 87, .06);
}
.aksk-about-legal__grid article > span {
  display: block;
  margin-bottom: 24px;
  color: var(--aksk-mint);
  font-size: 1.55rem;
  font-weight: 700;
}
.aksk-about-legal__grid h3 { margin-bottom: 11px; }
.aksk-about-legal__grid p { margin-bottom: 0; color: var(--aksk-muted); line-height: 1.6; }
.aksk-about-purpose {
  padding: 84px 0;
  color: #dbe7f2;
  background:
    radial-gradient(circle at 90% 14%, rgba(102, 194, 164, .18), transparent 25%),
    linear-gradient(135deg, var(--aksk-navy-dark), var(--aksk-navy));
}
.aksk-about-purpose__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.aksk-about-purpose article {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .055);
}
.aksk-about-purpose__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(102, 194, 164, .45);
  border-radius: 8px;
  color: var(--aksk-mint);
  background: rgba(102, 194, 164, .08);
}
.aksk-about-purpose__icon svg { width: 28px; height: 28px; }
.aksk-about-purpose .aksk-about-kicker { color: var(--aksk-mint); }
.aksk-about-purpose h2 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.aksk-about-purpose p { margin-bottom: 16px; line-height: 1.75; }
.aksk-about-purpose p:last-child { margin-bottom: 0; }
.aksk-about-functions { padding: 84px 0 128px; }
.aksk-about-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.aksk-about-heading--center > p { margin: -10px 0 0; color: var(--aksk-muted); }
.aksk-about-functions__grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}
.aksk-about-functions__grid li {
  display: grid;
  min-height: 136px;
  padding: 24px 26px;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  border: 1px solid var(--aksk-line);
  border-radius: 7px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.aksk-about-functions__grid li:hover {
  border-color: rgba(39, 112, 111, .45);
  box-shadow: 0 10px 24px rgba(29, 53, 87, .07);
  transform: translateY(-2px);
}
.aksk-about-functions__number {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 7px;
  color: var(--aksk-navy);
  background: rgba(102, 194, 164, .22);
  font-weight: 700;
}
.aksk-about-functions__grid p { margin: 0; line-height: 1.62; }

@media (max-width: 860px) {
  .aksk-about-intro__grid { grid-template-columns: 1fr; }
  .aksk-about-intro__media { max-width: 680px; }
  .aksk-about-legal__grid { grid-template-columns: 1fr; }
  .aksk-about-legal__grid article { min-height: 0; }
  .aksk-about-purpose__grid,
  .aksk-about-functions__grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .aksk-about-intro,
  .aksk-about-purpose { padding: 56px 0 64px; }
  .aksk-about-functions { padding: 56px 0 84px; }
  .aksk-about-legal { padding: 54px 0 60px; }
  .aksk-about-intro__grid { gap: 42px; }
  .aksk-about-intro__copy .aksk-about-intro__lead { font-size: 1.08rem; }
  .aksk-about-intro__media::before { inset: -10px 12px 12px -10px; }
  .aksk-about-intro__media figcaption { right: 10px; bottom: 10px; left: 10px; }
  .aksk-about-legal__grid article,
  .aksk-about-purpose article { padding: 25px 22px; }
  .aksk-about-functions__grid li {
    min-height: 0;
    padding: 20px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }
  .aksk-about-functions__number { width: 42px; height: 42px; }
}
.aksk-entry--elementor h5,
.aksk-entry--elementor h6 {
  font-size: 1rem !important;
  line-height: 1.65 !important;
}
.aksk-post-meta { margin: 10px 0 0; color: var(--aksk-muted); font-size: .85rem; }
.aksk-post-thumbnail {
  overflow: hidden;
  margin: 0 0 34px;
  border-radius: 7px;
}
.aksk-post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
.aksk-post-share {
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--aksk-line);
  text-align: center;
}
.aksk-post-share h2 {
  margin: 0 0 20px;
  color: var(--aksk-navy);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
}
.aksk-post-share__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.aksk-post-share__link {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--aksk-navy);
  transition: transform .18s ease, background-color .18s ease;
}
.aksk-post-share__link:hover,
.aksk-post-share__link:focus-visible {
  color: #fff;
  background: var(--aksk-teal);
  transform: translateY(-2px);
}
.aksk-post-share__link:focus-visible { outline: 3px solid rgba(39, 112, 111, .3); outline-offset: 2px; }
.aksk-post-share__link svg { width: 19px; height: 19px; }
.aksk-post-share__links .aksk-share-action--native,
.aksk-post-share__links .aksk-share-action--whatsapp { background: var(--aksk-teal); }
.aksk-post-share__links .aksk-share-action--x { background: #111; }
.aksk-post-share__links .aksk-share-action--linkedin { background: #0a66c2; }
.aksk-post-share__links .aksk-share-action--email,
.aksk-post-share__links .aksk-share-action--copy { background: #555; }
.aksk-share-action { cursor: pointer; font: inherit; }
.aksk-share-action[hidden] { display: none !important; }
.aksk-share-action.is-copied { background: var(--aksk-green) !important; }
.aksk-post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 42px;
  padding-top: 28px;
  gap: 18px;
  border-top: 1px solid var(--aksk-line);
}
.aksk-post-navigation a {
  color: var(--aksk-navy);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}
.aksk-post-navigation__next { text-align: right; }

/* Events Manager */
.aksk-entry .em.pixelbones {
  --font-family: "Cabin", system-ui, sans-serif;
  max-width: 100%;
  color: #334155;
  font-family: "Cabin", system-ui, sans-serif;
}
.aksk-entry .em-item-single .em-item-header {
  margin-bottom: 32px;
  padding: 28px;
  border: 1px solid rgba(39, 112, 111, .22) !important;
  border-left: 4px solid var(--aksk-teal) !important;
  border-radius: 7px;
  background: var(--aksk-light-neutral);
}
.aksk-entry .em-item-single .em-item-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.aksk-entry .em-item-single .em-item-meta h3 {
  margin: 0 0 14px !important;
  color: var(--aksk-navy);
  font-size: .82rem !important;
  line-height: 1.3 !important;
  letter-spacing: .09em;
  text-transform: uppercase;
}
html body.aksk-modern .aksk-entry .em.pixelbones.em-item .em-item-meta h3 {
  font-size: 13px !important;
  line-height: 1.3 !important;
}
.aksk-entry .em-item-meta-line { margin: 8px 0; }
.aksk-entry .em-event-content { font-size: 1.05rem; line-height: 1.78; }
.aksk-entry .em button,
.aksk-entry .em .button,
.aksk-entry .em input[type="submit"] {
  border-color: var(--aksk-teal) !important;
  border-radius: 4px !important;
  color: #fff !important;
  background: var(--aksk-teal) !important;
  font-family: "Cabin", system-ui, sans-serif !important;
  font-weight: 700 !important;
}
.aksk-entry .em-events-list .em-event {
  margin-bottom: 18px !important;
  padding: 22px !important;
  border: 1px solid var(--aksk-line) !important;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(15, 23, 42, .05);
}
.aksk-entry .em-events-list .em-item-title a {
  color: var(--aksk-navy) !important;
  font-family: "Cabin", system-ui, sans-serif;
  font-weight: 700;
}
.aksk-entry .em-events-list .em-item-read-more {
  color: #fff !important;
  background: var(--aksk-teal) !important;
}

/* Legacy event pages, normalized to the theme layout */
.page-template-eventetEKaluara .aksk-template-shell > .container,
.page-template-eventetNeVijim .aksk-template-shell > .container,
.page-template-evente-nderkombetare .aksk-template-shell > .container,
.page-template-kalendari .aksk-template-shell > .container {
  display: none;
}
.page-template-eventetEKaluara .aksk-template-shell > .elementor-tab-content,
.page-template-eventetNeVijim .aksk-template-shell > .elementor-container,
.page-template-kalendari .aksk-template-shell > .elementor-tab-content {
  width: calc(100% - 48px);
  max-width: var(--aksk-max);
  margin: 0 auto;
  padding: 54px 0 76px;
}
.page-template-eventetNeVijim .elementor-container,
.page-template-eventetNeVijim .elementor-widget-wrap,
.page-template-eventetNeVijim .elementor-tabs-content-wrapper {
  display: block !important;
  width: 100% !important;
}
.page-template-eventetEKaluara .aksk-legacy-content,
.page-template-eventetNeVijim .aksk-legacy-content,
.page-template-kalendari .aksk-legacy-content {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
}
.page-template-eventetEKaluara .aksk-template-shell .wrap_site,
.page-template-eventetNeVijim .aksk-template-shell .wrap_site,
.page-template-kalendari .aksk-template-shell .wrap_site {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}
.page-template-eventetEKaluara .elementor-tab-content,
.page-template-eventetNeVijim .elementor-tab-content,
.page-template-kalendari .elementor-tab-content {
  padding: 0 !important;
}
.page-template-eventetEKaluara article.d-flex,
.page-template-eventetNeVijim article.d-flex {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 0 20px !important;
  padding: 26px !important;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(39, 112, 111, .2);
  border-top: 3px solid var(--aksk-teal);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(29, 53, 87, .07) !important;
}
.page-template-eventetEKaluara .aksk-template-shell article.d-flex .evgovt-content,
.page-template-eventetNeVijim .aksk-template-shell article.d-flex .evgovt-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.page-template-eventetEKaluara article.d-flex .post-meta,
.page-template-eventetNeVijim article.d-flex .post-meta {
  display: none;
}
.page-template-eventetEKaluara article.d-flex h2.post-title,
.page-template-eventetNeVijim article.d-flex h2.post-title {
  margin: 0 0 10px;
  color: var(--aksk-navy);
  font-size: 1.35rem;
  line-height: 1.3;
}
.page-template-eventetEKaluara article.d-flex h2.post-title a,
.page-template-eventetNeVijim article.d-flex h2.post-title a {
  color: inherit;
  text-decoration: none;
}
.page-template-eventetEKaluara article.d-flex .post-excerpt,
.page-template-eventetNeVijim article.d-flex .post-excerpt {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--aksk-muted);
  background: none !important;
  box-shadow: none !important;
}
.page-template-eventetEKaluara article.d-flex .post-excerpt p,
.page-template-eventetNeVijim article.d-flex .post-excerpt p {
  margin: 0;
}
.page-template-eventetEKaluara .aksk-template-shell article.d-flex .post-body,
.page-template-eventetNeVijim .aksk-template-shell article.d-flex .post-body {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.page-template-eventetEKaluara article.d-flex .post-footer,
.page-template-eventetNeVijim article.d-flex .post-footer {
  margin-top: 16px;
}
.page-template-eventetEKaluara article.d-flex .btn-readmore,
.page-template-eventetNeVijim article.d-flex .btn-readmore {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(39, 112, 111, .3);
  border-radius: 4px;
  color: var(--aksk-teal);
  background: var(--aksk-soft);
  font-weight: 700;
  margin: 0;
  text-decoration: none;
}
.page-template-eventetEKaluara article.d-flex .btn-readmore:hover,
.page-template-eventetNeVijim article.d-flex .btn-readmore:hover {
  color: #fff;
  background: var(--aksk-teal);
}
.page-template-eventetEKaluara article.d-flex img,
.page-template-eventetNeVijim article.d-flex img {
  display: block;
  width: 260px !important;
  height: 170px !important;
  border-radius: 6px;
  object-fit: cover;
}

/* International events carousel */
.page-template-evente-nderkombetare .events {
  display: grid;
  width: calc(100% - 48px);
  max-width: var(--aksk-max);
  margin: 0 auto;
  padding: 54px 0 76px;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .8fr);
  align-items: center;
  gap: 48px;
}
.page-template-evente-nderkombetare .carousel-container {
  width: 100%;
  height: 560px;
}
.page-template-evente-nderkombetare .box {
  width: 100%;
  min-width: 0;
  height: auto;
  overflow: visible;
}
.page-template-evente-nderkombetare .post-title-hover {
  width: 100%;
  max-height: 470px;
  overflow-y: auto;
  padding: 32px;
  border-top: 4px solid var(--aksk-mint);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, var(--aksk-navy), var(--aksk-navy-dark));
  box-shadow: 0 16px 38px rgba(29, 53, 87, .16);
  text-align: left;
}
.page-template-evente-nderkombetare .post-title-hover h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.3;
}
.page-template-evente-nderkombetare .post-title-hover p {
  margin: 0 0 1em;
  color: #e2e8f0;
  line-height: 1.65;
}
.page-template-evente-nderkombetare .post {
  border-radius: 50% !important;
  background: transparent;
  box-shadow: none;
}
.page-template-evente-nderkombetare .central-item {
  z-index: 0;
}
.page-template-evente-nderkombetare .central-item h2 {
  color: var(--aksk-navy);
}
.page-template-evente-nderkombetare .post img {
  width: 100%;
  object-fit: cover;
}
.page-template-evente-nderkombetare .post.active-post img {
  border-color: var(--aksk-mint);
}

/* Events Manager calendar */
.page-template-kalendari #tab3 .default > div {
  width: 100% !important;
  margin: 0 !important;
}
.page-template-kalendari .em-view-container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
.page-template-kalendari .em-calendar {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(39, 112, 111, .22) !important;
  border-top: 4px solid var(--aksk-teal) !important;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(29, 53, 87, .08);
}
body.page-template-kalendari .aksk-template-shell .em-calendar .em-cal-nav form {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
body.page-template-kalendari .aksk-template-shell .em-calendar .em-cal-nav form .em-month-picker {
  width: auto !important;
  max-width: 180px !important;
  min-height: 0 !important;
  padding: 8px 28px 8px 10px !important;
  border: 0 !important;
  background: transparent !important;
}
.page-template-kalendari .em-cal-nav {
  margin: 0 !important;
  padding: 20px 24px !important;
  border-bottom: 1px solid var(--aksk-line);
  background: var(--aksk-soft);
}
.page-template-kalendari .em-cal-week-days {
  color: #fff !important;
  background: var(--aksk-navy) !important;
}
.page-template-kalendari .em-cal-week-days .em-cal-day {
  color: #fff !important;
  background: var(--aksk-navy) !important;
  font-weight: 700;
}
.page-template-kalendari .em-cal-body .em-cal-day {
  border-color: var(--aksk-line) !important;
  background: #fff;
}
.page-template-kalendari .em-cal-body .em-cal-day[class*="-today"] {
  background: #edf8f5 !important;
  box-shadow: inset 0 0 0 2px var(--aksk-mint);
}
.page-template-kalendari .em.em-calendar .em-cal-body .em-cal-day[class*="-today"] .em-cal-day-date > :is(span, a) {
  display: inline-grid !important;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: var(--aksk-navy) !important;
  color: #fff !important;
  font-weight: 700;
  line-height: 36px !important;
}
.page-template-kalendari .em-cal-day-date .ring {
  border-color: var(--aksk-teal) !important;
}
.page-template-kalendari .em-cal-event {
  border-color: var(--aksk-teal) !important;
  background: var(--aksk-teal) !important;
}
.page-template-kalendari .em-view-custom-data {
  display: none !important;
}

.aksk-loop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.aksk-loop-card {
  overflow: hidden;
  border: 1px solid rgba(39, 112, 111, .18);
  border-top: 3px solid var(--aksk-teal);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(29, 53, 87, .05);
}
.aksk-loop-card img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.aksk-loop-card__body { padding: 20px; }
.aksk-loop-card h2 { margin: 0 0 10px; font-size: 1.2rem; line-height: 1.3; }
.aksk-loop-card h2 a { color: var(--aksk-navy); text-decoration: none; }
.category-lajme .aksk-loop-card__body > p,
.category-news .aksk-loop-card__body > p {
  text-align: justify;
  text-justify: inter-word;
}

/* News imported from the legacy editor often stores the closing gallery as
   several inline images inside one paragraph. Present both that markup and
   Gutenberg galleries as one full-width, evenly spaced image grid. */
.single-post .aksk-entry-content :where(p, div[dir="auto"]) {
  text-align: justify;
  text-justify: inter-word;
}
.single-post .aksk-entry-content > p:has(> img),
.single-post .aksk-entry-content :where(.gallery, .wp-block-gallery) {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.single-post .aksk-entry-content > p:has(> img) > :where(img, a),
.single-post .aksk-entry-content :where(.gallery, .wp-block-gallery) img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.single-post .aksk-entry-content > p:has(> img) > a img { width: 100% !important; height: 100% !important; object-fit: cover; }
.aksk-loop-card__footer {
  display: flex;
  margin-top: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.aksk-card-share { position: relative; }
.aksk-card-share summary {
  display: grid;
  width: 38px;
  height: 38px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border: 1px solid var(--aksk-line);
  border-radius: 50%;
  color: var(--aksk-navy);
  background: #fff;
}
.aksk-card-share summary::-webkit-details-marker { display: none; }
.aksk-card-share summary:hover { color: #fff; border-color: var(--aksk-navy); background: var(--aksk-navy); }
.aksk-card-share summary:focus-visible { outline: 3px solid rgba(39, 112, 111, .3); outline-offset: 2px; }
.aksk-card-share summary svg { width: 18px; height: 18px; }
.aksk-card-share__menu {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: calc(100% + 8px);
  display: flex;
  padding: 8px;
  gap: 4px;
  border: 1px solid var(--aksk-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(29, 53, 87, .16);
}
.aksk-card-share__action {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--aksk-navy);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.aksk-card-share__action:hover,
.aksk-card-share__action:focus-visible { color: #fff; background: var(--aksk-navy); }
.aksk-card-share__menu svg { width: 17px; height: 17px; }
.aksk-loop-card__kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--aksk-teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.post-type-archive-security_alert .aksk-loop-card,
.aksk-loop-card.security_alert { border-top-color: var(--aksk-red); }
.post-type-archive-security_alert .aksk-loop-card__kicker,
.aksk-loop-card.security_alert .aksk-loop-card__kicker { color: var(--aksk-red); }
.aksk-pagination { margin-top: 36px; }
.aksk-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 7px; }
.aksk-pagination .page-numbers {
  display: grid;
  min-width: 38px;
  height: 38px;
  padding: 0 9px;
  place-items: center;
  border: 1px solid var(--aksk-line);
  border-radius: 4px;
  text-decoration: none;
}
.aksk-pagination .current { color: #fff; border-color: var(--aksk-navy); background: var(--aksk-navy); }

/* Accessibility */
.aksk-a11y-button {
  position: fixed;
  z-index: 650;
  bottom: 24px;
  left: 24px;
  display: flex;
  width: 56px;
  height: 56px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--aksk-navy);
  box-shadow: 0 4px 18px rgba(29, 53, 87, .4), 0 0 0 1px rgba(29, 53, 87, .25);
  transition: transform .15s ease;
}
.aksk-a11y-button:hover { transform: scale(1.06); }
.aksk-a11y-button svg { width: 26px; height: 26px; stroke-width: 2; }
.aksk-a11y-overlay {
  position: fixed;
  z-index: 990;
  inset: 0;
  display: none;
  background: rgba(15,23,42,.35);
}
.a11y-open .aksk-a11y-overlay { display: block; }
.aksk-a11y-panel {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: -340px;
  width: min(320px, 88vw);
  height: 100%;
  overflow-y: auto;
  background: #fff;
  box-shadow: 8px 0 25px rgba(0,0,0,.18);
  transition: left .24s ease;
}
.a11y-open .aksk-a11y-panel { left: 0; }
.aksk-a11y-panel__head {
  display: flex;
  min-height: 58px;
  padding: 12px 17px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--aksk-navy);
}
.aksk-a11y-panel__head h2 { margin: 0; color: #fff; font-size: .95rem; }
.aksk-a11y-panel__head button { border: 0; color: #fff; background: transparent; font-size: 1.5rem; }
.aksk-a11y-panel__body { padding: 18px; }
.aksk-a11y-panel__body h3 {
  margin: 18px 0 10px;
  color: var(--aksk-navy);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.aksk-a11y-panel__body h3:first-child { margin-top: 0; }
.aksk-a11y-panel__body > p { margin: 0 0 8px; color: var(--aksk-muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.aksk-a11y-control {
  display: flex;
  margin-bottom: 10px;
  gap: 8px;
}
.aksk-a11y-control button {
  min-height: 42px;
  flex: 1;
  border: 1px solid var(--aksk-line);
  border-radius: 5px;
  color: var(--aksk-navy);
  background: var(--aksk-soft);
  font-weight: 700;
}
.aksk-a11y-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.aksk-a11y-grid button {
  min-height: 58px;
  padding: 8px;
  border: 1px solid var(--aksk-line);
  border-radius: 5px;
  color: var(--aksk-navy);
  background: var(--aksk-soft);
  font-size: .76rem;
  font-weight: 700;
}
.aksk-a11y-grid button.is-active,
.aksk-a11y-control button.is-active { color: #fff; border-color: var(--aksk-navy); background: var(--aksk-navy); }
.aksk-a11y-reset {
  width: 100%;
  min-height: 43px;
  margin-top: 18px;
  border: 1px solid var(--aksk-red);
  border-radius: 5px;
  color: #fff;
  background: var(--aksk-red);
  font-weight: 700;
}
.aksk-reading-guide {
  position: fixed;
  z-index: 980;
  right: 0;
  left: 0;
  display: none;
  height: 3px;
  pointer-events: none;
  background: var(--aksk-red);
  box-shadow: 0 8px 0 rgba(225,29,72,.18), 0 -8px 0 rgba(225,29,72,.18);
}
html.aksk-font-large { font-size: 112%; }
html.aksk-font-larger { font-size: 125%; }
body.aksk-contrast { filter: contrast(1.45); }
body.aksk-links a {
  border-radius: 2px;
  outline: 2px solid #f59e0b !important;
  outline-offset: 2px;
  text-decoration: none !important;
}
body.aksk-headings h1,
body.aksk-headings h2,
body.aksk-headings h3,
body.aksk-headings h4 { outline: 2px solid #f59e0b; outline-offset: 2px; }
body.aksk-dyslexia { font-family: Arial, Verdana, sans-serif; }
body.aksk-spacing { letter-spacing: .08em; }
body.aksk-lineheight { line-height: 2 !important; }
body.aksk-fontweight { font-weight: 700; }
body.aksk-dark { filter: invert(.9) hue-rotate(180deg); }
body.aksk-mono { filter: grayscale(1); }
body.aksk-saturation { filter: saturate(1.8); }
body.aksk-animations *,
body.aksk-animations *::before,
body.aksk-animations *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
body.aksk-cursor,
body.aksk-cursor * { cursor: crosshair !important; }
body.aksk-guide .aksk-reading-guide { display: block; }
.aksk-form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (min-width: 1201px) and (max-width: 1390px) {
  .aksk-primary-nav { padding-left: 16px; }
  .aksk-primary-nav a { padding-inline: 10px; font-size: 14px; }
  .aksk-primary-nav > div > ul > li.menu-item-has-children > a::after { margin-left: 5px; }
}

@media (max-width: 1200px) {
  .aksk-primary-nav { display: none; }
  .aksk-header-actions { margin-left: auto; }
  .aksk-menu-button { display: grid; }
  .aksk-mobile-overlay {
    position: fixed;
    z-index: 780;
    inset: 0;
    background: rgba(15, 23, 42, .5);
  }
  .nav-open .aksk-mobile-overlay { display: block; }
  .aksk-mobile-panel {
    position: fixed;
    z-index: 800;
    top: 0;
    right: -340px;
    display: block;
    width: min(320px, 88vw);
    height: 100%;
    overflow-y: auto;
    background: #fff;
    box-shadow: -8px 0 25px rgba(0,0,0,.18);
    transition: right .24s ease;
  }
  .nav-open .aksk-mobile-panel { right: 0; }
  .aksk-mobile-panel__head {
    display: flex;
    min-height: 62px;
    padding: 14px 18px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: var(--aksk-navy);
    font-weight: 700;
  }
  .aksk-mobile-panel__close { border: 0; color: #fff; background: none; font-size: 1.6rem; }
  .aksk-mobile-nav ul { margin: 0; padding: 0; list-style: none; }
  .aksk-mobile-nav a {
    display: block;
    padding: 12px 18px;
    border-bottom: 1px solid var(--aksk-line);
    color: #334155;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
  }
  .aksk-mobile-nav .aksk-mega {
    position: static !important;
    display: none;
    width: auto;
    min-width: 0;
    padding: 6px 0 10px 15px;
    border: 0;
    background: var(--aksk-soft);
    box-shadow: none;
  }
  .aksk-mobile-nav .submenu-open > .aksk-mega { display: block; }
  .aksk-mobile-nav .aksk-mega__column { padding: 0; border: 0; }
  .aksk-mobile-nav .aksk-mega__title {
    display: block;
    padding: 12px 18px 6px;
    color: var(--aksk-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .aksk-mobile-nav .aksk-mega__divider {
    display: block;
    height: 1px;
    margin: 6px 18px;
    background: var(--aksk-line);
  }
  .aksk-mobile-nav .aksk-mega__link { padding: 9px 18px; font-weight: 500; }
  .aksk-mobile-nav .aksk-mega__link--sub { padding-left: 30px; color: var(--aksk-muted); }
  .aksk-mobile-nav .menu-item-has-children > a::after { float: right; content: "+"; }
  .aksk-mobile-nav .submenu-open > a::after { content: "−"; }
  .aksk-hero__slide {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .aksk-loop { grid-template-columns: repeat(2, 1fr); }
  .page-template-evente-nderkombetare .events {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-template-evente-nderkombetare .carousel-container {
    height: 480px;
  }
  .page-template-evente-nderkombetare .box {
    justify-content: center;
  }
  .page-template-evente-nderkombetare .post-title-hover {
    max-width: 720px;
  }
}

@media (max-width: 782px) {
  .admin-bar .aksk-sticky-top { top: 46px; }
}

@media (max-width: 768px) {
  .aksk-a11y-button { bottom: 16px; left: 16px; }
  .aksk-alert__inner { padding: 10px 16px; }
  .aksk-alert__title { white-space: normal; }
  .aksk-alert__link { margin-left: auto; }
  .aksk-header-main { min-height: 72px; padding: 12px 16px; gap: 10px; }
  .aksk-brand__logo { width: auto; height: 76px; }
  .aksk-report-button { min-height: 40px; padding: 10px 12px; font-size: 13px; }
  .aksk-icon-button,
  .aksk-menu-button { width: 40px; height: 40px; }

  .aksk-hero,
  .aksk-hero__slider { height: clamp(600px, 86vw, 660px); min-height: 0; }
  .aksk-hero__slide {
    padding: 26px 18px 58px;
    align-items: stretch;
    align-content: start;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    z-index: 0;
    opacity: 1;
    transform: translate3d(0, 100%, 0);
    transition: transform 1s cubic-bezier(.645, .045, .355, 1), visibility 0s linear 1s;
    will-change: transform;
  }
  .aksk-hero__slide.is-active { z-index: 2; transform: translate3d(0, 0, 0); transition: transform 1s cubic-bezier(.645, .045, .355, 1); }
  .aksk-hero__slide.is-entering-from-bottom,
  .aksk-hero__slide.is-entering-from-top,
  .aksk-hero__slide.is-leaving-to-top,
  .aksk-hero__slide.is-leaving-to-bottom { visibility: visible; pointer-events: none; }
  .aksk-hero__slide.is-entering-from-bottom { z-index: 2; transform: translate3d(0, 100%, 0); transition: none; }
  .aksk-hero__slide.is-entering-from-top { z-index: 2; transform: translate3d(0, -100%, 0); transition: none; }
  .aksk-hero__slide.is-leaving-to-top,
  .aksk-hero__slide.is-leaving-to-bottom { z-index: 1; transform: translate3d(0, 0, 0); }
  .aksk-hero__slide.is-resetting { visibility: hidden; transform: translate3d(0, 100%, 0); transition: none; }
  .aksk-hero__slide::after {
    background: linear-gradient(180deg, rgba(5, 42, 55, .42) 0%, rgba(5, 57, 68, .8) 58%, rgba(7, 43, 57, .92) 100%);
  }
  .aksk-hero__backdrop { filter: blur(16px) saturate(.95); opacity: .82; }
  .aksk-hero__copy {
    order: 2;
    max-width: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .aksk-hero__title { margin-bottom: 14px; font-size: clamp(23px, 6.5vw, 30px); line-height: 1.18; }
  .aksk-hero__media {
    order: 1;
    width: 100%;
    height: auto;
    max-height: 310px;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .aksk-hero__slide.is-active .aksk-hero__media { opacity: 1; transform: none; }
  .aksk-hero__slide.is-leaving-to-top :is(.aksk-hero__copy, .aksk-hero__media) {
    transform: translate3d(0, -100vh, 0);
    transition: transform 1s cubic-bezier(.645, .045, .355, 1);
  }
  .aksk-hero__slide.is-leaving-to-bottom :is(.aksk-hero__copy, .aksk-hero__media) {
    transform: translate3d(0, 100vh, 0);
    transition: transform 1s cubic-bezier(.645, .045, .355, 1);
  }
  .aksk-hero__image { object-position: center; }
  .aksk-hero__arrows { display: none; }
  .aksk-hero__dots { bottom: 20px; }

  .aksk-services,
  .aksk-notices,
  .aksk-partners,
  .aksk-site-footer { padding-left: 16px; padding-right: 16px; }
  .aksk-services__grid { grid-template-columns: 1fr; }
  .aksk-service-card { min-height: auto; }
  .aksk-home-body { padding: 32px 16px; }
  .aksk-children { height: auto; grid-template-columns: 1fr; }
  .aksk-children__copy { padding: 32px 24px; }
  .aksk-children__actions { margin-left: 64px; }
  .aksk-children__video { min-height: 284px; padding: 24px 24px 40px; }
  .aksk-children__video iframe { height: 220px; }
  .aksk-children__video p { right: 24px; left: 24px; }
  .aksk-news-feature__media { height: 200px; }
  .aksk-news-feature { min-height: 0; }
  .aksk-news-feature h3 { font-size: 21px; }
  .aksk-news-list { height: auto; grid-template-columns: 1fr; border-top: 0; }
  .aksk-news-card,
  .aksk-news-card:not(:first-child),
  .aksk-news-card:last-child {
    padding: 20px 0;
    overflow: visible;
    border-top: 1px solid var(--aksk-line);
    border-right: 0;
  }
  .aksk-news-card__media { height: auto; aspect-ratio: 16 / 9; }
  .aksk-news-card h3 {
    display: block;
    height: auto;
    overflow: visible;
    -webkit-line-clamp: unset;
  }
  .aksk-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .aksk-stat { padding: 14px 12px; }
  .aksk-stat::after { display: none; }
  .aksk-stat__number { font-size: 28px; }
  .aksk-notices__heading { flex-wrap: wrap; gap: 8px; }
  .aksk-notices__grid { grid-template-columns: 1fr; }
  .aksk-partners__grid { gap: 14px; }
  .aksk-partner { width: 104px; min-height: 94px; flex-basis: 104px; padding: 10px; }
  .aksk-partner img { width: 100%; max-height: 64px; transform: scale(1.3); }
  .aksk-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 680px) {
  .aksk-container,
  .aksk-content { width: min(calc(100% - 32px), var(--aksk-max)); }
  .aksk-content { width: calc(100% - 32px) !important; }
  .aksk-services > .aksk-container,
  .aksk-notices > .aksk-container,
  .aksk-partners > .aksk-container,
  .aksk-site-footer > .aksk-container {
    width: 100%;
    margin-inline: 0;
  }
  .aksk-home-body > .aksk-container {
    width: min(calc(100% - 32px), var(--aksk-max));
  }
  .aksk-section { padding: 52px 0; }
  .aksk-header-actions { margin-left: auto; }
  .aksk-inner-hero { padding: 38px 0 42px; }
  .aksk-entry { padding: 25px 20px; }
  .aksk-post-navigation { grid-template-columns: 1fr; }
  .aksk-post-navigation__next { text-align: left; }
  .aksk-entry .em-item-single .em-item-header { padding: 20px; }
  .aksk-entry .em-item-single .em-item-meta { grid-template-columns: 1fr; }
  .aksk-loop { grid-template-columns: 1fr; }
  .aksk-search__panel { padding: 38px 20px 24px; }
  .aksk-search-form { flex-direction: column; }
  .page-template-eventetEKaluara .aksk-template-shell > .elementor-tab-content,
  .page-template-eventetNeVijim .aksk-template-shell > .elementor-container,
  .page-template-kalendari .aksk-template-shell > .elementor-tab-content,
  .page-template-evente-nderkombetare .events {
    width: calc(100% - 32px);
    padding: 36px 0 56px;
  }
  .page-template-eventetEKaluara article.d-flex,
  .page-template-eventetNeVijim article.d-flex {
    grid-template-columns: 1fr;
    padding: 20px !important;
    gap: 18px;
  }
  .page-template-eventetEKaluara article.d-flex h2.post-title,
  .page-template-eventetNeVijim article.d-flex h2.post-title {
    font-size: 1.15rem;
  }
  .page-template-eventetEKaluara article.d-flex img,
  .page-template-eventetNeVijim article.d-flex img {
    width: 100% !important;
    height: 190px !important;
  }
  .page-template-evente-nderkombetare .carousel-container {
    height: 340px;
  }
  .page-template-evente-nderkombetare .post {
    width: 112px;
    height: 112px;
  }
  .page-template-evente-nderkombetare .post-title-hover {
    width: 100%;
    max-height: none;
    padding: 24px;
  }
  .page-template-kalendari .em-cal-nav {
    padding: 14px !important;
  }
}

@media (max-width: 480px) {
  .aksk-header-main { padding: 10px 12px; gap: 8px; }
  .aksk-brand__logo { width: auto; height: 60px; }
  .aksk-sticky-top.is-stuck .aksk-header-main { min-height: 54px; padding-block: 7px; }
  .aksk-sticky-top.is-stuck .aksk-brand__logo { height: 54px; max-height: 54px; }
  .aksk-header-actions { gap: 8px; }
  .aksk-icon-button,
  .aksk-menu-button { width: 36px; height: 36px; }
  .aksk-report-button { min-height: 36px; padding: 6px 8px; gap: 4px; font-size: 12px; }
  .aksk-report-button svg { width: 15px; height: 15px; }
  .aksk-hero,
  .aksk-hero__slider { height: 510px; }
  .aksk-hero__slide { padding: 18px 18px 44px; align-content: center; gap: 18px; }
  .aksk-hero__title { font-size: 22px; }
  .aksk-hero__link { min-width: 136px; min-height: 44px; padding: 11px 20px; }
  .aksk-children__intro { grid-template-columns: 1fr; }
  .aksk-children__actions { margin-left: 0; }
}

@media (max-width: 360px) {
  .aksk-header-main { padding-inline: 8px; gap: 6px; }
  .aksk-header-actions { gap: 6px; }
  .aksk-brand__logo { height: 55px; }
  .aksk-sticky-top.is-stuck .aksk-brand__logo { height: 53px; max-height: 53px; }
}

@media (max-width: 560px) {
  .aksk-header-language { display: none; }
  .aksk-mobile-panel__languages { display: block; padding: 14px 22px 4px; }
  .aksk-mobile-panel__languages .aksk-language-switcher { width: max-content; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Shared content forms and security alert details. */
.aksk-entry-content :where(input:not([type="checkbox"], [type="radio"], [type="submit"], [type="button"]), select, textarea) {
  width: 100%;
  max-width: 100%;
  padding: 11px 13px;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  background: #fff;
  color: var(--aksk-ink);
  font: inherit;
}
.aksk-entry-content :where(input, select, textarea):focus {
  border-color: var(--aksk-teal);
  outline: 3px solid rgba(102, 194, 164, .28);
}
.aksk-entry-content textarea { min-height: 140px; resize: vertical; }
.aksk-entry-content label { font-weight: 600; }
.aksk-entry-content :where(button, input[type="submit"], input[type="button"]) {
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 4px;
  background: var(--aksk-teal);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.single-security_alert .aksk-entry { border-top-color: var(--aksk-red); }
.single-security_alert .aksk-entry-content :where(button, input[type="submit"], input[type="button"]) {
  background: var(--aksk-red);
}
.aksk-button--red {
  border-color: var(--aksk-red);
  background: var(--aksk-red);
  color: #fff;
}
.aksk-button--red:hover { background: #a70e20; color: #fff; }
.aksk-alert-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin: 0 0 30px;
  border: 1px solid var(--aksk-line);
  border-left: 4px solid var(--aksk-red);
  border-radius: 6px;
  background: #fff;
}
.aksk-alert-details--medium { border-left-color: #f59e0b; }
.aksk-alert-details--low { border-left-color: #eab308; }
.aksk-alert-details div { padding: 16px 18px; }
.aksk-alert-details div + div { border-left: 1px solid var(--aksk-line); }
.aksk-alert-details dt {
  margin-bottom: 5px;
  color: var(--aksk-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.aksk-alert-details dd { margin: 0; color: var(--aksk-navy); font-weight: 700; }
.aksk-notice h3 a { color: inherit; text-decoration: none; }
.aksk-notice__cve { text-decoration: none; }
.aksk-notice :where(h3 a, .aksk-notice__cve):hover { color: var(--aksk-red); }

@media (max-width: 720px) {
  .aksk-entry-content p { text-align: left !important; }
  .aksk-entry-content p.has-text-align-center { text-align: center !important; }
  .aksk-entry-content p.has-text-align-right { text-align: right !important; }
  .single-post .aksk-entry-content :where(p, div[dir="auto"]) {
    text-align: justify !important;
  }
  .aksk-alert-details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aksk-alert-details div + div { border-left: 0; }
  .aksk-alert-details div:nth-child(even) { border-left: 1px solid var(--aksk-line); }
  .aksk-alert-details div:nth-child(n + 3) { border-top: 1px solid var(--aksk-line); }
  .single-post .aksk-entry-content > p:has(> img),
  .single-post .aksk-entry-content :where(.gallery, .wp-block-gallery) {
    grid-template-columns: 1fr;
  }
}
