/* ===== STABLE FULL-WIDTH FIX (ALL PAGES) ===== */

/* Full-width blocks escape all theme containers */
.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Keep normal content readable */
.entry-content > *:not(.alignfull) {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
/* ===== PERSONAL TRAINING PAGE STYLES ===== */

/* Global text rhythm */
.content,
.alignwide {
  padding: 80px 24px;
}

.content h2,
.alignwide h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.content p,
.alignwide p,
.content li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

/* HERO */
.hero {
  background: #f4f1ec; /* soft neutral – swap for image later */
  text-align: center;
  padding: 120px 24px;
}

.hero .inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

/* Buttons */
.button {
  display: inline-block;
  background: #6b705c; /* earthy green */
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.button:hover {
  background: #5f6452;
}

/* Lists */
.content ul {
  padding-left: 20px;
}

.content li {
  margin-bottom: 12px;
}

/* APPROACH SECTION */
.approach .columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.approach h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* CTA */
.cta {
  background: #e8e4dd;
  text-align: center;
  padding: 100px 24px;
}

.cta .inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .approach .columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .content,
  .alignwide {
    padding: 60px 20px;
  }
}
