/* ================================================
   Patient Forms Page — Unique CSS
   Page: /new-patients/patient-forms/ (ID 27402407)
   Extracted from: page-general.css (Anchor Corps theme)
   ================================================ */

/* ── Form download cards grid ── */
.ac-forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin: 40px 0 0;
}

/* ── Form card base ── */
.ac-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.ac-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
}

/* ── Icon ── */
.ac-form-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(45,150,235,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ac-form-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--theme-main);
}

/* ── Title ── */
.ac-form-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-dark);
  margin: 0 0 8px;
}

/* ── Description ── */
.ac-form-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 20px;
}

/* ── Download link ── */
.ac-form-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-main);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: gap .2s;
}
.ac-form-card__link:hover {
  gap: 12px;
}
.ac-form-card__link svg {
  width: 16px;
  height: 16px;
}

/* ── Featured variant ── */
.ac-form-card--featured {
  border: 2px solid var(--theme-main);
  background: linear-gradient(135deg, rgba(45,150,235,.03), rgba(45,150,235,.08));
}
.ac-form-card--featured .ac-form-card__icon {
  background: var(--theme-main);
}
.ac-form-card--featured .ac-form-card__icon svg {
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .ac-forms-grid {
    grid-template-columns: 1fr;
  }
}
