/* ===============================
   ABOUT PAGE — PREMIUM STYLING
   =============================== */

/* ----- HERO IMAGE ----- */
.about-hero {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 0 0 18px 18px;
  display: block;
  margin: 0 auto 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ----- MAIN WRAPPER ----- */
.about-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 22px 60px;
}

/* ----- TABS ----- */
.about-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 10px auto 40px;
  flex-wrap: wrap;
}

.about-tab-button {
  border: none;
  background: #f4f1ec;
  color: #222;
  font-size: 16px;
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.about-tab-button:hover,
.about-tab-button:focus-visible {
  background: #eadfcd;
  color: #222;
  transform: translateY(-1px);
}

.about-tab-button.is-active {
  background: #cf9e25;
  color: #fff;
  box-shadow: 0 6px 18px rgba(207, 158, 37, 0.25);
}

.about-tab-panel {
  display: none;
}

.about-tab-panel.is-active {
  display: block;
}

/* ----- MAIN TITLE SECTION ----- */
.about-intro {
  text-align: center;
  margin-bottom: 60px;
}

.about-intro h1 {
  font-size: 44px;
  margin-bottom: 20px;
  color: #222;
}

.about-intro p {
  font-size: 19px;
  line-height: 1.7;
  color: #555;
  max-width: 760px;
  margin: 0 auto 18px;
}

/* ----- FEATURE BLOCKS ----- */
/* Center text inside feature blocks */
.about-section {
  background: #fff;
  padding: 40px 32px;
  margin-bottom: 28px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center; /* NEW */
}

.about-section h2 {
  font-size: 28px;
  margin-bottom: 14px;
  color: #222;
  letter-spacing: 0.2px;
  text-align: center; /* NEW */
}

.about-section p {
  font-size: 18px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 8px;
  text-align: center; /* NEW */
}

/* Partner list */
.partner-list p {
  margin: 4px 0;
  font-size: 17px;
  text-align: center; /* NEW */
}

/* ----- PRESS SECTION ----- */
.press-intro {
  text-align: center;
  margin-bottom: 30px;
}

.press-intro h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.press-intro p {
  font-size: 18px;
  color: #555;
  margin: 0;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.press-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.press-logo {
  width: 180px;
  max-width: 100%;
  height: auto;
}

.press-card h3 {
  font-size: 22px;
  margin: 0;
  color: #222;
}

.press-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.press-button {
  align-self: flex-start;
  background: #cf9e25;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.press-button:hover,
.press-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(207, 158, 37, 0.25);
}

/* ----- MEDIA QUERIES ----- */
@media (max-width: 700px) {
  .about-hero {
    max-height: 330px;
  }
  .about-intro h1 {
    font-size: 32px;
  }
  .about-section {
    padding: 28px 20px;
  }
  .about-section h2 {
    font-size: 24px;
  }
  .press-grid {
    grid-template-columns: 1fr;
  }
}
