/* ===========================================
   Eutopía — Páginas institucionales (about-us, contact)
   Usa las variables de custom-home.css
   =========================================== */

.eu-page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 15px 30px;
}

.eu-page-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--eu-text);
  margin-bottom: 16px;
}

/* ---------- Quote block ---------- */
.eu-quote {
  position: relative;
  background: var(--eu-bg-soft);
  border-left: 3px solid var(--eu-magenta);
  border-radius: 4px;
  padding: 24px 28px;
  margin: 30px 0;
}

.eu-quote p {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--eu-ink);
  margin: 0;
}

/* ---------- Icon cards (pilares) ---------- */
.eu-icon-cards-section {
  max-width: 760px;
  margin: 10px auto 40px;
  padding: 0 15px;
}

.eu-icon-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.eu-icon-card {
  background: #fff;
  border: 1px solid var(--eu-border);
  border-radius: 8px;
  padding: 22px 16px;
  text-align: center;
}

.eu-icon-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--eu-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--eu-magenta);
  font-size: 18px;
}

.eu-icon-card p {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--eu-ink);
  margin: 0;
}

/* ---------- Founders ---------- */
.eu-founders-section {
  max-width: 940px;
  margin: 10px auto 60px;
  padding: 0 15px;
}

.eu-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 20px;
}

.eu-founder-card {
  background: var(--eu-bg-soft);
  border-radius: 10px;
  padding: 26px;
}

.eu-founder-name {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--eu-ink);
  margin: 0 0 4px;
}

.eu-founder-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--eu-magenta-dark);
  background: rgba(215, 0, 91, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.eu-founder-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eu-founder-card ul li {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--eu-text);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.eu-founder-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--eu-celeste);
}

/* ---------- Contact page ---------- */
.eu-contact-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 15px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.eu-contact-card {
  background: #fff;
  border: 1px solid var(--eu-border);
  border-radius: 10px;
  padding: 30px;
}

.eu-contact-card h3 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--eu-ink);
  margin: 0 0 20px;
}

.eu-contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.eu-contact-info-row:last-of-type {
  margin-bottom: 0;
}

.eu-contact-info-row .eu-icon-circle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--eu-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eu-magenta);
  font-size: 15px;
}

.eu-contact-info-row p,
.eu-contact-info-row a {
  font-size: 14.5px;
  color: var(--eu-text);
  margin: 0;
  line-height: 1.6;
}

.eu-contact-info-row a {
  color: var(--eu-ink);
  text-decoration: none;
}

.eu-contact-info-row a:hover {
  color: var(--eu-magenta);
}

.eu-social-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.eu-social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--eu-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eu-ink);
  transition: background 0.15s ease, color 0.15s ease;
}

.eu-social-row a:hover {
  background: var(--eu-magenta);
  color: #fff;
}

.eu-contact-cta-card {
  background: var(--eu-bg-soft);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eu-contact-cta-card h3 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--eu-ink);
  margin: 0 0 10px;
}

.eu-contact-cta-card p {
  font-size: 14px;
  color: var(--eu-text);
  line-height: 1.7;
  margin: 0 0 22px;
}

.eu-contact-cta-card .eu-btn {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.eu-contact-cta-card .eu-btn:last-child {
  margin-bottom: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .eu-icon-cards-grid {
    grid-template-columns: 1fr;
  }
  .eu-founders-grid {
    grid-template-columns: 1fr;
  }
  .eu-contact-layout {
    grid-template-columns: 1fr;
  }
}
