/* ==========================================================================
   SEATTLEKR — ABOUT PAGE (page-about.php, slug "about")
   Self-contained: joongang-style.css is NOT loaded here, so brand tokens are
   redeclared locally. Scoped under .skr-about so nothing leaks site-wide.
   ========================================================================== */

/* Neutralize GeneratePress content width so the page can go edge-to-edge,
   mirroring the JoongAng homepage's full-bleed treatment. */
.skr-about-page .site-content,
.skr-about-page #content,
.skr-about-page .content-area,
.skr-about-page #primary,
.skr-about-page .site-main,
.skr-about-page #main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
  /* GP makes #content a flex row; a lone block child would shrink and pin
     left, so force block flow to let the sections fill the full width. */
  display: block !important;
}

.skr-about-page .grid-container {
  max-width: 100% !important;
  padding: 0 !important;
}

.skr-about-page #right-sidebar,
.skr-about-page #left-sidebar,
.skr-about-page .widget-area,
.skr-about-page .page-header,
.skr-about-page .entry-header {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Brand tokens (scoped) + base
   -------------------------------------------------------------------------- */
.skr-about {
  --skr-primary: #0f1f44;
  --skr-accent: #2563eb;
  --skr-accent-dark: #1d4ed8;
  --skr-accent-soft: #eaf1ff;
  --skr-text: #1f2937;
  --skr-text-2: #4b5563;
  --skr-border: #e3e9f2;
  --skr-bg-section: #eef3fb;
  --skr-radius: 16px;
  --skr-shadow: 0 4px 12px rgba(16, 24, 40, 0.08);

  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
  color: var(--skr-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.skr-about *,
.skr-about *::before,
.skr-about *::after {
  box-sizing: border-box;
}

.skr-about__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.skr-about__inner--narrow {
  max-width: 760px;
}

.skr-about__center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   Intro / hero
   -------------------------------------------------------------------------- */
.skr-about__hero {
  background: linear-gradient(135deg, #eaf1ff 0%, #dbe7ff 55%, #eef4ff 100%);
  padding: 76px 20px;
  text-align: center;
}

.skr-about__eyebrow {
  margin: 0 0 12px;
  color: var(--skr-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skr-about__title {
  margin: 0 0 20px;
  color: var(--skr-primary);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.25;
}

.skr-about__lead {
  max-width: 680px;
  margin: 0 auto;
  color: var(--skr-text-2);
  font-size: clamp(16px, 2.2vw, 19px);
}

/* --------------------------------------------------------------------------
   Generic section
   -------------------------------------------------------------------------- */
.skr-about__section {
  padding: 64px 20px;
}

.skr-about__section--alt {
  background: var(--skr-bg-section);
}

.skr-about__heading {
  margin: 0 0 10px;
  color: var(--skr-primary);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 800;
  text-align: center;
}

.skr-about__sub {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--skr-text-2);
  font-size: 16px;
  text-align: center;
}

.skr-about__sub strong {
  color: var(--skr-accent-dark);
}

/* --------------------------------------------------------------------------
   Coverage grid
   -------------------------------------------------------------------------- */
.skr-about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skr-about__card {
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--skr-border);
  border-top: 3px solid var(--skr-accent);
  border-radius: var(--skr-radius);
  box-shadow: var(--skr-shadow);
}

.skr-about__card-title {
  margin: 0 0 8px;
  color: var(--skr-primary);
  font-size: 18px;
  font-weight: 700;
}

.skr-about__card-desc {
  margin: 0;
  color: var(--skr-text-2);
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   Newsletter form wrapper
   -------------------------------------------------------------------------- */
.skr-about__nlform {
  max-width: 560px;
  margin: 28px auto 0;
}

/* Wrap Korean at word boundaries, not mid-phrase (CJK default). */
.skr-about__nlform .msw-nl-subtext {
  word-break: keep-all;
}

/* --------------------------------------------------------------------------
   News highlight videos
   -------------------------------------------------------------------------- */
.skr-about__videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 24px;
}

.skr-about__vid {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--skr-border);
  border-radius: var(--skr-radius);
  box-shadow: var(--skr-shadow);
}

.skr-about__vid-time {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: var(--skr-accent-soft);
  border-radius: 999px;
  color: var(--skr-accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.skr-about__vid-title {
  margin: 0 0 8px;
  color: var(--skr-primary);
  font-size: 20px;
  font-weight: 700;
}

.skr-about__vid-desc {
  margin: 0;
  color: var(--skr-text-2);
  font-size: 15px;
}

.skr-about__note {
  margin: 0 0 24px;
  color: var(--skr-text-2);
  font-size: 15px;
  text-align: center;
}

.skr-about__note strong {
  color: var(--skr-accent-dark);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.skr-about__btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.skr-about__btn:hover {
  transform: translateY(-1px);
}

.skr-about__btn--primary {
  background: var(--skr-accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
}

.skr-about__btn--primary:hover {
  background: var(--skr-accent-dark);
}

.skr-about__btn--ghost {
  background: #fff;
  border: 1.5px solid var(--skr-border);
  color: var(--skr-accent-dark);
}

/* --------------------------------------------------------------------------
   Closing CTA band
   -------------------------------------------------------------------------- */
.skr-about__cta {
  padding: 64px 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  text-align: center;
}

.skr-about__cta-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 800;
}

.skr-about__cta-desc {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.skr-about__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.skr-about__cta .skr-about__btn--primary {
  background: #fff;
  color: var(--skr-accent-dark);
}

.skr-about__cta .skr-about__btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Mobile app + social showcase (dark band)
   The App Store frames carry their own black background, so the band is deep
   navy and each phone reads as an intentional framed showcase that cross-fades.
   -------------------------------------------------------------------------- */
.skr-about__app {
  position: relative;
  padding: 76px 20px;
  background: linear-gradient(160deg, #0f1f44 0%, #0a1733 55%, #122a5e 100%);
  color: #fff;
  overflow: hidden;
}

.skr-about__app::before {
  content: "";
  position: absolute;
  top: -22%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.42) 0%, rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
}

.skr-about__app-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.skr-about__eyebrow--light {
  color: #8fb4ff;
}

.skr-about__app-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 1.2;
}

.skr-about__app-lead {
  max-width: 460px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  word-break: keep-all;
}

.skr-about__store {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.skr-about__store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  background: #fff;
  border-radius: 14px;
  color: var(--skr-primary);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.skr-about__store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}

.skr-about__store-ico {
  flex: none;
}

.skr-about__store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.skr-about__store-small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.78;
}

.skr-about__store-big {
  font-size: 18px;
  font-weight: 800;
}

.skr-about__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.skr-about__social-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
}

.skr-about__social-links {
  display: flex;
  gap: 10px;
}

.skr-about__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  transition: background 0.15s ease, transform 0.15s ease;
}

.skr-about__social-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.skr-about__app-visual {
  display: flex;
  justify-content: center;
}

.skr-about__phones {
  display: flex;
  align-items: center;
  justify-content: center;
}

.skr-about__phone {
  width: clamp(104px, 14vw, 162px);
  aspect-ratio: 600 / 1300;
  object-fit: cover;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.07);
  transition: transform 0.25s ease;
}

.skr-about__phone--left {
  transform: translateY(20px) rotate(-7deg);
  margin-right: -24px;
  z-index: 1;
}

.skr-about__phone--center {
  width: clamp(128px, 17vw, 196px);
  z-index: 3;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.skr-about__phone--right {
  transform: translateY(20px) rotate(7deg);
  margin-left: -24px;
  z-index: 1;
}

.skr-about__phone--left:hover   { transform: translateY(12px) rotate(-7deg); }
.skr-about__phone--center:hover { transform: translateY(-8px); }
.skr-about__phone--right:hover  { transform: translateY(12px) rotate(7deg); }

@media (prefers-reduced-motion: reduce) {
  .skr-about__phone { transition: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .skr-about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .skr-about__app-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .skr-about__app-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .skr-about__store,
  .skr-about__social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .skr-about__hero {
    padding: 56px 16px;
  }

  .skr-about__section,
  .skr-about__cta,
  .skr-about__app {
    padding: 48px 16px;
  }

  .skr-about__grid,
  .skr-about__videos {
    grid-template-columns: 1fr;
  }

  .skr-about__social {
    flex-direction: column;
    gap: 12px;
  }
}
