/* ==========================================================================
   Manipur Cooperative — Savings & Credit Society Ltd — style.css
   Design system foundation. Desktop-first. No media queries here;
   all breakpoint overrides live in responsive.css.
   Bootstrap is used for layout (container/row/col), the button system
   (.btn btn-primary / .btn btn-outline-primary / .btn btn-secondary)
   and the offcanvas menu. Everything else is hand-rolled brand CSS.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --primary: #098846;
  --primary-hover: #0aa356;
  --primary-dark: #06743a;
  --primary-text: #06743a;
  /* darker green for body text on white (AA) */
  --primary-tint: #e7f5ee;
  /* pale green wash for accents */
  --secondary: #1F2F6D;
  --secondary-hover: #2a3f8f;
  --secondary-dark: #17234f;
  --secondary-tint: #eef1fa;

  /* Neutrals */
  --ink: #1A1D23;
  /* body text */
  --ink-soft: #3a4149;
  --muted: #5B6470;
  /* secondary text */
  --surface: #F4F6F8;
  /* light section bg */
  --surface-2: #eef1f4;
  --border: #E2E6EA;
  --border-strong: #cdd4db;
  --white: #ffffff;

  /* Status */
  --success: #198754;
  --alert: #b45309;
  --danger: #b91c1c;

  /* Type scale (desktop) */
  --fs-h1: 2.5rem;
  --fs-h2: 2rem;
  --fs-h3: 1.5rem;
  --fs-h4: 1.25rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-tiny: 0.8125rem;

  /* Rhythm / shape */
  --radius: 6px;
  --radius-sm: 4px;
  --shadow-sm: 0 1px 2px rgba(26, 29, 35, 0.06);
  --shadow-md: 0 6px 24px rgba(26, 29, 35, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 29, 35, 0.14);

  --container-max: 1200px;
  --header-h: 104px;

  /* Bootstrap brand rebrand */
  --bs-primary: #098846;
  --bs-primary-rgb: 9, 136, 70;
  --bs-secondary: #1F2F6D;
  --bs-secondary-rgb: 31, 47, 109;
  --bs-body-color: #1A1D23;
  --bs-body-color-rgb: 26, 29, 35;
  --bs-body-bg: #ffffff;
  --bs-link-color: #06743a;
  --bs-link-color-rgb: 6, 116, 58;
  --bs-link-hover-color: #06743a;
  --bs-link-hover-color-rgb: 6, 116, 58;
  --bs-border-radius: 6px;
  --bs-border-radius-sm: 4px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "IBM Plex Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--primary-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65em;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
  margin-bottom: 0.75em;
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

figure {
  margin: 0;
}

ul,
ol {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.35em;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.page {
  margin-bottom: 0;
}

/* Numerals (rates, prices, tables) use tabular figures so columns align */
.nums,
.rate-table,
.stat,
.coop-card__value,
.calc-result,
.calc-slider output,
.kv-list dd {
  font-variant-numeric: tabular-nums;
}

::selection {
  background: var(--primary-tint);
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -4rem;
  z-index: 2000;
  padding: 0.6rem 1rem;
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0.5rem;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: var(--surface);
}

.section--ink {
  background: var(--secondary);
  color: var(--surface);
}

.section--ink h2,
.section--ink h3 {
  color: #fff;
}

.section--tight {
  padding: 3rem 0;
}

.section--reset {
  padding: 0;
}

.container-page {
  max-width: var(--container-max);
}

.container-narrow {
  max-width: 860px;
}

/* Button rows & small spacing helpers (custom — Bootstrap utilities not used) */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.cta-row--mt {
  margin-top: 1.5rem;
}

.u-mt-sm {
  margin-top: 0.75rem;
}

.u-mt-lg {
  margin-top: 1.5rem;
}

.u-mb-lg {
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */
.u-text-muted {
  color: var(--muted);
}

.u-text-center {
  text-align: center;
}

.u-text-end {
  text-align: right;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary);
}

.section--ink .eyebrow,
.band-cta .eyebrow {
  color: #9fe0bf;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.section--ink .lead,
.band-cta .lead {
  color: #cdd5ea;
}

/* --------------------------------------------------------------------------
   5. Buttons — Bootstrap .btn system, rebranded via --bs-btn-* vars
   -------------------------------------------------------------------------- */
.btn {
  --bs-btn-font-weight: 600;
  --bs-btn-font-size: 0.9375rem;
  --bs-btn-line-height: 1.2;
  --bs-btn-padding-y: 0.72rem;
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn-lg {
  --bs-btn-font-size: 1rem;
  --bs-btn-padding-y: 0.95rem;
  --bs-btn-padding-x: 1.9rem;
}

.btn-sm {
  --bs-btn-font-size: 0.875rem;
  --bs-btn-padding-y: 0.55rem;
  --bs-btn-padding-x: 1.1rem;
}

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-hover);
  --bs-btn-hover-border-color: var(--primary-hover);
  --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  --bs-btn-disabled-bg: var(--primary);
  --bs-btn-disabled-border-color: var(--primary);
  box-shadow: 0 1px 2px rgba(9, 136, 70, 0.25);
}

.btn-secondary {
  --bs-btn-bg: var(--secondary);
  --bs-btn-border-color: var(--secondary);
  --bs-btn-hover-bg: var(--secondary-hover);
  --bs-btn-hover-border-color: var(--secondary-hover);
  --bs-btn-focus-shadow-rgb: var(--bs-secondary-rgb);
  --bs-btn-active-bg: var(--secondary-dark);
  --bs-btn-active-border-color: var(--secondary-dark);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  --bs-btn-active-color: #fff;
}

/* Ghost button for dark sections (band-cta, hero, footer on dark bg) */
.btn-ghost {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.6);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.1);
  --bs-btn-hover-border-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: rgba(255, 255, 255, 0.16);
  --bs-btn-active-color: #fff;
  --bs-btn-border-radius: var(--radius);
  --bs-btn-padding-y: 0.72rem;
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-font-weight: 600;
}

/* --------------------------------------------------------------------------
   6. Tags (Bootstrap owns .badge, so the brand uses .tag)
   -------------------------------------------------------------------------- */
.tag {
  display: inline-block;
  padding: 0.22rem 0.62rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  border-radius: 999px;
  text-transform: uppercase;
}

.tag--primary {
  background: var(--primary-tint);
  color: var(--primary-dark);
}

.tag--secondary {
  background: var(--secondary-tint);
  color: var(--secondary);
}

.tag--amber {
  background: #fdeed7;
  color: var(--alert);
}

.tag--gray {
  background: var(--surface-2);
  color: var(--muted);
}

.tag--red {
  background: #fde4e4;
  color: var(--danger);
}

/* Category labels rendered as coloured text instead of filled badges */
.notice-cat {
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.notice-cat--red {
  color: var(--danger);
}

.notice-cat--primary {
  color: var(--primary-dark);
}

.notice-cat--amber {
  color: var(--alert);
}

.notice-cat--secondary {
  color: var(--secondary);
}

.notice-cat--gray {
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   7. Header: masthead (sticky) + utility bar
   -------------------------------------------------------------------------- */
.masthead__utility {
  background: var(--secondary);
  color: #cdd5ea;
  font-size: var(--fs-tiny);
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease, visibility 0.25s;
}

.masthead__utility-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.4rem;
}

.masthead__utility a {
  color: #e8ecf7;
  text-decoration: none;
}

.masthead__utility a:hover {
  color: #fff;
}

.masthead__utility-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.masthead__utility-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.masthead__utility-item i {
  font-size: 0.7rem;
  opacity: 0.85;
}

.masthead__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.masthead__lang-sep {
  opacity: 0.4;
}

/* --------------------------------------------------------------------------
   8. Header: main row, logo, nav, CTA cluster
   -------------------------------------------------------------------------- */
.masthead__main {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(27, 50, 93, 0.10), 0 1px 2px rgba(27, 50, 93, 0.06);
  padding: 12px 0;
  transition: box-shadow 0.2s ease;
}

.masthead__row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  line-height: 1.2;
}

.brand__title {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand__sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Brand inverted on dark backgrounds (footer) */
.brand--invert .brand__title {
  color: #fff;
}

.brand--invert .brand__sub {
  color: #a9b4d9;
}

/* Primary nav (desktop) */
.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  display: block;
  padding: 0.55rem 0.7rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--primary);
  background: var(--primary-tint);
}

.primary-nav li.is-active > a {
  color: var(--primary);
  font-weight: 600;
}

/* Dropdown (desktop, CSS hover-based, keyboard accessible via focus-within) */
.primary-nav li.has-children {
  position: relative;
}

.primary-nav li.has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 0.35rem;
  vertical-align: middle;
  border: 4px solid transparent;
  border-top-color: currentColor;
  border-bottom-width: 0;
}

.primary-nav .submenu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1040;
}

.primary-nav .submenu li {
  display: block;
}

.primary-nav li.has-children:hover > .submenu,
.primary-nav li.has-children:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav .submenu a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  white-space: nowrap;
  border-radius: var(--radius-sm);
}

/* CTA cluster in header */
.masthead__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.masthead__cta .btn {
  font-size: 0.875rem;
  padding: 0.6rem 1.1rem;
}

/* Hamburger (visible below 992px only) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s ease;
}

.nav-toggle i {
  font-size: 1.05rem;
}

.nav-toggle:hover {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   9. Offcanvas (mobile menu) — custom styled over Bootstrap
   -------------------------------------------------------------------------- */
.offcanvas {
  border: none;
}

.offcanvas-end {
  width: 320px;
  max-width: 88vw;
}

.offcanvas-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.offcanvas__cta {
  display: grid;
  gap: 0.6rem;
  margin-top: auto;
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.offcanvas__cta .btn {
  width: 100%;
}

.nav-menu--mobile,
.nav-menu--mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu--mobile > li {
  position: relative;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}

.nav-menu--mobile > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 3.2rem 0.9rem 1.25rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-menu--mobile > li > a:hover {
  color: var(--primary);
  background: var(--primary-tint);
}

.nav-menu--mobile > li.is-active > a {
  color: var(--primary);
}

.submenu-toggle {
  position: absolute;
  top: 0.55rem;
  right: 0.75rem;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
}

.submenu-toggle i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.submenu-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.nav-menu--mobile li.is-open > .submenu-toggle i {
  transform: rotate(180deg);
}

.nav-menu--mobile .submenu {
  display: block;
  max-height: 0;
  overflow: hidden;
  background: var(--surface);
  transition: max-height 0.3s ease;
}

.nav-menu--mobile li.is-open > .submenu {
  max-height: 460px;
}

.nav-menu--mobile .submenu li {
  margin-bottom: 0;
  border-top: 1px solid var(--border);
}

.nav-menu--mobile .submenu a {
  display: block;
  padding: 0.6rem 1.25rem 0.6rem 2.4rem;
  color: var(--ink-soft);
  font-size: 0.875rem;
  text-decoration: none;
}

.nav-menu--mobile .submenu a:hover {
  color: var(--primary);
}

.offcanvas__contact {
  padding: 1.25rem;
  background: var(--surface);
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.offcanvas__contact a {
  text-decoration: none;
}

.offcanvas__contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.offcanvas__contact-item i {
  width: 16px;
  text-align: center;
  margin-top: 4px;
  opacity: 0.7;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. Hero banner (Swiper fade slider)
   -------------------------------------------------------------------------- */
.hero-swiper {
  position: relative;
  color: #fff;
  background: var(--secondary-dark);
  min-height: calc(100vh - var(--header-h) - 44px);
  display: flex;
  flex-direction: column;
}

.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: auto;
}

.hero-swiper__slide {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 44px);
  display: flex !important;
  align-items: center;
  background-color: var(--secondary-dark);
  overflow: hidden;
}

.hero-swiper__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
}

.swiper-slide-active .hero-swiper__bg {
  animation: hero-kenburns 8s ease-out forwards;
}

@keyframes hero-kenburns {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1);
  }
}

.hero-swiper__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
      rgba(18, 30, 66, 0.94) 0%,
      rgba(18, 30, 66, 0.74) 44%,
      rgba(18, 30, 66, 0.34) 100%);
}

.hero-swiper__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4.5rem 0;
}

.hero-swiper__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-swiper__slide h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 1rem;
  max-width: 640px;
}

.hero-swiper__slide p.lead {
  color: #d7ddf0;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-swiper__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-swiper__pagination {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-swiper__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.hero-swiper__pagination .swiper-pagination-bullet-active {
  width: 26px;
  background: #fff;
}

.hero-swiper__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.hero-swiper__nav i {
  font-size: 0.9rem;
}

.hero-swiper__nav:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-swiper__nav--prev {
  left: 1.25rem;
}

.hero-swiper__nav--next {
  right: 1.25rem;
}

/* --------------------------------------------------------------------------
   11. Page header (inner pages)
   -------------------------------------------------------------------------- */
.page-header {
  background: linear-gradient(120deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #fff;
  padding: 3.4rem 0;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px,
      transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}

.page-header__inner {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.page-header .lead {
  color: #cdd5ea;
  margin-bottom: 0;
  max-width: 720px;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  font-size: 0.8125rem;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.4rem;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb a {
  color: #b9c3e4;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb li[aria-current] {
  color: #fff;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   12. Section intro header rows
   -------------------------------------------------------------------------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  margin-bottom: 0.2rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  max-width: 560px;
}

.section-head__link {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.section-head__link i {
  font-size: 0.7rem;
}

/* --------------------------------------------------------------------------
   13. Cards — the core component (product/benefit/team cards)
   -------------------------------------------------------------------------- */
.coop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.coop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.coop-card--alt {
  background: var(--white);
  border-color: var(--border);
}

.coop-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--primary-tint);
  color: var(--primary-dark);
  margin-bottom: 1.1rem;
}

.coop-card__icon i {
  font-size: 1.3rem;
}

.coop-card--alt .coop-card__icon {
  background: var(--secondary-tint);
  color: var(--secondary);
}

.coop-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.coop-card__title a {
  color: var(--ink);
  text-decoration: none;
}

.coop-card__title a:hover {
  color: var(--primary);
}

.coop-card__desc {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 1.1rem;
  flex-grow: 1;
}

.coop-card__value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.coop-card__value small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-top: 0.15rem;
}

.coop-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  text-decoration: none;
}

.coop-card__link i {
  font-size: 0.7rem;
  transition: transform 0.15s;
}

.coop-card__link:hover i {
  transform: translateX(3px);
}

/* Team card variant */
.coop-card--team {
  text-align: center;
  padding: 1.6rem;
}

.coop-card--team .avatar {
  margin: 0 auto 1rem;
}

.coop-card--team .coop-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.coop-card--team .coop-card__role {
  color: var(--muted);
  font-size: 0.85rem;
}

.coop-card__badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.coop-card__cover {
  margin: -1.75rem -1.6rem 1.1rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.coop-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.coop-card:hover .coop-card__cover img {
  transform: scale(1.04);
}

/* Stats strip (home) */
.stat {
  text-align: center;
  padding: 2rem 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat:first-child {
  border-left: 0;
}

.stat__num {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat__label {
  color: #a9b4d9;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

/* Feature number panel */
.feature-num {
  text-align: center;
  padding: 2.2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  height: 100%;
}

.feature-num__num {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.feature-num__label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.4rem;
}

/* --------------------------------------------------------------------------
   14. Rate / data tables
   -------------------------------------------------------------------------- */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.rate-table th,
.rate-table td {
  text-align: left;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.rate-table thead th {
  background: var(--secondary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rate-table tbody tr:last-child td {
  border-bottom: 0;
}

.rate-table tbody tr:nth-child(even) {
  background: var(--surface);
}

.rate-table .rate {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
  white-space: nowrap;
}

.rate-table .note {
  color: var(--muted);
  font-size: 0.85rem;
}

.rate-table a {
  text-decoration: none;
}

/* Key-value list (share info, min balance) */
.kv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.kv-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.kv-list > div:last-child {
  border-bottom: 0;
}

.kv-list > div:nth-child(odd) {
  background: var(--surface);
}

.kv-list dt,
.kv-list dd {
  margin: 0;
}

.kv-list dd {
  font-weight: 700;
  text-align: right;
}

.kv-list dt {
  color: var(--muted);
}

.kv-list--auto {
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
}

.kv-list--auto > div {
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.kv-list--auto > div:nth-child(odd) {
  background: var(--surface);
}

.kv-list--auto > div:nth-child(even) {
  background: var(--surface);
}

.kv-list--auto > div:last-child {
  border-bottom: 1px solid var(--border);
}

.kv-list--auto dd {
  text-align: left;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   15. Checklist (documents / eligibility)
   -------------------------------------------------------------------------- */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.checklist__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checklist__check i {
  font-size: 0.6rem;
}

.checklist strong {
  display: block;
}

.checklist .checklist__hint {
  color: var(--muted);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   16. Process steps
   -------------------------------------------------------------------------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 0 0 1.8rem 3.6rem;
  counter-increment: step;
}

.steps li:last-child {
  padding-bottom: 0;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.steps li::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.steps li:last-child::after {
  display: none;
}

.steps h4 {
  margin-bottom: 0.25rem;
}

.steps p {
  color: var(--muted);
  font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   17. Records: notices & reports list rows
   -------------------------------------------------------------------------- */
.record-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.record-list__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.3rem 0.5rem;
  border-bottom: 1px solid var(--border);
}

.record-list__item--pinned {
  background: var(--primary-tint);
  margin: 0 -0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: var(--radius-sm);
}

.record-list__date {
  flex-shrink: 0;
  width: 58px;
  text-align: center;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.2rem;
  line-height: 1.05;
}

.record-list__date b {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  font-variant-numeric: tabular-nums;
}

.record-list__date span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.record-list__content {
  flex-grow: 1;
  min-width: 0;
}

.record-list__content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.record-list__content h3 a {
  color: var(--ink);
  text-decoration: none;
}

.record-list__content h3 a:hover {
  color: var(--primary);
}

.record-list__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.record-list__excerpt {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.record-list__action {
  flex-shrink: 0;
}

/* Report row: filename + download */
.report-row-list {
  margin-bottom: 1rem;
}

.report-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 0.6rem;
  border-bottom: 1px solid var(--border);
}

.report-row:hover {
  background: var(--surface);
}

.report-row__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.report-row__icon--pdf {
  background: #fde4e4;
  color: var(--danger);
}

.report-row__icon--doc {
  background: var(--secondary-tint);
  color: var(--secondary);
}

.report-row__icon--xls {
  background: var(--primary-tint);
  color: var(--primary-dark);
}

.report-row__body {
  flex-grow: 1;
  min-width: 0;
}

.report-row__body h3 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.report-row__meta {
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}

.report-row__desc {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   18. Pagination
   -------------------------------------------------------------------------- */
.pagination-ctl {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pagination-ctl a,
.pagination-ctl span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.55rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.pagination-ctl a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination-ctl .is-current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.pagination-ctl .is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   19. Filter buttons / tabs
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.is-active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

/* --------------------------------------------------------------------------
   20. FAQ accordion (native details/summary — no JS needed)
   -------------------------------------------------------------------------- */
.faq-group {
  margin-bottom: 2.5rem;
}

.faq-group__title {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

/* Bootstrap accordion (used on FAQ and savings product pages) */
.accordion {
  margin-top: 1.25rem;
}

.accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.accordion .accordion-item + .accordion-item {
  margin-top: 0;
}

.accordion .accordion-button {
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
  padding: 1.1rem 1.35rem;
  gap: 0.9rem;
}

.accordion .accordion-button::after {
  margin-left: auto;
  flex-shrink: 0;
}

.accordion .accordion-button:not(.collapsed) {
  color: var(--primary-dark);
}

.accordion .accordion-button:not(.collapsed)::after {
  color: var(--primary);
  filter: none;
}

.accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.accordion .accordion-body {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  padding: 0.35rem 1.35rem 1.35rem;
}

/* --------------------------------------------------------------------------
   21. Forms (custom fields; layout via Bootstrap row/col)
   -------------------------------------------------------------------------- */
.form-field {
  margin-bottom: 0;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.form-field label .req {
  color: var(--danger);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field input[type="search"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.68rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(9, 136, 70, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field input[type="search"],
.form-field select {
  height: 3.125rem;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  line-height: 1.6;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235b6b8c'%3E%3Cpath d='M4.5 6l3.5 3.5L11.5 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 0.8rem;
  cursor: pointer;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

/* --------------------------------------------------------------------------
   22. Info tiles / contact cards
   -------------------------------------------------------------------------- */
.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  height: 100%;
  transition: box-shadow 0.18s ease;
}

.info-card:hover {
  box-shadow: var(--shadow-md);
}

.info-card__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--secondary-tint);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-card__icon i {
  font-size: 1.2rem;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.info-card p,
.info-card a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

.info-card a:hover {
  color: var(--primary);
}

.info-card address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   23. EMI calculator
   -------------------------------------------------------------------------- */
.calc-shell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.calc-field {
  margin-bottom: 1.8rem;
}

.calc-field:last-of-type {
  margin-bottom: 0;
}

.calc-field__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.7rem;
  gap: 1rem;
}

.calc-field__label label {
  font-weight: 600;
  font-size: 0.9rem;
}

.calc-field__label output {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--secondary);
  font-variant-numeric: tabular-nums;
}

.calc-field__range {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right,
      var(--primary) 0%, var(--primary) var(--range-progress, 50%),
      var(--border) var(--range-progress, 50%), var(--border) 100%);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  box-shadow: 0 1px 3px rgba(26, 29, 35, 0.2);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}

input[type="range"]:focus-visible::-webkit-slider-thumb,
input[type="range"]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 5px rgba(9, 136, 70, 0.18);
}

input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: var(--border);
}

input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  box-shadow: 0 1px 3px rgba(26, 29, 35, 0.2);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.12);
}

input[type="range"]:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 5px rgba(9, 136, 70, 0.18);
}

.calc-presets {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}

.calc-presets__label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
  flex-shrink: 0;
}

.calc-presets .form-field {
  flex: 1;
  min-width: 220px;
  margin-bottom: 0;
}

.calc-result {
  background: var(--secondary);
  color: #fff;
  border-radius: 10px;
  padding: 2.2rem;
}

.calc-result h2 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.calc-result__label {
  color: #a9b4d9;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.calc-result__emi {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0.4rem 0 1.8rem;
}

.calc-result__breakdown {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1.4rem;
}

.calc-result__breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9375rem;
}

.calc-result__breakdown-row dt {
  margin: 0;
  color: #cdd5ea;
}

.calc-result__breakdown-row dd {
  margin: 0;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   24. Map placeholder (self-contained, no external tiles)
   -------------------------------------------------------------------------- */
.map-placeholder {
  position: relative;
  height: 360px;
  border-radius: 10px;
  background:
    linear-gradient(rgba(31, 47, 109, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 47, 109, 0.05) 1px, transparent 1px),
    linear-gradient(120deg, #eef1fa 0%, #f4f6f8 50%, #e9f1ec 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-placeholder__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.map-placeholder__pin i {
  font-size: 2.2rem;
  color: var(--primary);
  filter: drop-shadow(0 3px 3px rgba(26, 29, 35, 0.25));
}

.map-placeholder__pin span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.35rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
}

.map-embed {
  position: relative;
  height: 360px;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   25. Timeline (history)
   -------------------------------------------------------------------------- */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 760px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--border-strong);
}

.timeline li {
  position: relative;
  padding: 0 0 2rem 2.6rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--primary-tint);
}

.timeline__year {
  display: inline-block;
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.timeline h4 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.timeline p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   26. Org chart (CSS-built)
   -------------------------------------------------------------------------- */
.org-tree {
  text-align: center;
}

.org-tree__level {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.2rem;
  position: relative;
}

.org-tree__connector {
  height: 2rem;
  width: 2px;
  margin: -1rem auto 0;
  background: var(--border-strong);
}

.org-node {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 1.6rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  min-width: 170px;
  box-shadow: var(--shadow-sm);
}

.org-node--lead {
  border-color: var(--secondary);
  background: var(--secondary);
}

.org-node--lead b,
.org-node--lead span {
  color: #fff;
}

.org-node b {
  font-size: 0.92rem;
}

.org-node span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.org-node .tag--primary {
  margin-bottom: 0.15rem;
}

/* --------------------------------------------------------------------------
   27. Feature band (membership CTA) & miscellaneous bands
   -------------------------------------------------------------------------- */
.band-cta {
  background:
    radial-gradient(1000px 320px at 85% -20%, rgba(255, 255, 255, 0.16) 0%, transparent 60%),
    var(--primary);
  color: #f0faf4;
  padding: 3.5rem 0;
}

.band-cta .eyebrow {
  color: #c9f0db;
}

.band-cta h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.band-cta p {
  color: #dff2e7;
  margin-bottom: 0;
}

.band-cta__title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.band-cta__text {
  color: #dff2e7;
  max-width: 680px;
}

.band-cta--alt {
  background: radial-gradient(1000px 300px at 85% -20%, rgba(255, 255, 255, 0.14) 0%, transparent 60%), #076f3e;
}

.band-cta--alt p,
.band-cta--alt .band-cta__text {
  color: #dcefe6;
}

.band-cta--alt .eyebrow {
  color: #c9f0db;
}

/* Quote / callout */
.callout {
  border-left: 4px solid var(--primary);
  background: var(--primary-tint);
  padding: 1.4rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.callout--secondary {
  border-color: var(--secondary);
  background: var(--secondary-tint);
}

.callout i {
  color: var(--primary);
  margin-right: 0.4rem;
}

/* Framed image (home who-we-are, about intro) */
.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--surface);
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame--tall {
  min-height: 340px;
  height: 100%;
}

.image-frame--caption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  right: 1.1rem;
  color: #fff;
  background: rgba(18, 30, 66, 0.78);
  backdrop-filter: blur(4px);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.image-frame-3 {
  aspect-ratio: 4 / 3;
}

.image-frame-4 {
  aspect-ratio: 4 / 5;
}

.image-frame-1 {
  aspect-ratio: 1;
}

/* Download CTA card */
.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 1rem;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.download-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.download-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--primary-tint);
  color: var(--primary);
}

.download-card__icon--pdf {
  background: #fde4e4;
  color: var(--danger);
}

.download-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.download-card__body p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
}

.download-card__body .btn-primary {
  margin-top: 0.9rem;
}

.download-card__meta {
  color: var(--muted);
  font-size: 0.8125rem;
}

.download-card__action {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   28. Team avatar (initial-based, no images needed)
   -------------------------------------------------------------------------- */
.avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.avatar--green {
  background: linear-gradient(135deg, var(--primary-hover), var(--primary-dark));
}

.avatar--navy {
  background: linear-gradient(135deg, var(--secondary-hover), var(--secondary-dark));
}

.avatar--teal {
  background: linear-gradient(135deg, #2c8f8b, #17625f);
}

.avatar--plum {
  background: linear-gradient(135deg, #7b5ea7, #563d75);
}

.avatar--amberish {
  background: linear-gradient(135deg, #c98a2d, #8a5a14);
}

.avatar--sm {
  width: 56px;
  height: 56px;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   29. Body sub-navigation (anchor nav on About)
   -------------------------------------------------------------------------- */
.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.subnav a {
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}

.subnav a:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

/* --------------------------------------------------------------------------
   30. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--secondary);
  color: #c9d1e8;
  font-size: 0.9rem;
}

.site-footer__top {
  padding: 4rem 0 2.5rem;
}

.site-footer a {
  color: #c9d1e8;
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer a:hover {
  color: #fff;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

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

.footer-col ul li {
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
}

.footer-about__text {
  margin: 1rem 0 1.4rem;
  line-height: 1.65;
  color: #b9c3e4;
}

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.footer-contact i {
  width: 16px;
  text-align: center;
  margin-top: 6px;
  opacity: 0.75;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-contact address {
  font-style: normal;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cdd5ea;
  transition: background-color 0.15s, color 0.15s;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.social-links i {
  font-size: 0.95rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.4rem 0;
  font-size: 0.82rem;
}

.footer-bottom__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom__copy {
  margin: 0;
}

.footer-bottom__legal {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   31. Article detail (notice single, savings/loan singles)
   -------------------------------------------------------------------------- */
.article-prose {
  max-width: 760px;
}

.article-prose p {
  color: var(--ink-soft);
}

.article-prose h2 {
  font-size: 1.4rem;
  margin-top: 1.8rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

/* Sidebar helper card */
/* Vision & Mission cards */
.vm-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 2rem 2.4rem;
  height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vm-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.vm-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.vm-card--mission::before {
  background: var(--secondary);
}

.vm-card__icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: var(--primary-tint);
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.vm-card__icon--mission {
  background: var(--secondary-tint);
  color: var(--secondary);
}

.vm-card .eyebrow {
  margin-bottom: 0.4rem;
}

.vm-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.vm-card p {
  color: var(--ink-soft);
}

.vm-card__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.vm-card__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.vm-card__list i {
  color: var(--primary);
  font-size: 0.85rem;
}

.vm-card--mission .vm-card__list i {
  color: var(--secondary);
}

.aside-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin-bottom: 1.5rem;
}

.aside-card h3 {
  font-size: 1rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}

.aside-card__rate {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.aside-card__rate small {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.15rem;
}

.aside-card__actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 1.4rem;
}

.back-link i {
  font-size: 0.7rem;
}

.back-link:hover {
  color: var(--primary);
}

/* Notice strip (optional ticker style band above footer) */
.notice-strip {
  background: var(--primary-tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  font-size: 0.875rem;
}

.notice-strip__row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.notice-strip strong {
  color: var(--primary-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.notice-strip a {
  color: var(--ink-soft);
  text-decoration: none;
}

.notice-strip a:hover {
  color: var(--primary);
}

/* Empty state */
.empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  color: var(--muted);
}

.empty-state i {
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  opacity: 0.5;
  display: block;
}

/* --------------------------------------------------------------------------
   32. Fallback pages (archive / search / 404 / single / page / comments)
   -------------------------------------------------------------------------- */

/* .site-main--basic only marks the stock _s fallback templates (index,
   archive, search, 404, single, page) — #primary/#secondary render as
   unwrapped siblings there with no shared container element, so each
   gets its own width. Bare .site-main/#primary is shared by every other
   (already fully custom) template and must NOT be styled here. */
.site-main--basic,
.widget-area {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1rem;
}

.site-main--basic {
  padding-block: 3rem;
}

.widget-area {
  padding-block: 0 3rem;
}

/* Singular reading column */
body.single .site-main--basic > article,
body.page .site-main--basic > article,
.comments-area {
  max-width: 760px;
  margin-inline: auto;
}

/* Entry header / meta / content (single posts, pages, blog listing rows) */
.entry-header {
  margin-bottom: 1.2rem;
}

.entry-title {
  font-size: var(--fs-h2);
  margin-bottom: 0.5rem;
}

.entry-title a {
  color: var(--ink);
  text-decoration: none;
}

.entry-title a:hover {
  color: var(--primary);
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: var(--fs-small);
  color: var(--muted);
}

.entry-meta a {
  color: inherit;
  text-decoration: none;
}

.entry-meta a:hover {
  color: var(--primary);
}

.entry-summary,
.entry-content {
  color: var(--ink-soft);
}

.entry-footer {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: var(--fs-small);
  color: var(--muted);
}

.entry-footer a {
  color: var(--muted);
  text-decoration: none;
}

.entry-footer a:hover {
  color: var(--primary);
}

.entry-footer span + span::before {
  content: "\2022";
  margin: 0 0.5rem;
  color: var(--border-strong);
}

/* Blog listing rows (index/archive/search) get a divider between items */
.site-main--basic > article + article {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.page-links {
  margin-top: 1.5rem;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-soft);
}

.page-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 0.5rem;
  margin-left: 0.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  text-decoration: none;
}

.page-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.edit-link {
  margin-left: 0.6rem;
}

/* Post navigation (single.php prev/next) */
.post-navigation {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.post-navigation .nav-next {
  text-align: right;
  margin-left: auto;
}

.post-navigation .nav-subtitle {
  display: block;
  font-size: var(--fs-tiny);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.post-navigation .nav-title {
  font-weight: 600;
  color: var(--ink);
}

.post-navigation a:hover .nav-title {
  color: var(--primary);
}

/* No-results / empty state (template-parts/content-none.php) */
.no-results .empty-state__title {
  font-size: var(--fs-h4);
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.no-results .page-content {
  max-width: 460px;
  margin-inline: auto;
}

.no-results .search-form {
  margin-top: 1.2rem;
  justify-content: center;
}

/* 404 page content + inline widgets */
.error-404 .page-content > p {
  max-width: 620px;
}

.error-404 .search-form {
  margin: 1.2rem 0 2rem;
  max-width: 460px;
}

.error-404 .widget,
.widget-area .widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin-bottom: 1.5rem;
}

.error-404 .widget-title,
.widget-area .widget-title {
  font-size: 1rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}

.error-404 .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.error-404 .widget li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.error-404 .widget li:last-child {
  border-bottom: 0;
}

.error-404 .widget a {
  color: var(--ink-soft);
  text-decoration: none;
}

.error-404 .widget a:hover {
  color: var(--primary);
}

.error-404 .tagcloud a {
  display: inline-block;
  margin: 0.2rem 0.3rem 0.2rem 0;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem !important;
  color: var(--muted);
  text-decoration: none;
}

.error-404 .tagcloud a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Search form (searchform.php) */
.search-form {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.search-form .form-field {
  flex: 1 1 auto;
}

.search-form .search-submit {
  flex-shrink: 0;
  height: 3.125rem;
}

/* Comments */
.comments-title {
  font-size: var(--fs-h3);
  margin-bottom: 1.5rem;
}

.comment-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.comment-list .comment {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.comment-list > li:first-child > .comment {
  border-top: 0;
}

.comment-list .children {
  list-style: none;
  margin: 0;
  padding-left: 3rem;
}

.comment-author .avatar {
  border-radius: 50%;
  flex-shrink: 0;
}

.comment-metadata {
  font-size: var(--fs-tiny);
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.comment-metadata a {
  color: inherit;
}

.comment-author .fn {
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
}

.comment-content p {
  margin-bottom: 0.6rem;
  color: var(--ink-soft);
}

.reply a {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: var(--fs-tiny);
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.no-comments {
  padding: 1rem 0;
  color: var(--muted);
  font-style: italic;
}

/* Comment form — mirrors .form-field's look since core comment_form()
   markup can't easily carry that literal class without deeper arg overrides */
.comment-form p {
  margin-bottom: 1.1rem;
}

.comment-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.68rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(9, 136, 70, 0.15);
}

.comment-form textarea {
  resize: vertical;
  min-height: 110px;
}

.comment-notes,
.comment-form-cookies-consent {
  font-size: 0.85rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   33. Gallery grid (lightbox photo tiles)
   -------------------------------------------------------------------------- */
.gallery-grid__item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
}

.gallery-grid__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-grid__item:hover .gallery-grid__img {
  transform: scale(1.06);
}

.gallery-grid__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(18, 30, 66, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-grid__zoom i {
  font-size: 1.2rem;
}

.gallery-grid__item:hover .gallery-grid__zoom {
  opacity: 1;
}