:root {
  --ffc-bg: #fff;
  --ffc-text: #122029;
  --ffc-muted: #506270;
  --ffc-rule: #e8eef2;
  --ffc-shadow: 0 1px 2px rgba(16, 24, 40, 0.06),
    0 1px 3px rgba(16, 24, 40, 0.1);
  --ffc-radius: 12px;
}

.ffc-card {
  display: block;
  text-decoration: none;
  color: inherit;
  font-family: "Inter", Sans-serif;
  font-size: 18px;
}
.ffc-card__wrap {
  background: var(--ffc-bg);
  border-radius: var(--ffc-radius);
  box-shadow: var(--ffc-shadow);
  overflow: hidden;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .ffc-card__wrap {
    grid-template-columns: 1fr 1.618fr;
  }
}
.ffc-card__image {
  height: 280px;
  background: #ddd;
}
.ffc-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .ffc-card__image {
    height: 100%;
    min-height: 520px;
  }
}

.ffc-card__content {
  padding: 3rem;
  max-width: 48rem;
}
.ffc-card__content > .inner {
  max-width: 620px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ffc-card__title {
  font-family: "Playfair Display", sans-serif;
  font-weight: 700;
  margin: 0 0 14px 0;
}
.ffc-card__desc {
  font-family: "Inter", Sans-serif;
  margin: 0 0 18px 0;
  color: var(--ffc-muted);
}

.ffc-card__rule {
  border: 0;
  height: 1px;
  background: rgb(202, 210, 218) !important;
  margin: auto 0 18px 0 !important;
  width: 100% !important;
}

.ffc-specs {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 14px;
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}
@media (min-width: 640px) {
  .ffc-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.ffc-spec {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
}
.ffc-spec__icon svg {
  display: block;
}
.ffc-spec__text {
  display: grid;
  line-height: 1.2;
}
.ffc-spec__value {
  font-weight: 600;
  color: var(--ffc-text);
}
.ffc-spec__label {
  font-size: 12px;
  color: var(--ffc-muted);
}

.ffc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
  padding: 18px 15px 15px 20px;
  border-radius: 10px;
  background: rgb(91, 126, 160);
  color: white;
  text-decoration: none;
}
.ffc-card:hover .ffc-card__cta {
  background: rgb(78, 107, 136);
}
.ffc-card__cta svg {
  display: block;
}
