:root {
  --teal: #1ea69e;
  --teal-dark: #168c87;
  --navy: #094967;
  --blue: #2563eb;
  --orange: #ffb900;
  --ink: #111827;
  --muted: #4b5563;
  --line: #f1f3f5;
  --footer: #0f172a;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: #fefefe;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.content-container { max-width: var(--container); padding-right: 32px; padding-left: 32px; }

/* Header */
.site-header {
  height: 79px;
  border-bottom: 1px solid #eef1f3;
  background: rgba(255, 255, 255, .97);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 5px 25px rgba(15, 23, 42, .08); }
.site-header .navbar { height: 79px; padding: 0; }
.header-container { max-width: 1880px; padding: 0 34px; }
.navbar-brand { width: 130px; margin-right: 45px; padding: 0; }
.navbar-brand img { display: block; width: 118px; height: 54px; object-fit: contain; }
.main-menu { gap: 18px; }
.main-menu .nav-link { position: relative; padding: 28px 5px !important; color: #334155; font-size: 14px; font-weight: 500; }
.main-menu .nav-link::after { position: absolute; right: 5px; bottom: 17px; left: 5px; height: 2px; content: ""; background: var(--teal); transform: scaleX(0); transition: transform .2s; }
.main-menu .nav-link:hover { color: var(--teal-dark); }
.main-menu .nav-link:hover::after { transform: scaleX(1); }
.header-actions { gap: 10px; }
.search-box { display: flex; width: 245px; height: 38px; align-items: center; padding: 0 13px; border: 1px solid #dfe5e8; border-radius: 8px; color: #94a3b8; }
.search-box input { width: 100%; margin-left: 9px; border: 0; outline: 0; color: #334155; background: transparent; font-size: 13px; }
.search-box input::placeholder { color: #94a3b8; }
.language-switch { display: inline-flex; height: 38px; flex: 0 0 auto; align-items: center; padding: 3px; border: 1px solid #dbe3e7; border-radius: 8px; background: #f8fafc; }
.language-switch a { display: inline-flex; align-items: center; justify-content: center; min-width: 31px; height: 30px; padding: 0 7px; border: 0; border-radius: 6px; color: #64748b; background: transparent; font-size: 11px; font-weight: 800; line-height: 30px; cursor: pointer; text-decoration: none; }
.language-switch a.active { color: #fff; background: var(--teal); box-shadow: 0 2px 7px rgba(13,148,136,.22); }
.language-switch a:focus-visible { outline: 3px solid rgba(13,148,136,.2); outline-offset: 1px; }
.header-actions .btn { height: 38px; padding: 8px 16px; border-radius: 7px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.btn-create { color: #fff; background: var(--teal); }
.btn-create:hover, .btn-register:hover { color: #fff; background: var(--teal-dark); }
.btn-login { color: #475569; border: 1px solid #dbe1e5; background: #fff; }
.btn-login:hover { background: #f8fafc; }
.btn-register { color: #fff; background: var(--teal); }

/* Hero */
main { padding-top: 79px; }
.hero-section { position: relative; height: 640px; overflow: hidden; background: #fff; }
.hero-copy { position: absolute; z-index: 2; top: 43px; left: 50%; width: 800px; transform: translateX(-50%); }
.hero-copy h1 { margin: 0; color: var(--navy); font-size: 32px; font-weight: 800; line-height: 1.25; letter-spacing: -.8px; }
.hero-brand { margin-top: -2px; color: var(--teal); font-size: 55px; font-weight: 900; line-height: 1.06; letter-spacing: -2px; }
.hero-copy p { margin: 3px 0 0; color: #667085; font-size: 13px; font-weight: 500; }
.hero-illustration { position: absolute; top: 120px; left: 50%; width: 720px; height: 405px; object-fit: cover; transform: translateX(-50%); }
.hero-pattern { position: absolute; right: -12px; bottom: -5px; width: 365px; height: 345px; object-fit: contain; opacity: .7; }
.hero-buttons { position: absolute; z-index: 3; bottom: 33px; left: 50%; display: flex; gap: 18px; transform: translateX(-50%); }
.hero-buttons .btn {
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 29px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.btn-hero-primary { color: #0f4b64; border: 1px solid #f5b600; background: #ffbf00; box-shadow: 0 7px 18px rgba(251, 191, 36, .22); }
.btn-hero-primary:hover { color: #0f4b64; background: #ffc928; transform: translateY(-2px); }
.btn-hero-secondary { color: #155e75; border: 1px solid #b8d8de; background: white; }
.btn-hero-secondary:hover { color: #fff; border-color: var(--teal); background: var(--teal); }

/* Stats */
.stats-strip { height: 101px; color: #fff; background: var(--teal); }
.stats-strip .container, .stats-row { height: 100%; }
.stat-item { display: flex; height: 52px; align-items: center; gap: 16px; margin-top: 24px; padding-left: 32px; border-left: 1px solid rgba(255, 255, 255, .18); }
.stat-item:first-child { border-left: 0; }
.stat-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 8px; color: #dcfffb; background: rgba(255, 255, 255, .14); font-size: 23px; }
.stat-item strong, .stat-item small { display: block; }
.stat-item strong { font-size: 20px; font-weight: 800; line-height: 27px; }
.stat-item small { color: #d5f5f2; font-size: 13px; line-height: 18px; }

/* Shared sections */
.section { position: relative; }
.courses-section { height: 655.2px; margin-top: 52.6px; padding-top: 80px; }
.events-section { height: 694.4px; padding-top: 80px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.section-heading { display: flex; min-height: 92px; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.section-heading h2, .split-title h2 { margin: 0 0 8px; color: var(--ink); font-size: 30px; font-weight: 700; line-height: 36px; letter-spacing: -.6px; }
.section-heading p { max-width: 1050px; margin: 0; color: var(--muted); font-size: 16px; line-height: 24px; }
.view-all, .split-title > a { flex: 0 0 auto; color: var(--blue); font-size: 16px; font-weight: 500; }
.view-all i { display: inline-block; margin-left: 3px; transition: transform .2s; }
.view-all:hover i { transform: translateX(4px); }

/* Course cards */
.course-card { height: 372px; overflow: hidden; border: 1px solid #f3f4f6; border-radius: 16px; background: #fff; box-shadow: 0 1px 2px rgba(0, 0, 0, .05); transition: transform .3s, box-shadow .3s; }
.course-card:hover { box-shadow: 0 18px 32px rgba(15, 23, 42, .12); transform: translateY(-5px); }
.card-image { position: relative; height: 192px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.course-card:hover .card-image img { transform: scale(1.055); }
.level-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 99px; color: #111827; background: rgba(255, 255, 255, .92); box-shadow: 0 1px 2px rgba(0, 0, 0, .08); font-size: 12px; font-weight: 600; line-height: 16px; backdrop-filter: blur(2px); }
.course-body { height: 178px; padding: 20px; }
.course-body h3 { display: -webkit-box; height: 56px; overflow: hidden; margin: 0 0 8px; color: var(--ink); font-size: 18px; font-weight: 700; line-height: 28px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.course-card:hover h3 { color: var(--blue); }
.course-body .meta { height: 20px; margin: 0 0 16px; color: #6b7280; font-size: 14px; line-height: 20px; }
.course-body .meta i, .card-foot i { margin-right: 5px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #f9fafb; color: #6b7280; font-size: 14px; font-weight: 500; }
.card-foot a { color: var(--blue); font-weight: 700; }

/* Events */
.events-section .section-heading { min-height: 68px; margin-bottom: 32px; }
.event-card { height: 432px; overflow: hidden; border: 1px solid #f0f2f4; border-radius: 16px; background: #f9fafb; transition: box-shadow .25s; }
.event-card:hover { box-shadow: 0 12px 25px rgba(15, 23, 42, .09); }
.event-image { position: relative; height: 192px; overflow: hidden; }
.event-image img { width: 100%; height: 100%; object-fit: cover; }
.event-image span { position: absolute; top: 12px; right: 12px; padding: 4px 10px; border-radius: 999px; color: #fff; background: var(--blue); font-size: 12px; font-weight: 600; }
.event-body { height: 239px; padding: 23px 24px 24px; }
.event-body time { color: var(--blue); font-size: 14px; font-weight: 600; }
.event-body h3 { display: -webkit-box; height: 56px; overflow: hidden; margin: 5px 0 11px; font-size: 18px; font-weight: 700; line-height: 28px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.event-body p { margin: 0 0 23px; color: #6b7280; font-size: 14px; line-height: 20px; }
.event-body p i { margin-right: 6px; }
.event-button { display: flex; width: 100%; height: 46px; align-items: center; justify-content: center; border: 2px solid var(--blue); border-radius: 8px; color: var(--blue); background: #fff; font-weight: 700; transition: .2s; }
.event-button:hover { color: #fff; background: var(--blue); }

/* Resources and Hub */
.resource-section { height: 824.4px; padding-top: 86px; background: #f8fafb; }
.resource-layout { align-items: flex-start; }
.split-title { display: flex; min-height: 39px; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.split-title h2 { margin: 0; font-size: 24px; line-height: 32px; }
.split-title h2 i { margin-right: 8px; font-size: 21px; }
.split-title > a { margin-right: 8px; font-size: 14px; }
.text-orange { color: #f97316; }
.text-teal { color: var(--teal); }
.resource-list { display: flex; flex-direction: column; gap: 26px; }
.resource-item { display: flex; min-height: 128px; align-items: center; gap: 20px; padding: 0 18px 0 0; border-radius: 10px; background: #fff; box-shadow: 0 1px 3px rgba(15, 23, 42, .06); transition: transform .2s, box-shadow .2s; }
.resource-item:hover { box-shadow: 0 8px 25px rgba(15, 23, 42, .1); transform: translateX(4px); }
.resource-item > img, .resource-cover { width: 96px; height: 128px; flex: 0 0 96px; border-radius: 8px; object-fit: cover; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.resource-cover-placeholder { display: grid; place-items: center; color: #94a3b8; background: #e5e7eb; font-size: 31px; }
.resource-item > div:last-child { display: flex; min-width: 0; flex-direction: column; gap: 9px; }
.resource-item span { color: #1f2937; font-size: 16px; font-weight: 700; line-height: 24px; }
.resource-item small { color: var(--blue); font-size: 12px; font-weight: 600; }
.hub-card { position: relative; height: 602px; overflow: hidden; border-radius: 16px; color: #fff; background: linear-gradient(145deg, #1ea69e 0%, #199890 100%); box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }
.orb { position: absolute; width: 160px; height: 160px; border-radius: 50%; filter: blur(20px); }
.orb-one { top: -32px; right: -32px; background: rgba(255,255,255,.12); }
.orb-two { bottom: -32px; left: -32px; background: rgba(251,146,60,.22); }
.hub-content { position: relative; z-index: 1; display: flex; height: 100%; flex-direction: column; padding: 32px; }
.hub-content h3 { margin: 0 0 12px; font-size: 24px; font-weight: 700; line-height: 32px; }
.hub-content > p { margin: 0 0 29px; color: #d7fffb; font-size: 16px; line-height: 26px; text-align: justify; }
.hub-event { display: flex; min-height: 83px; flex-direction: column; justify-content: center; margin-bottom: 16px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: rgba(255,255,255,.1); backdrop-filter: blur(6px); }
.hub-event strong { margin-bottom: 3px; font-size: 16px; line-height: 24px; }
.hub-event span { color: #c5fffb; font-size: 14px; line-height: 20px; }
.hub-event span i { margin-right: 4px; font-size: 12px; }
.hub-button { display: flex; height: 56px; align-items: center; justify-content: center; margin-top: auto; border-radius: 12px; color: var(--navy); background: #fff; box-shadow: 0 10px 15px -3px rgba(0,0,0,.1); font-weight: 700; }
.hub-button:hover { color: var(--teal-dark); background: #f8fffe; }

/* CTA */
.cta-section { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 444px; padding: 64px 16px; overflow: hidden; color: #fff; background: var(--teal); text-align: center; }
.cta-pattern { position: absolute; inset: 0; opacity: .11; background-image: radial-gradient(circle, #fff 0, transparent 42%); background-size: 20px 20px; }
.cta-section .container { width: 100%; display: flex; flex-direction: column; align-items: center; }
.cta-section h2 { margin: 0 0 22px; font-size: 48px; font-weight: 900; line-height: 1; letter-spacing: -1.5px; }
.cta-section p { max-width: 865px; margin: 0 auto 35px; color: #e8fffc; font-size: 20px; line-height: 28px; }
.cta-button { display: inline-flex; align-items: center; justify-content: center; height: 68px; padding: 0 40px; border-radius: 999px; color: var(--navy); background: #fff; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); font-size: 18px; font-weight: 900; transition: transform .2s; }
.cta-button:hover { color: var(--navy); background: #fff; transform: scale(1.04); }

/* News */
.news-section { height: auto; min-height: 660px; padding-top: 80px; padding-bottom: 80px; background: #fff; }
.news-heading { min-height: 68px; margin-bottom: 34px; }
.news-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  min-width: 0;
}
.news-card img { width: 100%; height: 214px; border-radius: 14px; object-fit: cover; }
.news-meta { display: flex; align-items: center; gap: 17px; margin-top: 20px; color: #64748b; font-size: 11px; font-weight: 600; }
.news-meta span { color: var(--blue); font-weight: 700; text-transform: capitalize; }
.news-card h3 {
  display: -webkit-box;
  flex: 0 0 auto;
  height: 56px;
  overflow: hidden;
  margin: 10px 0 8px;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-card p {
  display: -webkit-box;
  flex: 0 0 auto;
  height: 40px;
  overflow: hidden;
  margin: 0 0 9px;
  color: #64748b;
  font-size: 13px;
  line-height: 20px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-card > a {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.news-card > a i {
  display: inline-block;
  margin-left: 3px;
  transition: transform .2s;
}
.news-card > a:hover i {
  transform: translateX(4px);
}

/* Footer */
.site-footer {
  padding-top: 64px;
  padding-bottom: 32px;
  color: #cbd5e1;
  background: linear-gradient(180deg, #168f87 0%, #116f6b 54%, #0b5d5b 100%);
}
.footer-main {
  display: grid;
  width: 100%;
  grid-template-columns: 268px 268px 584px;
  gap: 48px;
  margin: 0;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
.footer-main > [class*="col-"] {width: auto;/* max-width: none; *//* padding: 0; */}
.site-footer h3 { margin: 0 0 24px; color: #fff; font-size: 18px; font-weight: 700; line-height: 28px; }
.footer-brand {position: relative;}
.footer-brand > img {
  display: block;
  height: 63px;
  object-fit: cover;
  filter: none;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .11));
}
.footer-brand p {
  margin: 12px 0 24px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 22.75px;
}
.socials {/* position: absolute; *//* top: 179px; */left: 0;display: flex;gap: 16px;}
.socials a { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: #fff; background: #1e293b; font-weight: 700; transition: background .2s; }
.socials a:hover { background: var(--blue); }
.footer-links { display: block; }
.footer-links h3 { margin-bottom: 24px; }
.footer-links a { display: block; width: max-content; margin-bottom: 12px; color: #cbd5e1; font-size: 14px; line-height: 20px; }
.footer-links a::before { margin-right: 8px; content: "\203A"; }
.footer-links a:hover { color: #60a5fa; }
.address-card {padding: 16px;border: 1px solid rgba(51,65,85,.5);border-radius: 12px;background: rgba(30,41,59,.5);}
.address-card strong, .address-card span { display: block; }
.address-card strong { margin-bottom: 7px; color: #fff; font-size: 16px; line-height: 24px; }
.address-card strong i, .address-card span i { width: 18px; margin-right: 5px; color: #60a5fa; }
.address-card span { padding-left: 24px; color: #94a3b8; font-size: 13px; line-height: 20px; text-indent: -12px; }
.address-card.local { min-height: 86px; }
.footer-bottom {display: flex;align-items: flex-end;justify-content: space-between;margin-top: 48px;padding-top: 32px;border-top: 1px solid rgba(30, 41, 59, .72);color: #cbd5e1;font-size: 14px;}
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a:hover { color: #60a5fa; }

/* Utilities and interactions */
#backToTop { position: fixed; z-index: 20; right: 24px; bottom: 24px; display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 50%; opacity: 0; color: #fff; background: var(--teal); box-shadow: 0 8px 22px rgba(15,23,42,.18); pointer-events: none; transform: translateY(10px); transition: .2s; }
#backToTop.visible { opacity: 1; pointer-events: auto; transform: none; }
.modal-content { overflow: hidden; border: 0; border-radius: 16px; box-shadow: 0 24px 65px rgba(15,23,42,.2); }
.modal-header { color: #fff; border: 0; background: var(--teal); }
.modal-header .btn-close { filter: invert(1); }
.form-control:focus, .form-check-input:focus { border-color: var(--teal); box-shadow: 0 0 0 .25rem rgba(30,166,158,.15); }

@media (max-width: 1399.98px) {
  .header-container { padding: 0 20px; }
  .navbar-brand { margin-right: 20px; }
  .main-menu { gap: 5px; }
  .search-box { width: 180px; }
}

@media (max-width: 1199.98px) {
  .site-header, .site-header .navbar {  }
  main { padding-top: 72px; }
  .site-header .navbar { position: relative; }
  .header-container { position: relative;}
  .navbar-brand { width: auto; }
  .navbar-toggler {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    padding: 0;
    border-radius: 8px;
  }
  .navbar-toggler:hover { background: #f1f5f9; }
  .menu-icon { position: relative; display: block; width: 24px; height: 18px; }
  .menu-icon span {
    position: absolute;
    left: 0;
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #334155;
    transform-origin: center;
    transition: top .2s ease, transform .2s ease, opacity .15s ease;
  }
  .menu-icon span:nth-child(1) { top: 0; }
  .menu-icon span:nth-child(2) { top: 8px; }
  .menu-icon span:nth-child(3) { top: 16px; }
  .navbar-toggler[aria-expanded="true"] .menu-icon span:nth-child(1) { top: 8px; transform: rotate(45deg); }
  .navbar-toggler[aria-expanded="true"] .menu-icon span:nth-child(2) { opacity: 0; }
  .navbar-toggler[aria-expanded="true"] .menu-icon span:nth-child(3) { top: 8px; transform: rotate(-45deg); }
  .navbar-collapse {
    position: absolute;
    z-index: 30;
    top: 72px;
    right: -20px;
    left: -20px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    margin: 0;
    padding: 12px 20px 22px;
    border-top: 1px solid #edf1f3;
    background: #fff;
    box-shadow: 0 16px 20px rgba(15,23,42,.08);
    -webkit-overflow-scrolling: touch;
  }
  .navbar-collapse.collapsing {
    display: block;
    overflow: hidden;
    transition: height .22s ease;
    will-change: height;
  }
  .main-menu { padding-right: 20px; padding-left: 20px; }
  .main-menu .nav-link { padding: 9px 0 !important; }
  .main-menu .nav-link::after { display: none; }
  .header-actions { flex-wrap: wrap; padding: 10px 20px 0; }
  .search-box { width: 100%; }
  .courses-section, .events-section, .resource-section, .news-section, .site-footer {height: auto;}
  .courses-section, .events-section, .resource-section, .news-section { padding: 64px 0; }
  .courses-section { margin-top: 0; }
  .course-grid { row-gap: 26px !important; }
  .resource-section { min-height: 900px; }
  .news-section { min-height: 660px; }
  .site-footer {padding-top: 36px;padding-bottom: 24px;}
  .footer-main { grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr); gap: 48px; }
  .footer-main > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 991.98px) {
  .courses-section, .events-section, .resource-section, .news-section { padding-top: 56px; padding-bottom: 56px; }
}

@media (max-width: 767.98px) {
  .content-container { padding-right: 20px; padding-left: 20px; }
  .courses-section, .events-section, .resource-section, .news-section { padding-top: 48px; padding-bottom: 48px; }
  .hero-section { height: 560px; }
  .hero-copy { top: 45px; width: 94%; }
  .hero-copy h1 { font-size: clamp(20px, 5.4vw, 23px); line-height: 1.25; }
  .hero-brand { font-size: 42px; }
  .hero-illustration { top: 120px; width: 610px; height: 343px; }
  .hero-pattern { right: -90px; width: 280px; opacity: 0; visibility: hidden; }
  .hero-buttons { bottom: 28px; width: min(94%, 380px); gap: 8px; }
  .hero-buttons .btn { min-width: 0; height: 43px; flex: 1 1 0; padding: 0 12px; font-size: 12px; line-height: 1.2; }
  .stats-strip { height: 190px; }
  .stat-item { height: 70px; gap: 10px; margin-top: 14px; padding-left: 30px; }
  .stat-item:nth-child(3) { border-left: 0; }
  .stat-icon { width: 39px; height: 39px; font-size: 18px; }
  .stat-item strong { font-size: 16px; line-height: 22px; }
  .stat-item small { font-size: 11px; }
  .section-heading { min-height: 0 !important; align-items: flex-start; gap: 12px; margin-bottom: 25px; }
  .section-heading > div { min-width: 0; }
  .section-heading h2, .split-title h2 { font-size: 24px; line-height: 32px; }
  .section-heading p { font-size: 14px; line-height: 21px; }
  .view-all { margin-left: 12px; padding-top: 7px; font-size: 13px; white-space: nowrap; }
  .resource-layout { --bs-gutter-y: 3.5rem; }
  .hub-card { height: unset; }
  .hub-content { padding: 25px; }
  .cta-section { min-height: 400px; padding: 48px 16px; }
  .cta-section h2 { font-size: 34px; line-height: 1.15; }
  .cta-section p { font-size: 16px; line-height: 24px; }
  .cta-button { height: 58px; padding: 0 28px; font-size: 15px; }
  .news-card { margin-bottom: 25px; }
  .news-card img { height: 230px; }
  .footer-main { grid-template-columns: 1fr; gap: 12px; }
  .footer-main > :last-child { grid-column: auto; }
  .footer-bottom { height: auto; align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 35px; }
  .footer-bottom div { flex-direction: column; gap: 8px; }
  .footer-brand {
    /* height: 207.267px; */
    }
    .footer-brand p {
        top: 47.133px;
    }
    .socials {
        margin-bottom: 24px;
    }
}

@media (max-width: 399.98px) {
  .header-container { padding-right: 14px; padding-left: 14px; }
  .navbar-collapse { right: -14px; left: -14px; }
  .main-menu { padding-right: 14px; padding-left: 14px; }
  .header-actions { padding-right: 14px; padding-left: 14px; }
  .hero-buttons { width: calc(100% - 24px); justify-content: center; }
  .hero-buttons .btn { padding: 0 8px; font-size: 11.5px; }
  .resource-item { gap: 14px; }
  .resource-item > img, .resource-cover { width: 82px; flex-basis: 82px; }
  .resource-item span { font-size: 14px; line-height: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
