/* ===========================
   InFocus Page (Mobile XL)
   =========================== */

.page-section {
  width: 100%;
  padding: 3rem 2rem;
  margin: 0 auto 3rem;
  box-sizing: border-box;
}

/* Header section with thin strip image */
.InFocus-header {
  text-align: center;
}

.InFocus-header .section-image {
  width: 100%;
  height: 120px;                /* thin decorative strip */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-bottom: 2rem;
}

.InFocus-header .section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;      /* bias crop to the center */
  display: block;
}

.InFocus-header .overlay-text {
  position: relative;           /* sits below the strip */
  background: rgba(255,255,255,0.95);
  padding: 2rem 2.5rem;
  border-radius: 12px;
  max-width: 95%;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  font-size: 1.8rem;
  line-height: 2.3;
}

.InFocus-header .overlay-text h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.InFocus-header .overlay-text h3 {
  font-size: 2rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.InFocus-header .overlay-text p {
  font-size: 1.8rem;
  line-height: 2.3;
  color: #333;
}

/* Content section */
.InFocus-content {
  text-align: center;
}

.InFocus-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.InFocus-content h3 {
  font-size: 2rem;
  color: #444;
  margin-bottom: 2.5rem;
}

.plan-buttons.recent-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
}

.plan-button {
  width: 100%;
  padding: 2rem;
  border-radius: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.plan-button.plan-available {
  background: var(--primary-green);
  color: #fff;
  border: none;
}

.plan-button.plan-available a {
  color: #fff;
  text-decoration: none;
  width: 100%;
}

.plan-button.plan-available:active {
  transform: scale(0.96);
  box-shadow: inset 5px 5px 10px rgba(0,0,0,0.25);
}

/* Archive section */
.InFocus-archive {
  text-align: center;
}

.InFocus-archive h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.InFocus-archive .archive-button {
  display: inline-block;
  width: 100%;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  background: #fff;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.InFocus-archive .archive-button:active {
  transform: scale(0.96);
  box-shadow: inset 5px 5px 10px rgba(0,0,0,0.25);
  background: var(--primary-green);
  color: #fff;
}
