.l-cards {
    width: 100%;
    max-width: 1200px;
    margin: -30px 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);
}
.c-card .c-card__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.c-card .c-card__description .c-card__tagline {
  font-size: 35px;
  font-weight: 600;
  text-transform: uppercase;
}
.c-card .c-card__description .c-card__title {
  font-size: 36px;
}
.c-card .c-card__description .c-card__excerpt {
  font-size: 16px;
  line-height: 1.6;
}
.c-card .c-card__description .c-card__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.c-card .c-card__description .c-card__cta a {
  width: max-content;
  padding: 12px 24px;
  border: 1px solid black;
  color: black;
  font-size: 16px;
  text-decoration: none;
}
.c-card .c-card__figure {
  position: relative;
  overflow: hidden;
}
.c-card .c-card__figure img {
    position: absolute;
    width: 100%;
    object-fit: cover;
}

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