@charset "UTF-8";
/* CARDS */
.l-cards {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.c-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  margin-top: 20px;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  background-color: white;
  border: 1px solid var(--color-dark);
  /* Mint Shadow */
  box-shadow: 0 8px 60px rgba(10, 195, 133, 0.22);
}

.c-card__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.c-card__tagline {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #141414;
}

/* swipe card text css */
.c-card__title {
  font-size: 36px;
  color: #3a7242;
}

.c-card__excerpt {
  font-size: 16px;
  line-height: 1.6;
}

.c-card__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.c-card__cta a {
  width: -moz-max-content;
  width: max-content;
  padding: 12px 24px;
  border: 1px solid black;
  color: black;
  font-size: 16px;
  text-decoration: none;
}

.c-card__figure {
  position: relative;
  overflow: hidden;
}

.c-card__figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.spacer {
  width: 100%;
  height: 100vh;
}

strong {
  color: #397141;
}

/* ── Card Responsive Fix ── */
/* Tablets */
@media (max-width: 992px) {
  .c-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }
  .c-card__description {
    padding: 32px;
  }
  .c-card__figure {
    height: 360px;
    position: relative;
  }
  .c-card__figure img {
    position: relative;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .l-cards {
    padding: 0 16px;
  }
  .c-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    margin-bottom: 40px;
  }
  .c-card__description {
    padding: 24px 20px;
  }
  .c-card__tagline {
    font-size: 14px;
  }
  .c-card__title {
    font-size: 26px;
    margin: 10px 0;
  }
  .c-card__excerpt {
    font-size: 15px;
    line-height: 1.6;
  }
  .c-card__figure {
    height: 260px;
  }
  .c-card__figure img {
    position: relative;
    height: 100%;
  }
}/*# sourceMappingURL=card.css.map */