/* ══════════════════════════════════════════════
   GLOBAL RESET & BASE
══════════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;800;900&family=Montserrat:wght@100;300;400;500;600;700;800;900&display=swap");

:root {
    --font-family-primary: "Montserrat", sans-serif;
    --font-family-secondary: "Inter", sans-serif;
    --font-family-tertiary: "Montserrat", sans-serif;
    --font-family-serif: "Montserrat", serif;
    --font-family-script: "Montserrat", cursive;
    --font-family-mono: monospace;
}

:root {
  --primary-color: #042A2D;
  --secondary-color: #F2F1ED;
  --text-color: #8F8F8F;
  --accent-color: #73ED7C;
  --dark-color: #019297;
  --white-color: #FFFFFF;
  --divider-color: #DFE1DE;
  --dark-divider-color: #FFFFFF33;
  --error-color: rgb(230, 87, 87);
  --nav-navy: #0d1b3e;
  --nav-red: #e63946;
  --nav-white: #ffffff;
  --nav-gray: #f4f6f9;
  --nav-muted: #7a8694;
  --nav-border: rgba(13, 27, 62, 0.08);
  --navy: #0d1b3e;
  --red: #e63946;
  --white: #ffffff;
  --gray: #f4f6f9;
  --muted: #7a8694;
}

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

body {
    background: #fff;
    overflow-x: hidden;
    font-family: var(--font-family-primary);
}

/* ══════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════ */
.topbar {
  font-family: var(--font-family-secondary);
  background: var(--nav-navy);
  padding: 7px 0;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
}

.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--nav-red);
}

.topbar-sep {
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.15);
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.header {
  font-family: var(--font-family-primary);
  background: var(--nav-white);
  border-bottom: 1px solid var(--nav-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(13, 27, 62, 0.07);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 70px;
    gap: 24px;
}

/* ── LOGO ── */
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--nav-navy);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: var(--nav-red);
}

.logo-icon::after {
    content: "F";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    z-index: 1;
}

.logo-text .name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--nav-navy);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.2;
}

.logo-text .name em {
  font-style: normal;
  color: var(--nav-red);
}

.logo-text .sub {
    font-size: 0.52rem;
    color: var(--nav-muted);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

/* ══════════════════════════════════════════════
   NAV — CSS HOVER DROPDOWNS
══════════════════════════════════════════════ */
.nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav .nav-item a {
  text-decoration: none;
}

.nav-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 11px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--nav-navy);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 7px;
    transition:
        color 0.2s,
        background 0.2s;
    user-select: none;
    -webkit-user-select: none;
}

.nav-trigger svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.nav-item:hover>.nav-trigger {
  color: var(--nav-red);
  background: rgba(230, 57, 70, 0.06);
}

.nav-item:hover>.nav-trigger svg {
  transform: rotate(180deg);
}

/* ── DROPDOWN PANEL ── */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: transparent;
  border-radius: 12px;
  padding: 8px 0 0 0;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  filter:
    drop-shadow(0 2px 6px rgba(13, 27, 62, 0.08))
    drop-shadow(0 12px 28px rgba(13, 27, 62, 0.14));
}

/* Inner panel carries the visual styles */
.dropdown::after {
  content: "";
  position: absolute;
  inset: 8px 0 0 0;
  background: var(--nav-white);
  border-radius: 12px;
  box-shadow:
    0 2px 8px rgba(13, 27, 62, 0.06),
    0 16px 40px rgba(13, 27, 62, 0.13),
    0 0 0 1px rgba(13, 27, 62, 0.07);
  z-index: -1;
}
 
/* Arrow caret — sits in the 8px padding gap */
.dropdown::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: none;
  border-bottom-color: var(--nav-white);
  filter: drop-shadow(0 -1px 1px rgba(13, 27, 62, 0.07));
  z-index: 1;
}

.nav-item:hover>.dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Right-align for last items */
.nav-item:nth-last-child(-n+4)>.dropdown {
  left: auto;
  right: 15px;
  transform: translateX(0) translateY(-6px);
}

.nav-item:nth-last-child(-n+4)>.dropdown::before {
  left: auto;
  right: 18px;
  transform: none;
}

.nav-item:nth-last-child(-n+4):hover>.dropdown {
  transform: translateX(0) translateY(0);
}

.drop-link {
    display: block;
    padding: 9px 14px;
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.15s,
        color 0.15s,
        padding-left 0.2s;
}

.drop-link:hover {
    background: var(--nav-gray);
    color: var(--nav-navy);
    padding-left: 18px;
}

.drop-divider {
    height: 1px;
    background: var(--nav-border);
    margin: 4px 8px;
}

/* ── PORTAL BUTTON ── */
.btn-portal {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--nav-navy);
    color: #fff;
    font-family: var(--font-family-primary);
    font-size: 0.77rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition:
        background 0.25s,
        transform 0.2s;
}

.btn-portal:hover {
  background: var(--nav-red);
  transform: translateY(-1px);
}

.btn-portal svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══════════════════════════════════════════════
   HAMBURGER
══════════════════════════════════════════════ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    margin-left: auto;
    transition: background 0.2s;
}

.hamburger:hover {
  background: var(--nav-gray);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nav-navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

body.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}

body.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════════ */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    visibility: hidden;
    transition: visibility 0s linear 0.3s;
}

.mobile-nav.open {
    visibility: visible;
    transition-delay: 0s;
}

.m-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 62, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav.open .m-overlay {
  opacity: 1;
}

.m-drawer {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 290px;
  background: var(--nav-white);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-nav.open .m-drawer {
  transform: translateX(0);
}

.m-head {
    background: var(--nav-navy);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.m-head .logo img {
    background-color: #fff;
    border-radius: 6px;
}

.m-head .name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.m-head .name em {
  font-style: normal;
  color: var(--nav-red);
}

.m-head .sub {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
}

.m-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  display: flex;
  transition: background 0.2s;
}

.m-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.m-close svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.m-menu {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.m-item {
  border-bottom: 1px solid var(--nav-border);
}

.m-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    font-family: var(--font-family-primary);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--nav-navy);
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
}

.m-row:hover {
  background: var(--nav-gray);
  color: var(--nav-red);
}

.m-row svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.28s;
  flex-shrink: 0;
}

.m-item.open .m-row svg {
  transform: rotate(180deg);
}

.m-sub {
  max-height: 0;
  overflow: hidden;
  background: #fafbfc;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.m-item.open .m-sub {
  max-height: 500px;
}

.m-sub a {
    display: block;
    padding: 10px 20px 10px 30px;
    font-family: var(--font-family-primary);
    font-size: 0.78rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-top: 1px solid var(--nav-border);
    transition:
        background 0.2s,
        color 0.2s;
}

.m-sub a:hover {
  background: var(--nav-gray);
  color: var(--nav-navy);
}

.m-foot {
    padding: 16px 20px;
    border-top: 1px solid var(--nav-border);
    flex-shrink: 0;
}

.m-foot .btn-portal {
  width: 100%;
  justify-content: center;
}

/* ── Responsive breakpoints ── */
@media (max-width: 1140px) {
  .nav-trigger {
    padding: 8px 8px;
    font-size: 0.73rem;
  }

  .header-inner {
    gap: 12px;
  }
}

@media (max-width: 920px) {

  .nav,
  .btn-portal {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .header-inner {
    padding: 0 20px;
  }

  .topbar-inner {
    padding: 0 20px;
  }
}

@media (max-width: 400px) {
  .logo-text .sub {
    display: none;
  }
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
    font-family: var(--font-family-primary);
    background: #142960;
    color: #fff;
}

.footer-main {
    padding: 56px 0 48px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 280px 1fr 1fr 220px;
    gap: 48px;
    align-items: start;
}

/* Brand column */
.footer-logo {
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 6px;
    padding: 10px 14px;
    display: inline-flex;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-name {
    font-size: 1rem;
    font-weight: 900;
    color: #1a2a4a;
    letter-spacing: 0.02em;
    line-height: 1;
}

.footer-logo-sub {
    font-size: 0.48rem;
    color: #666;
    line-height: 1.5;
    margin-top: 3px;
}

.footer-about {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-readmore {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-readmore:hover {
    color: #fff;
}

/* Subscribe */
.footer-subscribe {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.footer-email {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: var(--font-family-primary);
    font-size: 0.78rem;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.footer-email::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-subscribe-btn {
    padding: 10px 16px;
    background: #cc2200;
    color: #fff;
    font-family: var(--font-family-primary);
    font-size: 0.72rem;
    font-weight: 700;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: background 0.2s;
}

.footer-subscribe-btn:hover {
    background: #aa1c00;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: grid;
    place-items: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition:
        border-color 0.2s,
        color 0.2s;
}

.footer-social:hover {
    border-color: #fff;
    color: #fff;
}

/* Link columns */
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.footer-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links a {
    display: block;
    padding: 9px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-link-new {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.footer-new-badge {
    background: #cc2200;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

/* Contact column */
.footer-contact-block {
    margin-bottom: 16px;
}

.footer-contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 4px;
}

.footer-contact-col p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

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

/* Bottom bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 16px 40px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
}

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

/* Responsive footer */
@media (max-width: 1100px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo-box {
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 28px;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-bottom {
        padding: 16px 20px;
    }

    .footer-main {
        padding: 40px 0 32px;
    }
}

/* ══════════════════════════════════════════════
   SECTION 1 — HERO
   Font: Inter
══════════════════════════════════════════════ */
@keyframes hero-fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-fadeRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero-cardIn {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes hero-floatCard {
    0%,
    100% {
        transform: translateY(-50%) translateY(0px);
    }

    50% {
        transform: translateY(-50%) translateY(-6px);
    }
}

.hero {
    font-family: var(--font-family-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    min-height: 80vh;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.hero-left {
    flex: 1;
    max-width: 520px;
}

.hero-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: #111;
    margin-bottom: 24px;
    opacity: 0;
    animation: hero-fadeUp 0.5s ease-out 0.05s forwards;
}

.hero-subtitle {
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 400;
    color: #444;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    animation: hero-fadeUp 0.5s ease-out 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: hero-fadeUp 0.5s ease-out 0.3s forwards;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-family-primary);
    cursor: pointer;
    border: none;
    background: #1a2a4a;
    color: #fff;
    white-space: nowrap;
    transition:
        background 0.2s,
        transform 0.18s,
        box-shadow 0.2s;
}

.btn:hover {
    background: #243560;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 42, 74, 0.25);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-red {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-family-primary);
    cursor: pointer;
    border: none;
    background: #e71d33;
    color: #fff;
    white-space: nowrap;
    transition:
        background 0.2s,
        transform 0.18s,
        box-shadow 0.2s;
}

.btn-red:hover {
    background: #243560;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 42, 74, 0.25);
}

.btn-red:active {
    transform: translateY(0);
    box-shadow: none;
}

.hero-right {
    flex: 1;
    max-width: 580px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    animation: hero-fadeRight 0.55s ease-out 0.1s forwards;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-img {
    width: 441px;
    height: 425px;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #c8d6e5 0%, #a0b4c8 100%);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.image-wrapper:hover .hero-img {
    transform: scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.red-card {
    position: absolute;
    top: 50%;
    left: -211px;
    background: #cc2200;
    color: #fff;
    padding: 32px 36px;
    border-radius: 12px;
    width: 344px;
    height: 250px;
    z-index: 2;
    animation:
        hero-cardIn 0.45s cubic-bezier(0.34, 1.3, 0.64, 1) 0.55s both,
        hero-floatCard 5s ease-in-out 1.1s infinite;
    transition: filter 0.2s;
}

.red-card:hover {
    filter: brightness(1.06);
}

.red-card .tagline {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
    opacity: 0;
    animation: hero-fadeUp 0.4s ease 0.85s forwards;
}

.red-card .big-text {
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: hero-fadeUp 0.4s ease 0.95s forwards;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 40px 32px;
        min-height: auto;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }

    .image-wrapper {
        max-width: 420px;
    }

    .red-card {
        left: -20px;
        width: 240px;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 24px 16px;
    }

    .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .image-wrapper img {
        width: 100%;
        border-radius: 20px;
        display: block;
    }

    .red-card {
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;

        width: 100%;
        height: auto !important;
        /* 🔥 This removes fixed 250px */
        padding: 18px 16px;
        /* smaller height */
        margin-top: 24px;
    }

    .red-card h2 {
        font-size: 18px;
        line-height: 1.2;
        margin: 8px 0;
    }

    .red-card p {
        font-size: 13px;
        margin-bottom: 6px;
    }
}

/* ══════════════════════════════════════════════
   SECTION 2 — MANDATE
   Font: Outfit
══════════════════════════════════════════════ */
@keyframes mandate-fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mandate-section {
    font-family: "Outfit", sans-serif;
    background: #f2f4f7;
    padding: 90px 0 100px;
    overflow: hidden;
}

.mandate-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

.mandate-header {
    text-align: center;
    margin-bottom: 64px;
}

.mandate-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #0d1b3e;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: mandate-fadeUp 0.7s ease forwards 0.1s;
}

.mandate-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: mandate-fadeUp 0.7s ease forwards 0.25s;
}

.mandate-desc {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: mandate-fadeUp 0.7s ease forwards 0.4s;
}

.mandate-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: end;
}

.mandate-card {
    background: #e4e8ef;
    border-radius: 16px;
    padding: 28px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s ease,
        background 0.35s ease;
    opacity: 0;
    transform: translateY(40px);
}

.mandate-card.visible {
    animation: mandate-fadeUp 0.6s ease forwards;
}

.mandate-card:nth-child(1) {
    animation-delay: 0.5s;
}

.mandate-card:nth-child(2) {
    animation-delay: 0.65s;
}

.mandate-card:nth-child(3) {
    animation-delay: 0.8s;
}

.mandate-card:nth-child(4) {
    animation-delay: 0.95s;
}

.mandate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 36px rgba(13, 27, 62, 0.25);
    background: #0d1b3e;
}

.mandate-card:hover .mandate-card-label {
    color: #fff;
}

.mandate-card:hover .mandate-icon-box {
    background: #e63946;
    transform: translateY(-4px);
}

.mandate-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 40px;
    background: #0d1b3e;
    transition:
        background 0.35s,
        transform 0.35s;
    flex-shrink: 0;
}

.mandate-icon-box svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mandate-card-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0d1b3e;
    line-height: 1.5;
    transition: color 0.35s;
}

@media (max-width: 860px) {
    .mandate-cards {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }
}

@media (max-width: 520px) {
    .mandate-section {
        padding: 56px 0 64px;
    }

    .mandate-inner {
        padding: 0 18px;
    }

    .mandate-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .mandate-header {
        margin-bottom: 44px;
    }

    .mandate-icon-box {
        width: 48px;
        height: 48px;
        margin-bottom: 28px;
    }

    .mandate-card {
        padding: 22px 16px 24px;
    }
}

@media (max-width: 380px) {
    .mandate-cards {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════
   SECTION 3 — MEMBERSHIP
   Font: Outfit
══════════════════════════════════════════════ */
.membership-section {
    font-family: "Outfit", sans-serif;
    padding: 80px 0 90px;
    background: #fff;
}

.membership-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

.membership-header {
    text-align: center;
    margin-bottom: 52px;
}

.membership-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #0d1b3e;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.membership-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 12px;
}

.membership-desc {
    font-size: 0.78rem;
    color: #aaa;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;  /* left narrower, right two wider */
    grid-template-rows: 82px 160px;             /* top row short, bottom row tall */
    gap: 14px;
}

.mem-card {
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    cursor: default;
}
.mem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.mem-card-label {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    max-width: 220px;
    color: #fff;
}

.mem-img-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.mem-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ── Col 1, Row 1: short solid blue ── */
.c-blue-solid {
    grid-column: 1;
    grid-row: 1;
    background: #1565c0;
}

/* ── Col 1, Rows 2–3: tall dark red photo ── */
.c-darkred {
    grid-column: 1;
    grid-row: 2 / 4;
}
.c-darkred .mem-img-placeholder {
    background: linear-gradient(140deg, #6b1010, #a01818);
}
.c-darkred .mem-card-overlay {
    background: rgba(80, 10, 10, 0.52);
}

/* ── Col 2, Rows 1–3: full-height blue photo ── */
.c-blue-img {
    grid-column: 2;
    grid-row: 1 / 4;
}
.c-blue-img .mem-img-placeholder {
    background: linear-gradient(160deg, #0d2d6b, #1a4fa0);
}
.c-blue-img .mem-card-overlay {
    background: rgba(10, 35, 100, 0.52);
}

/* ── Col 3, Rows 1–2: tall red photo ── */
.c-red-img {
    grid-column: 3;
    grid-row: 1 / 3;
}
.c-red-img .mem-img-placeholder {
    background: linear-gradient(140deg, #a01010, #d42020);
}
.c-red-img .mem-card-overlay {
    background: rgba(140, 10, 10, 0.48);
}

/* ── Col 3, Row 3: short light card ── */
.c-light {
    grid-column: 3;
    grid-row: 3;
    background: #edf1f7;
    align-items: flex-start;
}
.c-light .mem-card-label {
    color: #0d1b3e;
    font-weight: 700;
}

/* Silhouette shimmer on placeholders */
.mem-img-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 80px 130px at 25% 110%,
            rgba(0, 0, 0, 0.3) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 60px 100px at 55% 110%,
            rgba(0, 0, 0, 0.2) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50px 90px at 80% 110%,
            rgba(0, 0, 0, 0.15) 0%,
            transparent 70%
        );
}

@media (max-width: 820px) {
    .membership-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }

    .c-blue-solid {
        grid-column: 1;
        grid-row: 1;
    }

    .c-darkred {
        grid-column: 1;
        grid-row: 2;
    }

    .c-blue-img {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .c-red-img {
        grid-column: 1;
        grid-row: 3;
    }

    .c-light {
        grid-column: 2;
        grid-row: 3;
    }
}

@media (max-width: 560px) {
    .membership-section {
        padding: 52px 0 60px;
    }

    .membership-inner {
        padding: 0 18px;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 160px);
        gap: 12px;
    }

    .c-blue-solid,
    .c-darkred,
    .c-blue-img,
    .c-red-img,
    .c-light {
        grid-column: 1;
        grid-row: auto;
    }
}

/* ══════════════════════════════════════════════
   SECTION 4 — UPCOMING EVENTS
   Font: DM Sans
══════════════════════════════════════════════ */
.events-section {
    font-family: "DM Sans", sans-serif;
    background: #f0f2f5;
    padding: 60px 20px;
    color: #0d1b3e;
}

.events-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.events-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.events-title-icon {
    width: 44px;
    height: 44px;
    background: #e63946;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #fff;
}

.events-title {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 700;
}

.events-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 999px;
    border: 2px solid #d1d5db;
    background: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: #374151;
}

.filter-btn.active {
    background: #0d1b3e;
    border-color: #0d1b3e;
    color: #fff;
}

.events-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

/* Calendar */
.calendar {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.cal-header {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 14px;
    text-align: center;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.cal-grid .day-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: #9ca3af;
    padding-bottom: 6px;
}

.cal-grid .day {
    font-size: 0.82rem;
    padding: 5px 2px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}

.cal-grid .day:hover {
    background: #f3f4f6;
}

.cal-grid .day.has-event {
    color: #e63946;
    font-weight: 700;
    position: relative;
}

.cal-grid .day.has-event::after {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: #e63946;
    border-radius: 50%;
    margin: 2px auto 0;
}

/* Events panel */
.events-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-card {
    background: #0d1b3e;
    border-radius: 16px;
    padding: 28px 28px 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 110% 0%,
        rgba(230, 57, 70, 0.35) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e63946;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.featured-title {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    position: relative;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.register-btn {
    display: inline-block;
    background: #fff;
    color: #0d1b3e;
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    position: relative;
}

.register-btn:hover {
    opacity: 0.9;
}

/* Event list */
.event-list {
    display: flex;
    flex-direction: column;
}

.event-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    text-align: center;
    flex-shrink: 0;
    min-width: 44px;
}

.event-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1;
}

.event-month {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.event-body {
    flex: 1;
    min-width: 0;
}

.event-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.event-desc {
    font-size: 0.82rem;
    color: #6b7280;
    margin-bottom: 8px;
    line-height: 1.5;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.event-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e3a5f;
    background: #e8f0fe;
    padding: 3px 10px;
    border-radius: 999px;
}

.view-all-btn {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0d1b3e;
    cursor: pointer;
    border: none;
    font-family: "DM Sans", sans-serif;
    width: 100%;
    transition: background 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.view-all-btn:hover {
    background: #f3f4f6;
}

@media (max-width: 768px) {
    .events-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .events-section {
        padding: 20px 12px;
    }

    .events-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-card {
        padding: 20px 16px;
    }

    .event-item {
        gap: 12px;
    }

    .filter-btn {
        padding: 6px 14px;
    }
}

/* ══════════════════════════════════════════════
   SECTION 5 — RESEARCH
   Font: Outfit
══════════════════════════════════════════════ */
.research-section {
    font-family: "Outfit", sans-serif;
    padding: 90px 0;
    background: #fff;
}

.research-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.research-left h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.research-subhead {
    font-size: 1.05rem;
    font-weight: 500;
    color: #444;
    line-height: 1.5;
    margin-bottom: 18px;
}

.research-desc {
    font-size: 0.875rem;
    color: #888;
    line-height: 1.85;
    margin-bottom: 40px;
}

.research-btn {
    display: inline-block;
    background: #0d1b3e;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.research-btn:hover {
    background: #162d5e;
}

/* Carousel */
.research-carousel {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
}

.research-cards-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.research-card {
    position: absolute;
    left: 0;
    right: 0;
    background: #f3f6fb;
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.research-card-text {
    flex: 1;
    min-width: 0;
}

.research-card-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 4px;
}

.research-meta {
    font-size: 0.72rem;
    color: #aaa;
    margin-bottom: 10px;
}

.research-card-text p {
    font-size: 0.78rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

.research-card-btn {
    flex-shrink: 0;
    background: #e63946;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    white-space: nowrap;
    transition: background 0.2s;
}

.research-card-btn:hover {
    background: #c0303a;
}

/* Card states */
.research-card.state-active {
    top: 50%;
    transform: translateY(-50%) scale(1);
    background: #eaf0ff;
    box-shadow: 0 8px 32px rgba(13, 27, 62, 0.13);
    opacity: 1;
    z-index: 3;
}

.research-card.state-prev {
    top: 50%;
    transform: translateY(calc(-50% - 118px)) scale(0.9);
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
    box-shadow: none;
}

.research-card.state-next {
    top: 50%;
    transform: translateY(calc(-50% + 118px)) scale(0.9);
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
    box-shadow: none;
}

.research-card.state-far-prev {
    top: 50%;
    transform: translateY(calc(-50% - 210px)) scale(0.78);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.research-card.state-far-next {
    top: 50%;
    transform: translateY(calc(-50% + 210px)) scale(0.78);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* Dots */
.research-dots {
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.research-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.35s;
}

.research-dot.active {
    background: #0d1b3e;
    height: 20px;
}

.research-scroll-zone {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: ns-resize;
}

@media (max-width: 900px) {
    .research-inner {
        grid-template-columns: 1fr;
        gap: 52px;
        padding: 0 28px;
    }

    .research-carousel {
        height: 340px;
    }

    .research-dots {
        right: -22px;
    }
}

@media (max-width: 560px) {
    .research-section {
        padding: 56px 0;
    }

    .research-inner {
        padding: 0 18px;
        gap: 40px;
    }

    .research-carousel {
        height: 300px;
    }

    .research-card {
        padding: 16px;
    }

    .research-card.state-prev {
        transform: translateY(calc(-50% - 100px)) scale(0.9);
    }

    .research-card.state-next {
        transform: translateY(calc(-50% + 100px)) scale(0.9);
    }

    .research-card.state-far-prev {
        transform: translateY(calc(-50% - 180px)) scale(0.78);
    }

    .research-card.state-far-next {
        transform: translateY(calc(-50% + 180px)) scale(0.78);
    }
}

/* ══════════════════════════════════════════════
   SECTION 6 — NEWS
   Font: Outfit
══════════════════════════════════════════════ */
.news-section {
    font-family: "Outfit", sans-serif;
    background: #0d1b3e;
    padding: 70px 0;
    overflow: hidden;
}

.news-inner {
    max-width: 1600px;
    margin: 0 0 0 auto;
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: flex-end;
}

.news-label {
    flex-shrink: 0;
    width: 260px;
}

.news-label h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.news-label p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.news-cards-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.news-cards-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, transparent, #0d1b3e);
    pointer-events: none;
    z-index: 2;
}

.news-cards-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.news-cards-track::-webkit-scrollbar {
    display: none;
}

.news-cards-track.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.news-cards-track.dragging .news-card {
    pointer-events: none;
}

.news-card {
    flex-shrink: 0;
    width: 260px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.news-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.news-img-placeholder {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    font-size: 2.5rem;
}

.news-img-placeholder.p1 {
    background: linear-gradient(135deg, #c9a0a0, #e8c4c4);
}

.news-img-placeholder.p2 {
    background: linear-gradient(135deg, #7a9cc9, #a8c4e8);
}

.news-img-placeholder.p3 {
    background: linear-gradient(135deg, #c4a87a, #e8d4a8);
}

.news-img-placeholder.p4 {
    background: linear-gradient(135deg, #90b890, #b8d4b8);
}

.news-date-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: #1565c0;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.news-card-body {
    padding: 20px 18px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1b3e;
    line-height: 1.35;
    margin-bottom: 10px;
}

.news-card-body p {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.news-read-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1565c0;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    padding: 0;
    text-decoration: none;
}

.news-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #e8f0fe;
    display: grid;
    place-items: center;
    position: relative;
    transition:
        background-color 0.2s,
        transform 0.2s;
}

.news-arrow::before {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("../images/icon/arrow-right.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: filter 0.2s;
}

.news-read-more:hover .news-arrow {
    background-color: #1565c0;
    transform: translateX(3px);
}

.news-read-more:hover .news-arrow::before {
    filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
    .news-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
        padding: 0 24px;
    }

    .news-label {
        width: 100%;
    }

    .news-cards-viewport {
        width: 100%;
    }

    .news-card {
        width: 240px;
    }
}

@media (max-width: 600px) {
    .news-section {
        padding: 48px 0;
    }

    .news-inner {
        padding: 0 0 0 16px;
        gap: 28px;
    }

    .news-card {
        width: 220px;
    }

    .news-cards-viewport::after {
        width: 40px;
    }
}

@media (max-width: 400px) {
    .news-card {
        width: calc(100vw - 64px);
    }
}

/* ══════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* @media (max-width: 480px) {
    .red-card {
        left: 0;
        right: 0;
        margin: 0 auto;
        position: relative;
        transform: none;
        top: auto;
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
        margin-top: 20px;
        text-align: center;
        animation: fadeUp 0.45s ease 0.55s both;
    }
  } */
