@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
section {
  box-sizing: border-box;
  padding: 64px 32px;
}
@media (min-width: 768px) {
  section {
    padding: 96px 32px;
  }
}

ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

h3 {
  font-family: "Roboto", sans-serif;
}

/**
 * Shared Embla Carousel Styles
 * Unified navigation arrows and dots styling for all carousels
 */
.embla {
  position: relative;
}

.embla__viewport {
  overflow: hidden;
}

.embla__container {
  display: flex;
  gap: 1.5rem;
}

.embla__navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  padding-top: 16px;
  margin-bottom: 32px;
}
.embla__navigation--hidden {
  display: none;
}

.embla__button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 4px;
  border: none;
  color: #09090B;
  cursor: pointer;
  transition: all 0.2s;
}
.embla__button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.embla__button svg {
  width: 16px;
  height: 16px;
}
.embla__button--hidden {
  display: none;
}

.embla__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.embla__dots--hidden {
  display: none;
}

.embla__dot {
  width: 8px;
  height: 8px;
  background-color: rgba(24, 24, 27, 0.3019607843);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.embla__dot:hover {
  background-color: #A2A4A3;
}
.embla__dot--selected {
  background-color: #18181B !important;
}

.embla[data-items="1"] .embla__navigation,
.embla[data-items="1"] .embla__dots {
  display: none;
}

@media (min-width: 768px) {
  .embla[data-items="2"] .embla__navigation,
  .embla[data-items="2"] .embla__dots {
    display: none;
  }
}

@media (min-width: 1140px) {
  .embla[data-items="3"] .embla__navigation,
  .embla[data-items="3"] .embla__dots {
    display: none;
  }
}

.hoekstra-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 161px;
  width: fit-content;
  box-sizing: border-box;
  white-space: nowrap;
}
.hoekstra-button__text {
  line-height: 18px;
}
.hoekstra-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hoekstra-button__icon svg {
  width: 16px;
  height: 16px;
}
.hoekstra-button--dark.hoekstra-button--primary {
  background-color: #8EA604;
  color: #101820;
  border-color: #8EA604;
}
.hoekstra-button--dark.hoekstra-button--primary:hover {
  background-color: #809410;
  border-color: #809410;
  text-decoration: underline;
}
.hoekstra-button--dark.hoekstra-button--secondary {
  background-color: transparent;
  color: #8EA604;
  border-color: #8EA604;
}
.hoekstra-button--dark.hoekstra-button--secondary:hover {
  background-color: #809410;
  color: #101820;
  text-decoration: underline;
}
.hoekstra-button--light.hoekstra-button--primary {
  background-color: #1A535C;
  color: #ffffff;
  border-color: #1A535C;
}
.hoekstra-button--light.hoekstra-button--primary:hover {
  background-color: #07272C;
  border-color: #07272C;
  text-decoration: underline;
}
.hoekstra-button--light.hoekstra-button--secondary {
  background-color: transparent;
  color: #1A535C;
  border-color: #1A535C;
}
.hoekstra-button--light.hoekstra-button--secondary:hover {
  background-color: #07272C;
  color: #ffffff;
  text-decoration: underline;
}

.button-group {
  display: inline-flex;
  gap: 16px;
}

/**
 * Card Carousel Styles
 * Using Embla Carousel - 4 per view desktop, 1 per view mobile
 */
.card-carousel {
  width: 100%;
  background-color: #ffffff;
  overflow-x: hidden;
}

.card-carousel__container {
  max-width: 1280px;
  margin: 0 auto;
}

.card-carousel__embla {
  position: relative;
}

.card-carousel__viewport {
  overflow: hidden;
}

.card-carousel__container-slides {
  display: flex;
  gap: 1.5rem;
}

.card-carousel__slide {
  flex: 0 0 85%;
  min-width: 0;
}
@media (min-width: 768px) {
  .card-carousel__slide {
    flex: 0 0 calc((100% - 1.5rem) / 2.15);
  }
}
@media (min-width: 1024px) {
  .card-carousel__slide {
    flex: 0 0 calc((100% - 4.5rem) / 4.15);
  }
}

.card-carousel__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.card-carousel__card-image {
  width: 100%;
  height: 288px;
  overflow: hidden;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .card-carousel__card-image {
    height: 384px;
  }
}
.card-carousel__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.card-carousel__card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.card-carousel__card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #09090B;
  margin: 0;
  text-transform: uppercase;
}

.card-carousel__card-description {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #61676B;
  flex: 1;
}
.card-carousel__card-description p {
  margin: 0 0 0.75rem 0;
}
.card-carousel__card-description p:last-child {
  margin-bottom: 0;
}
.card-carousel__card-description a {
  color: #1A535C;
  text-decoration: underline;
  transition: color 0.2s;
}
.card-carousel__card-description a::after {
  content: " →";
}

.card-carousel__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1A535C;
  text-decoration: underline;
  transition: color 0.2s;
  margin-top: auto;
  padding-top: 4px;
}
.card-carousel__card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.card-carousel__card-link:hover {
  color: rgb(37.2372881356, 118.8728813559, 131.7627118644);
}
.card-carousel__card-link:hover svg {
  transform: translateX(4px);
}

/*# sourceMappingURL=card-carousel.css.map */
