/* 关于细川总页 - about_us.html (设计基准 1920px) */

:root {
  --ab-primary: #14126f;
  --ab-text: #333333;
  --ab-text-muted: #666666;
  --ab-font-hero: clamp(32px, 3.125vw, 60px);
  --ab-font-section: clamp(24px, 2.083vw, 40px);
}

.site-main--about {
  min-height: auto;
}

/* ========== Hero ========== */

.ab-hero {
  position: relative;
  min-height: clamp(320px, 33.854vw, 650px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1a4a;
}

.ab-hero__bg {
  position: absolute;
  inset: 0;
}

.ab-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ab-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 26, 74, 0.5) 0%,
    rgba(10, 26, 74, 0.18) 50%,
    rgba(10, 26, 74, 0.05) 100%
  );
}

.ab-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 5.208vw, 100px) 0;
}

.ab-hero__title {
  margin: 0;
  font-size: var(--ab-font-hero);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
}

.ab-hero__desc {
  margin: clamp(16px, 1.458vw, 28px) 0 0;
  max-width: 32em;
  font-size: clamp(14px, 0.9375vw, 18px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.ab-hero__scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(48px, 3.125vw, 60px);
  height: clamp(48px, 3.125vw, 60px);
  margin-top: clamp(28px, 2.5vw, 48px);
  color: var(--ab-primary);
  background: #ffffff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ab-hero__scroll:hover {
  transform: translateY(3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.ab-hero__scroll-icon {
  display: block;
  width: clamp(14px, 0.885vw, 17px);
  height: clamp(14px, 0.885vw, 17px);
}

/* ========== Intro ========== */

.ab-intro {
  padding: clamp(56px, 5.208vw, 100px) 0 clamp(40px, 3.125vw, 60px);
  background: #ffffff;
  text-align: center;
}

.ab-intro__title {
  margin: 0;
  font-size: var(--ab-font-section);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ab-text);
}

.ab-intro__desc {
  margin: clamp(20px, 1.667vw, 32px) 0 0;
  font-size: clamp(14px, 0.9375vw, 18px);
  line-height: 1.9;
  color: var(--ab-text-muted);
  text-align: left;
}

/* ========== Cards ========== */

.ab-cards {
  padding: 0 0 clamp(72px, 6.25vw, 120px);
  background: #ffffff;
}

.ab-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.083vw, 40px) clamp(20px, 1.667vw, 32px);
}

.ab-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.ab-card__link:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.ab-card__media {
  overflow: hidden;
  aspect-ratio: 992 / 604;
  background: #f0f0f0;
}

.ab-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ab-card__link:hover .ab-card__media img {
  transform: scale(1.03);
}

.ab-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(20px, 1.667vw, 32px);
  text-align: left;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-top: none;
}

.ab-card__title {
  margin: 0;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ab-text);
}

.ab-card__desc {
  flex: 1;
  margin: clamp(12px, 0.833vw, 16px) 0 0;
  font-size: clamp(13px, 0.8333vw, 16px);
  line-height: 1.75;
  color: var(--ab-text-muted);
}

.ab-card__arrow {
  display: block;
  margin-top: clamp(20px, 1.667vw, 32px);
}

.ab-card__arrow img {
  display: block;
  width: clamp(28px, 1.771vw, 34px);
  height: auto;
}

/* ========== Responsive ========== */

@media (max-width: 1200px) {
  .ab-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ab-hero__overlay {
    background: rgba(10, 26, 74, 0.45);
  }

  .ab-cards__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}
