/* AOS (Animate On Scroll) — shared by home + advanced search; init in js/aos-init.js */
@import url("https://unpkg.com/aos@2.3.1/dist/aos.css");

:root {
  /* Brand colors — replace with exact hex from Figma */
  --footer-home-bg: #001d3d;
  --footer-home-link: #f4f4f280;
  --header-bg: #00558f;
  --header-height: 140px;
  --color-green: #00786b;
  --color-yellow: #cab526;
  --color-white: #ffffff;
  --color-black: #290800;
  --color-netural-light: #f4f4f2;
  --color-forrest: #233a37;
  --color-grey-light: #929291;
  --color-brand-green: #7ca665;
  --color-brand-gray: #494949;
  --color-neturals: #dcdcda;
  --color-orange: #8e8439;
  --color-greyish-beige: #ede8e5;
  --color-red: #ad4537;
  --color-light-orange: #f6921e;
  --color-netural-black: #313130;
  --color-deep-blue: #01375e;

  /* Typography */
  --font-body:
    "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-title: "Averia Serif Libre", serif;

  /* Layout */
  --container-max: 1200px;
  --section-y: clamp(3.5rem, 2.5rem + 4vw, 5.5rem);
  --section-y-sm: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  --radius-card: 14px;
  --radius-btn: 6px;
  --radius-pill: 999px;

  /* Body defaults (used sitewide) */
  --fs-body: 1rem;
  --lh-body: 1.5;
  --color-gray-700: #3a3a3a;
  --color-gray-100: #f5f5f5;
  --shadow-card: 0 0.5rem 1.5rem rgba(41, 8, 0, 0.12);
  --space-2: 0.5rem;

  /* Hero — adjust min-height to match Figma frame */
  --hero-min-height: clamp(22rem, 52vw, 38rem);
  --hero-content-pt: clamp(2.5rem, 6vw, 5rem);
  --hero-content-pb: clamp(6rem, 14vw, 9rem);
  --search-overlap: clamp(3rem, 8vw, 5rem);
}

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

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-gray-700);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* -------------------------------------------------------------------------- */
/* Layout helpers                                                             */
/* -------------------------------------------------------------------------- */

.container-site {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container-site {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-y {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section-y-sm {
  padding-top: var(--section-y-sm);
  padding-bottom: var(--section-y-sm);
}

.object-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

/* -------------------------------------------------------------------------- */
/* 1. Header / Navbar (WA DBCA-style)                                         */
/* -------------------------------------------------------------------------- */

.site-header {
  background-color: var(--header-bg);
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.navbar-toggler {
  background: var(--color-white);
  border-radius: 0;
}

.header-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: clamp(2rem, 8vw, 4.5rem);
}

.header-nav-link {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0px;
}

@media (max-width: 1090px) {
  .header-nav-link {
    font-size: 12px;
  }
  .header-logo-img {
    height: 100%;
    width: 370px;
  }
  .site-header {
    padding-bottom: 10px;
  }
}
@media (max-width: 1000px) {
  .header-logo-img {
    height: 100%;

    width: 100%;
  }
}

@media (max-width: 450px) {
  .header-logo-img {
    height: 100%;
    width: 200px;
  }
}
.header-nav-link:hover,
.header-nav-link:focus {
  color: var(--color-white);
}

.dropdown-toggle {
  display: flex;
  align-items: center;
}

.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  text-align: center;
  background-image: url("../assets/images/header-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
}


.navbar-expand-xl .navbar-nav .nav-link {
  color: var(--color-white);
}

.navbar-nav .nav-link.show {
  color: var(--color-white);
}

.mobile-nav {
  background-color: var(--header-bg);
  width: min(85vw, 340px);
}

.mobile-nav .offcanvas-body {
  padding: 20px;
}

.mobile-nav .nav-link {
  color: var(--color-white);
  padding: 12px 0;
}

@media (min-width: 992px) {
  .mobile-nav {
    position: static;
    transform: none !important;
    visibility: visible !important;
    width: 100%;
    background: transparent;
    border: 0;
  }

  .mobile-nav .offcanvas-header {
    display: none;
  }

  .mobile-nav .offcanvas-body {
    padding: 0;
    overflow: visible;
  }
}



/* -------------------------------------------------------------------------- */
/* Shared: search CTAs (home floating card + advanced search hero)            */
/* -------------------------------------------------------------------------- */

.btn-search {
  background-color: var(--color-yellow) !important;
  color: var(--color-netural-light);
  border: none !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem !important;
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  min-height: auto;
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.btn-search:hover {
  background-color: #d4bc2e !important;
  color: var(--color-netural-light);
}

.btn-clear-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: var(--color-yellow);
  background-color: transparent;
  border: 2px solid var(--color-yellow);
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn-clear-filter:hover {
  color: var(--color-netural-light);

  background-color: rgba(202, 181, 38, 0.28);
  border-color: var(--color-yellow);
}

@media (min-width: 768px) {
  .btn-search {
    padding: 0.75rem 2rem !important;
    border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  }
}

/* -------------------------------------------------------------------------- */
/* Header                                                                      */
/* -------------------------------------------------------------------------- */

.hero {
  min-height: var(--hero-min-height);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-swiper__pagination {
  bottom: 1.25rem !important;
  z-index: 2;
}

.hero-swiper__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-white);
  background: transparent;
  opacity: 0.65;
}

.hero-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--color-white);
  opacity: 1;
}

.hero-swiper__nav {
  color: var(--color-white);
  z-index: 2;
}

.hero-swiper__nav::after {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}

.hero .container-site {
  flex: 1;
  display: flex;
  align-items: flex-end;
  z-index: 3;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 555px;
  padding-top: var(--hero-content-pt);
  padding-bottom: var(--hero-content-pb);
  color: var(--color-white);
  pointer-events: auto;
}

.hero__title {
  font-family: var(--font-title);
  font-weight: 700;
  font-style: Bold;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 55px);
  line-height: 1.1;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.hero__lead {
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 24px);
  line-height: 140%;
  letter-spacing: 0px;
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  .hero-swiper__nav {
    display: none;
  }

  .hero-swiper__pagination {
    bottom: 0.75rem !important;
  }

  .hero-swiper__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .hero__img {
    object-position: center center;
  }
}
/* -------------------------------------------------------------------------- */
/* Footer & Header border Img                                                 */
/* -------------------------------------------------------------------------- */
.banner_border {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}
/* -------------------------------------------------------------------------- */
/* 10. Site footer (home — WA / Figma layout)                                 */
/* -------------------------------------------------------------------------- */

.site-footer-home {
  --footer-bg: var(--footer-home-bg);
  background-color: var(--footer-bg);
  color: #fff;
  font-family: var(--font-body);
}

.site-footer-home__inner {
  padding-top: clamp(2.5rem, 2rem + 2vw, 3.75rem);
  padding-bottom: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
}

.footer-home-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem 3rem;
}

.footer-home-top__left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: min(100%, 18rem);
}

.footer-home-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.5rem;
}

.footer-home-logo-img {
  display: block;
  height: auto;
  width: auto;
  max-height: 56px;
  max-width: min(280px, 100%);
}

.footer-home-logo-img:last-of-type {
  max-width: min(200px, 100%);
}

.footer-home-social {
  margin-top: 81px;
}
.footer-home-social-btn {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--footer-bg);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.footer-home-social-btn:hover {
  color: var(--footer-bg);
  opacity: 0.92;
  transform: translateY(-2px);
}

.footer-home-top__right {
  max-width: 331px;
  margin-left: auto;
}

.footer-home-cta-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 0;
}

.footer-home-cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
  color: #fff;
}

.footer-home-rule {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  border: 0;
  border-top: 1px solid var(--color-netural-light);
}

.footer-home-rule--subtle {
  margin-top: 2.5rem;
  margin-bottom: 1.75rem;
}

.footer-home-nav {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  justify-content: space-between;
  gap: 62px;
}
.footer-home-nav-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--color-netural-light);
  margin-bottom: 1rem;
}

.footer-home-nav-list li {
  margin-bottom: 0.65rem;
}

.footer-home-nav-list li:last-child {
  margin-bottom: 0;
}

.footer-home-nav-list a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--footer-home-link);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.footer-home-nav-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-home-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-netural-light);
  margin-top: 85px;
}

.footer-home-meta__left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 2.25rem;
  justify-self: start;
}

.footer-home-meta-link {
  color: var(--color-netural-light);

  text-decoration: none;
  white-space: nowrap;
}

.footer-home-meta-link:hover {
  text-decoration: underline;
  color: var(--color-netural-light);
}

.footer-home-meta__center {
  justify-self: center;
  text-align: center;
  color: var(--color-netural-light);
}

.footer-home-backtotop {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-netural-light);

  text-decoration: none;
  font-size: 15px;
  line-height: 150%;
}

.footer-home-backtotop:hover {
  color: var(--color-netural-light);
}

.footer-home-backtotop__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--footer-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .footer-home-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-home-top__right {
    text-align: left;
    margin-left: 0;
    max-width: 36rem;
  }
}

@media (max-width: 767px) {
  .footer-home-nav {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-home-meta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-home-meta__left {
    justify-content: center;
  }

  .footer-home-backtotop {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-home-social-btn:hover,
  .footer-home-backtotop:hover,
  .btn-find-volunteering:hover {
    transform: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Shared sections (home, advanced search, …)                                 */
/* -------------------------------------------------------------------------- */

.get-involved-section {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.get-involved-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/banner2.png");
  background-size: cover;
  max-height: 700px;
  z-index: 1;
}
.gi-bg2 { background-image: url("/web/sites/default/files/2026-06/get-involved-contact.jpg"); }

.get-involved-bg3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/banner3.png");
  background-size: cover;
  max-height: 700px;
  z-index: 1;
}

.get-involved-bg4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/banner4.png");
  background-size: cover;
  max-height: 700px;
  z-index: 1;
}

.get-involved-content {
  position: relative;
  z-index: 2;
  background: #ffffffb5;
  padding: 3rem;
  border-radius: 16px;
  max-width: 661px;
  margin-left: auto;
  margin-right: 0;
}

.get-involved-title {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1.2;
}

.get-involved-text {
  font-weight: 400;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-black);
  line-height: 1.6;
  max-width: 564px;
}

.btn-find-volunteering {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  background-color: var(--color-yellow);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 30px;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-find-volunteering:hover {
  background: #f0cd55;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-find-volunteering:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .get-involved-section {
    min-height: 600px;
  }

  .get-involved-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 2.5rem;
  }

  .get-involved-title {
    font-size: 2rem;
  }

  .get-involved-text {
    font-size: 1rem;
  }

  .btn-find-volunteering {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .get-involved-section {
    min-height: 500px;
  }

  .get-involved-content {
    max-width: 100%;
    padding: 2rem;
    margin-left: 0;
    margin-right: 0;
  }

  .get-involved-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .get-involved-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn-find-volunteering {
    width: 100%;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .get-involved-section {
    min-height: 400px;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .get-involved-content {
    padding: 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }

  .get-involved-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .get-involved-text {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .btn-find-volunteering {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

.acknowledgement-title {
  font-family: "Averia Serif Libre", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  text-align: center;
  color: var(--color-white);
  letter-spacing: 0;
  margin-bottom: 10px;
}

.acknowledgement-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: var(--color-white);
  letter-spacing: 0;
  margin: 0 auto;
  max-width: 760px;
}

.acknowledgement-section {
  background-color: var(--color-orange);
  min-height: 314px;
  padding: 61px 16px 81px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acknowledgement-section .col-12 {
  max-width: 760px;
}

@media (max-width: 768px) {
  .acknowledgement-section {
    min-height: auto;
    padding: 48px 20px;
  }

  .acknowledgement-title {
    font-size: 24px;
  }

  .acknowledgement-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .acknowledgement-section {
    padding: 40px 16px;
  }

  .acknowledgement-title {
    font-size: 22px;
  }

  .acknowledgement-text {
    font-size: 15px;
  }
}

/* -------------------------------------------------------------------------- */
/*  Child Container                                                           */
/* -------------------------------------------------------------------------- */

.child-container {
  margin-top: 48px;
}

.child-container .item-group {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.item-group:nth-child(1) {
  animation-delay: 0.1s;
}
.item-group:nth-child(2) {
  animation-delay: 0.2s;
}
.item-group:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.child-container .item-group-icon {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px;
  object-fit: contain;
  flex: 0 0 24px;
}

.child-container .item-group p {
  margin: 0;
  color: var(--color-brand-gray);
  font-size: 18px;
  line-height: 150%;
}

.child-container .item-group strong {
  font-weight: 700;
  margin-right: 4px;
  color: var(--color-brand-gray);
}

.group-title {
  margin-bottom: 16px;
  color: var(--color-brand-green);
  font-family: var(--font-title);
  font-weight: 700;
  /* font-size: clamp(24px, 4vw, 36px); */
  font-size: 36px;
  line-height: 1.2;
  /* white-space: nowrap; */
  max-width: 100%;
}
.group-title--child {
  color: var(--color-orange);
  font-size: 30px;
}

.group-title--text {
  max-width: auto;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-netural-black);
  letter-spacing: 0px;
}

.section-heading {
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-brand-green);
  margin-bottom: 24px;
  margin-bottom: 16px;
}

/* -------------------------------------------------------------------------- */
/* Case studies section                                                    */
/* -------------------------------------------------------------------------- */

.case-studies-section {
  background: #f5f2ee !important;
  min-height: 767.5px;
  box-sizing: border-box;
}

.case-studies-section__inner {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.case-studies-section__title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 44px;
  line-height: 120%;
  letter-spacing: 0;
  color: var(--color-green);
  margin-bottom: 2.5rem;
  vertical-align: middle;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 368px);
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.case-study-card {
  width: 368px;
  height: 388px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(41, 8, 0, 0.06);
  border: 1px solid rgba(41, 8, 0, 0.06);
}

.case-study-card__media {
  flex: 0 0 182px;
  position: relative;
  overflow: hidden;
  background-color: #e8e4df;
}

.case-study-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 206px;
  object-fit: cover;
}

.case-study-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 24px;
}

.case-study-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: 0;
  color: var(--color-green);
  margin: 0 0 0.75rem;
  vertical-align: middle;
}

.case-study-card__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
  color: #494949;
  margin: 0;
  vertical-align: middle;
}

.case-studies-section__see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #5c4a3a;
  text-decoration: none;
}

.case-studies-section__see-all:hover {
  color: #3d3228;
  text-decoration: underline;
}

.case-studies-section__see-all-icon {
  display: block;
  flex-shrink: 0;
  width: 11px;
  height: 16px;
  max-height: 20px;
  object-fit: contain;
  transform: rotate(-90deg);
}

@media (max-width: 1220px) {
  .case-studies-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-study-card {
    width: 100%;
    height: auto;
    min-height: 388px;
  }
}

@media (max-width: 991px) {
  .case-studies-section__title {
    font-size: clamp(2rem, 1.5rem + 2vw, 44px);
    margin-bottom: 2rem;
  }

  .case-studies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .case-study-card {
    min-height: 0;
  }

  .case-study-card__media {
    flex-basis: min(182px, 42vw);
    min-height: 160px;
  }
}

@media (max-width: 639px) {
  .case-studies-section {
    min-height: 0;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 368px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
  }

  .case-study-card {
    max-width: 368px;
  }

  .case-study-card__media {
    flex-basis: 182px;
    min-height: 182px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-studies-section__see-all:hover {
    text-decoration: underline;
  }
}
/* -------------------------------------------------------------------------- */
/* Common border                                                              */
/* -------------------------------------------------------------------------- */

.with-border {
  border-bottom: 1px solid var(--color-neturals);
}
