/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

/* Typography Reset */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

p, ul, ol, dl, blockquote, pre {
  margin-bottom: 0;
}

/* Link Reset */
a {
  color: inherit;
  text-decoration: none;
}

/* List Reset */
ul, ol {
  list-style: none;
}

/* Form Reset */
button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

input, textarea, select {
  border: none;
  background: transparent;
}

/* Image Reset */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Table Reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Misc Reset */
article, aside, footer, header, nav, section {
  display: block;
}

body {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgb(34, 34, 34);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.65;
}

.heading-display {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

.heading-xxl {
  font-size: 2.25rem;
  line-height: 1.1;
}

.heading-xl {
  font-size: 2rem;
  line-height: 1.1;
}

.heading-lg {
  font-size: 2.5rem;
  line-height: 1.1;
}

.heading-md {
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1.1;
}

.heading-sm {
  font-size: 1.5rem;
  line-height: 1.1;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #13603f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-thickness 0.2s ease, text-underline-offset 0.2s ease;
}
a:hover {
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-fluid {
  max-width: 100%;
  padding: 0;
}

.grid-col-1 {
  grid-column: span 1;
}
.grid-col-2 {
  grid-column: span 2;
}
.grid-col-3 {
  grid-column: span 3;
}
.grid-col-4 {
  grid-column: span 4;
}
.grid-col-5 {
  grid-column: span 5;
}
.grid-col-6 {
  grid-column: span 6;
}
.grid-col-7 {
  grid-column: span 7;
}
.grid-col-8 {
  grid-column: span 8;
}
.grid-col-9 {
  grid-column: span 9;
}
.grid-col-10 {
  grid-column: span 10;
}
.grid-col-11 {
  grid-column: span 11;
}
.grid-col-12 {
  grid-column: span 12;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-col-6 {
    grid-column: span 6;
  }
}
@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid-col-1, .grid-col-2, .grid-col-3, .grid-col-4, .grid-col-5, .grid-col-6, .grid-col-7, .grid-col-8, .grid-col-9, .grid-col-10, .grid-col-11, .grid-col-12 {
    grid-column: span 1;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 24px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
  }
}
.btn--primary {
  color: #ffffff;
  background-color: #13603f;
  border-color: #13603f;
}
.btn--primary:hover {
  color: #13603f;
  background: transparent;
  border-color: #13603f;
}
.btn--secondary {
  color: #ffffff;
  background-color: #e83b3a;
  border-color: #e83b3a;
}
.btn--secondary:hover {
  color: #e83b3a;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn--outline {
  color: #13603f;
  background-color: transparent;
  border-color: #13603f;
}
.btn--outline:hover {
  color: #ffffff;
  background-color: #13603f;
}
.btn--white {
  color: red;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn--white:hover {
  color: #fff !important;
  background-color: red;
}
.btn--green {
  color: #ffffff;
  background-color: green;
  border-color: green;
}
.btn--green:hover {
  color: green !important;
  background-color: #ffffff;
  border-color: green;
}
.btn-link {
  padding: 0;
  color: #ffffff;
  background-color: transparent;
  border-color: transparent;
  font-weight: 400;
}
.btn-link:hover {
  color: #13603f;
  text-decoration: underline;
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5em;
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}
.btn-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.wysiwyg a {
  color: #13603f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-thickness 0.2s ease, text-underline-offset 0.2s ease;
}
.wysiwyg a:hover {
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.wysiwyg ul,
.wysiwyg ol {
  margin: 0 0 1.5rem 1.5rem;
  padding-left: 1.5rem;
}
.wysiwyg ul {
  list-style: disc;
}
.wysiwyg ol {
  list-style: decimal;
}
.wysiwyg li + li {
  margin-top: 0.5rem;
}
.wysiwyg blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid #13603f;
  font-style: italic;
  color: #374151;
}
.wysiwyg hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.header {
  background: #FAF8F3;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  z-index: 20;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo img {
  display: block;
  height: 52px;
  width: auto;
}

.main-nav {
  margin-left: auto;
}

.menu-toggle {
  display: none;
}

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

.nav-item {
  position: relative;
}

.nav-item__top {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}
.nav-link:hover, .nav-link:focus-visible {
  background: #cbefdc;
  color: #13603f;
}

.nav-toggle {
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: #374151;
  text-decoration: none;
}
.dropdown-link:hover, .dropdown-link:focus-visible {
  background: #f3f4f6;
  color: #13603f;
}

.nav-item--has-children:hover > .dropdown-menu,
.nav-item--has-children:focus-within > .dropdown-menu,
.nav-item--has-children.is-open > .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  padding: 0.65rem 1.15rem;
  border-radius: 9999px;
  background: #13603f;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.header-cta:hover, .header-cta:focus-visible {
  background: rgb(5.4683716965%, 27.6296675192%, 18.1319693095%);
  color: #ffffff;
}

@media (max-width: 768px) {
  .header .container {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0.5rem;
  }
  .logo {
    margin-right: auto;
  }
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background: #ffffff;
    cursor: pointer;
  }
  .menu-toggle__line {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: #374151;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .menu-toggle.is-open .menu-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-toggle.is-open .menu-toggle__line:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-open .menu-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .main-nav {
    order: 4;
    flex-basis: 100%;
    margin-left: 0;
    display: none;
  }
  .main-nav.is-open {
    display: block;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header-cta {
    margin-left: 0.5rem;
  }
  .nav-item {
    border-top: 1px solid #e5e7eb;
  }
  .nav-item__top {
    justify-content: space-between;
  }
  .nav-link {
    width: 100%;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 9999px;
    background: transparent;
    color: #374151;
    cursor: pointer;
  }
  .nav-toggle__icon {
    width: 0.6rem;
    height: 0.6rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
  }
  .nav-item--has-children.is-open .nav-toggle__icon {
    transform: rotate(-135deg) translateY(-1px);
  }
  .dropdown-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0 0 0.5rem 1rem;
    padding: 0;
    border: 0;
    border-left: 2px solid #cbefdc;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: max-height 0.25s ease;
  }
  .nav-item--has-children:hover > .dropdown-menu,
  .nav-item--has-children:focus-within > .dropdown-menu {
    max-height: 0;
  }
  .nav-item--has-children.is-open > .dropdown-menu {
    max-height: 500px;
    padding-top: 0.25rem;
  }
}
.footer {
  margin-top: 4rem;
  padding: 3rem 0 1.5rem;
  background: #111827;
  color: #e5e7eb;
}
.footer a {
  color: #f3f4f6;
  text-decoration: none;
}
.footer a:hover, .footer a:focus-visible {
  color: #cbefdc;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__logo img {
  display: block;
  height: 56px;
  width: auto;
  border-radius: 0.25rem;
}
.footer__address {
  margin: 0;
  font-style: normal;
  color: #d1d5db;
  line-height: 1.5;
}
.footer__sub {
  margin: 0;
  color: #cbefdc;
  font-weight: 600;
}
.footer__menu, .footer__legal-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__menu-link, .footer__legal-link {
  font-weight: 500;
}
.footer__socials {
  margin-left: auto;
}
.footer .socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}
.footer .socials__button {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 9999px;
  color: #ffffff;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.footer .socials__button:hover, .footer .socials__button:focus-visible {
  border-color: #cbefdc;
  background: rgba(203, 239, 220, 0.12);
  color: #cbefdc;
}
.footer .socials__icon {
  width: 1.1rem;
  height: 1.1rem;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.footer__legal {
  margin: 0;
  color: #9ca3af;
  font-size: 0.875rem;
}
.footer__legal-menu {
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .footer__top, .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__socials {
    margin-left: 0;
  }
  .footer__menu, .footer__legal-menu {
    gap: 0.5rem 1rem;
  }
}
.section {
  padding-block: 5rem;
}
@media (max-width: 768px) {
  .section {
    padding-block: 3rem;
  }
}

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

.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2744;
  position: relative;
}
.section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: #e83b3a;
  border-radius: 9999px;
  margin-top: 0.5rem;
}

.section__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #13603f;
  text-decoration: none;
  white-space: nowrap;
}
.section__link:hover {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.03em;
}
.btn--primary {
  background: #e83b3a;
  color: #ffffff;
  border-color: #e83b3a;
}
.btn--primary:hover {
  background: #c42f2e;
  border-color: #c42f2e;
}
.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}
.btn--white {
  background: #ffffff;
  color: #1a2744;
  border-color: #ffffff;
}
.btn--white:hover {
  background: #d6e8f7;
  border-color: #d6e8f7;
}

.hero {
  position: relative;
  background: linear-gradient(rgba(26, 39, 68, 0.76), rgba(26, 39, 68, 0.76)), url("../images/adfundum.jpg") center/cover no-repeat;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19, 96, 63, 0.18) 0%, transparent 50%), linear-gradient(225deg, rgba(232, 59, 58, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-block: 6rem 4rem;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.hero__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #468DD3;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.9rem;
  border: 1.5px solid rgba(70, 141, 211, 0.4);
  border-radius: 9999px;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 2rem;
}

.hero__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__stripe {
  position: absolute;
  bottom: 0;
  height: 5px;
}
.hero__stripe--red {
  left: 0;
  width: 40%;
  background: #e83b3a;
}
.hero__stripe--green {
  left: 40%;
  width: 60%;
  background: #13603f;
}

.nieuws {
  background: #ffffff;
}

.nieuws__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .nieuws__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .nieuws__grid {
    grid-template-columns: 1fr;
  }
}

.nieuws__card {
  display: flex;
  flex-direction: column;
  background: #f9fafb;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nieuws__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 39, 68, 0.12);
}
.nieuws__card--featured {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .nieuws__card--featured {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .nieuws__card--featured {
    grid-column: 1/-1;
  }
}
.nieuws__card--featured .nieuws__card-img {
  height: 100%;
  min-height: 280px;
}
@media (max-width: 768px) {
  .nieuws__card--featured .nieuws__card-img {
    height: 220px;
  }
}
.nieuws__card--featured h3 {
  font-size: 1.5rem;
}

.nieuws__card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.nieuws__card-img--1 {
  background: linear-gradient(135deg, #1a2744 0%, #2a5f99 100%);
}
.nieuws__card-img--2 {
  background: linear-gradient(135deg, #0f4d31 0%, #13603f 100%);
}
.nieuws__card-img--3 {
  background: linear-gradient(135deg, #b82e2d 0%, #e83b3a 100%);
}

.nieuws__card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.nieuws__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #13603f;
  background: rgba(19, 96, 63, 0.1);
  border-radius: 9999px;
  padding: 0.2rem 0.7rem;
  align-self: flex-start;
}

.nieuws__card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2744;
  margin-block: 0.25rem;
}
.nieuws__card h3 a {
  color: inherit;
  text-decoration: none;
}
.nieuws__card h3 a:hover {
  color: #e83b3a;
}

.nieuws__card p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.65;
  flex: 1;
}

.nieuws__read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e83b3a;
  text-decoration: none;
  margin-top: auto;
}
.nieuws__read-more:hover {
  text-decoration: underline;
}

.overons {
  background: #FAF8F3;
}

.overons__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .overons__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.overons__visual {
  position: relative;
}

.overons__photo-frame {
  position: relative;
  border-radius: 0.75rem;
  overflow: visible;
}
.overons__photo-frame::before {
  content: "";
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 3px solid #e83b3a;
  border-radius: 0.75rem;
  z-index: 0;
}

.overons__photo-placeholder {
  position: relative;
  z-index: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 39, 68, 0.2);
}
.overons__photo-placeholder svg {
  display: block;
  width: 100%;
  height: auto;
}

.overons__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  z-index: 2;
  background: #13603f;
  color: #ffffff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(19, 96, 63, 0.4);
}
.overons__badge .overons__badge-year {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}
.overons__badge strong {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.overons__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e83b3a;
  margin-bottom: 1rem;
}

.overons__content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .overons__content h2 {
    font-size: 1.5rem;
  }
}
.overons__content p {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.overons__stats {
  display: flex;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 3rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 2rem;
}
.overons__stats li {
  display: flex;
  flex-direction: column;
}
.overons__stats strong {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2744;
  line-height: 1;
}
.overons__stats span {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.lid-cta {
  background: linear-gradient(135deg, #1a2744 0%, #111d35 100%);
  padding-block: 5rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .lid-cta {
    padding-block: 3.5rem;
  }
}

.lid-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
}

.lid-cta__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.lid-cta__sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.lid-cta__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lid-cta__circle {
  position: absolute;
  border-radius: 50%;
}
.lid-cta__circle--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 59, 58, 0.15) 0%, transparent 70%);
  top: -120px;
  right: -80px;
}
.lid-cta__circle--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(19, 96, 63, 0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -60px;
}

.team-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-inline: 1.75rem;
}
@media (max-width: 768px) {
  .team-content {
    margin-bottom: 7rem;
  }
}
.team-content p {
  color: #ffffff;
}

.team-row {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  flex: 1 1 auto;
}
@media (max-width: 768px) {
  .team-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.team-row .image {
  flex: 0 0 33.333%;
}
@media (max-width: 768px) {
  .team-row .image {
    flex: 0 0 100%;
    max-width: 28rem;
    width: 100%;
    margin-inline: auto;
  }
}
.team-row .image img {
  width: 100%;
  height: auto;
  display: block;
}
.team-row .text {
  flex: 1 1 66.667%;
}
@media (max-width: 768px) {
  .team-row .text {
    flex: 1 1 100%;
  }
}
.team-row .text h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .team-row .text h2 {
    margin-bottom: 1rem;
  }
}
.team-row .text p {
  color: #ffffff;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.socials .socials__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #e83b3a;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.socials .socials__button:hover, .socials .socials__button:focus-visible {
  color: #13603f;
  transform: translateY(-1px);
}
.socials .socials__button:active {
  transform: translateY(0);
}

.socials .socials__icon {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
}

.socials .socials__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/*# sourceMappingURL=style.css.map */
