/* ====================================================================
   Rodeo Graphics — about.css (page-about-us-2.php)
   ==================================================================== */

.about-intro { padding: 5rem 5%; background: var(--white); }
.about-intro-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-intro-img { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; background: var(--gray-100); }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-intro-text h2 { font-family: 'Sora', 'Sora Fallback', sans-serif; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.about-intro-text p { font-size: 0.975rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }

.about-stats { background: var(--red-pale); border-top: 1px solid var(--red-pale2); border-bottom: 1px solid var(--red-pale2); padding: 4rem 5%; }
.about-stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.astat-num { font-family: 'Sora', 'Sora Fallback', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 0.3rem; }
.astat-label { font-size: 0.875rem; color: var(--gray-600); font-weight: 500; }

.team-section { padding: 5rem 5%; background: var(--gray-50); border-top: 1px solid var(--gray-100); }
.team-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: 2.5rem; display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; background: var(--red-pale); border: 3px solid var(--red-pale2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 900; color: var(--red); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: 'Sora', 'Sora Fallback', sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 0.15rem; }
.team-role { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 0.65rem; }
.team-bio { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; }

.values-section { padding: 5rem 5%; background: var(--white); }
.values-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.value-card { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: 2rem; }
.value-icon { width: 48px; height: 48px; background: var(--red-pale); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.value-card h3 { font-family: 'Sora', 'Sora Fallback', sans-serif; font-size: 1.05rem; font-weight: 800; margin-bottom: 0.45rem; }
.value-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }

.timeline-section { padding: 5rem 5%; background: var(--gray-900); }
.timeline-inner { max-width: 860px; margin: 0 auto; }
.timeline-title { font-family: 'Sora', 'Sora Fallback', sans-serif; font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; color: #fff; margin-bottom: 2.5rem; }
.timeline-item { display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.timeline-year { font-family: 'Sora', 'Sora Fallback', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--red); }
.timeline-item h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.875rem; color: var(--gray-400); line-height: 1.7; }

@media (max-width: 960px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
}
