/* ABOUT PAGE */
.about-inner { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: center; }
.about-logo-wrap { display: flex; justify-content: center; }
.about-logo-circle { width: 240px; height: 240px; border-radius: 50%; background: var(--red); border: 6px solid var(--red-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; box-shadow: 0 8px 36px rgba(192,0,0,0.25); text-align: center; }
.about-logo-circle .big { font-size: 36px; font-weight: 900; letter-spacing: 3px; }
.about-logo-circle .small { font-size: 9px; margin-top: 6px; opacity: 0.8; letter-spacing: 1px; }
.about-content .sec-title { margin-bottom: 14px; }
.about-content p { font-size: 13px; color: #444; line-height: 1.9; margin-bottom: 10px; }
.about-stats { display: flex; gap: 36px; margin: 24px 0; }
.stat { border-left: 3px solid var(--red); padding-left: 14px; }
.stat-num { font-size: 32px; font-weight: 700; line-height: 1; margin-bottom: 2px; }
.stat-label { font-size: 11px; color: var(--gray-text); }

/* GREETING */
.greeting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.greeting-card { background: #fff; border: 1px solid var(--gray-border); border-radius: 6px; padding: 24px; }
.sec-gray .greeting-card { background: #fff; }
.greeting-card .role { font-size: 11px; font-weight: 700; color: var(--red); margin-bottom: 4px; }
.greeting-card .name { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.greeting-card p { font-size: 12px; color: #444; line-height: 1.9; }
.greeting-card .sign { margin-top: 16px; font-size: 12px; color: var(--gray-text); text-align: right; }

/* OFFICERS */
.officer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }

.officer-hero-card { background: var(--red); color: #fff; border-radius: 12px; padding: 28px 32px; min-height: 130px; display: flex; flex-direction: column; justify-content: center; }
.officer-hero-role { font-size: 12px; font-weight: 600; opacity: 0.9; margin-bottom: 8px; }
.officer-hero-name { font-size: 22px; font-weight: 700; letter-spacing: 0.02em; }

.officer-team-list { grid-column: 2; border: 1px solid var(--gray-border); border-radius: 12px; overflow: hidden; background: #fff; }
.officer-team-row { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 16px 32px; border-bottom: 1px solid var(--gray-border); font-size: 13px; align-items: center; }
.officer-team-row:last-child { border-bottom: none; }
.officer-team-label { color: #555; font-weight: 500; }
.officer-team-value { font-weight: 700; color: #111; }

.officer-note { font-size: 11px; color: var(--gray-text); margin-top: 10px; }

@media (max-width: 768px) {
  .officer-grid { grid-template-columns: 1fr; }
  .officer-hero-card { padding: 20px 24px; min-height: auto; }
  .officer-team-list { grid-column: auto; }
  .officer-team-row { padding: 14px 20px; grid-template-columns: 100px 1fr; gap: 16px; }
}

@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-stats { justify-content: center; }
/* ACCESS SECTION */
.access-sec { background: #fff; }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.map-box { width: 100%; border-radius: 6px; overflow: hidden; background: var(--gray-bg); min-height: 400px; display: flex; align-items: center; justify-content: center; }
.map-box svg { width: 32px; height: 32px; color: var(--gray-text); opacity: 0.5; }
.map-box iframe { display: block; width: 100%; height: 400px; }
.access-info h3 { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.acc-row { display: flex; gap: 16px; margin-bottom: 16px; }
.acc-row svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--red); margin-top: 2px; }
.acc-label { font-size: 11px; font-weight: 700; color: var(--gray-text); text-transform: uppercase; margin-bottom: 2px; }
.acc-val { font-size: 14px; color: #333; line-height: 1.6; }
.acc-dir h4 { font-size: 13px; font-weight: 700; margin: 16px 0 8px; }
.acc-dir ul { list-style: disc; margin-left: 20px; }
.acc-dir li { font-size: 13px; color: #444; margin-bottom: 4px; }
}
@media (max-width: 768px) {
  .page-header { padding: 28px 16px 22px; }
  .page-title { font-size: 18px; }
  .about-logo-circle { width: 170px; height: 170px; }
  .about-logo-circle .big { font-size: 24px; }
  .about-stats { gap: 20px; }
  .greeting-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; gap: 28px; }
}
