@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Vollkorn:wght@600;700&display=swap);


/* ─── Card Shell ─── */
.hlc {
  background-color: var(--colors--light);
  border-radius: var(--radius--medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background-color 300ms ease;
}

.hlc:hover {
  background-color: var(--colors--light-purple);
}

/* ─── Product Screenshot ─── */
.hlc__image-wrap {
  width: 100%;
  padding: 32px 32px 0;
  box-sizing: border-box;
}

.hlc__image {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  outline: none;
  border-radius: calc(var(--radius--medium) - 4px);
}

/* ─── Copy + CTA ─── */
.hlc__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.hlc__title {
  font-family: var(--font--secondary-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  color: var(--colors--dark);
  margin: 0;
}

.hlc__desc {
  font-family: var(--font--primary-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--colors--dark);
  margin: 0;
}

/* ─── CTA Button ─── */
.hlc__cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background-color: var(--colors--dark);
  color: var(--colors--light);
  font-family: var(--font--primary-family);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius--round);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 150ms ease, color 300ms ease-out;
}

.hlc__cta:hover {
  background-color: rgba(39, 29, 59, 0.82);
}

/* ─── Section Shell ─── */
.hlcs {
  width: 100%;
  padding: 80px 2rem;
  box-sizing: border-box;
}

.hlcs__inner {
  max-width: 85rem;
  margin: 0 auto;
}

/* ─── Heading ─── */
.hlcs__heading {
  font-family: var(--font--secondary-family);
  font-weight: 700;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--colors--dark);
  text-align: center;
  margin: 0 0 48px;
}

/* ─── Two-up Grid ─── */
.hlcs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ─── Responsive: Tablet / Mobile ─── */
@media (max-width: 768px) {
  .hlcs {
    padding: 56px 1.25rem;
  }

  .hlcs__grid {
    grid-template-columns: 1fr;
  }
}

