.fpg-page * {
  box-sizing: border-box;
}

.fpg-page img {
  max-width: 100%;
  display: block;
}

.fpg-page a {
  text-decoration: none;
}

.fpg-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.fpg-hero {
  padding: 32px 24px 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.fpg-hero__img {
  width: 100%;
  border-radius: 10px;
}

/* ============================================================
   INTRO
   ============================================================ */
.fpg-intro {
  padding: 28px 0 8px 0;
}

.fpg-intro__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #2A2A2A;
  margin: 0 auto;
  max-width: 88%;
}

/* ============================================================
   FILTER PILLS
   ============================================================ */
.fpg-filters {
  padding: 20px 0 12px 0;
}

.fpg-filters__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fpg-filters__btn {
  display: inline-block;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #2A2A2A;
  background: #ffffff;
  border: 1px solid #D8D8D8;
  border-radius: 30px;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.fpg-filters__btn:hover {
  background: #FDF3E1;
  border-color: #E8A33D;
}

/* ============================================================
   CARDS GRID
   ============================================================ */
.fpg-cards {
  padding: 24px 0 80px 0;
}

.fpg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fpg-card {
  background: #FDF3E1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.fpg-card__photo {
  width: 100%;
  height: 166px;
  object-fit: cover;
}

.fpg-card__accent {
  height: 8px;
}

.fpg-card__body {
  padding: 24px;
}

.fpg-card__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #A02B2B;
  margin: 0 0 12px 0;
}

.fpg-card__desc {
  font-size: 17px;
  line-height: 1.6;
  color: #000;
  margin: 0 0 18px 0;
}

.fpg-card__pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.fpg-pill a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  background: #F6D88C;
  border-radius: 30px;
  line-height: 1.3;
}
/* Headings — serif, matches the classic "Fall Program Guide" look */
.fpg-card__title {
  /*font-family: 'Source Sans 3';*/
}

/* Body text — clean sans-serif for readability */
.fpg-intro__text,
.fpg-card__desc,
.fpg-filters__btn,
.fpg-pill {
  /*font-family: 'Source Sans 3', -apple-system, sans-serif;*/
}
#fpg-become-member .fpg-card__pills {
    display: block;
}
.ft-bold {
    font-weight: 700;
}
/* ============================================================
   RESPONSIVE
   Wireframe note: 2 columns under ~860px, adjust once real
   photography/copy is in. Card grid itself stays 2-up per the
   final design reference at all sizes above mobile.
   ============================================================ */
@media (max-width: 860px) {
  .fpg-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .fpg-card__pills {
    grid-template-columns: 1fr;
  }

  .fpg-hero {
    padding: 20px 16px 0 16px;
  }
}
