/* =========================================================
  SAFETY REPORT PAGE
========================================================= */

.safety-report-page {
  background: #f6f8f7;
  color: #17212b;
}

.safety-report-hero {
  background:
    linear-gradient(180deg, rgba(8, 22, 34, 0.42), rgba(8, 22, 34, 0.56)),
    linear-gradient(135deg, #163247 0%, #6f8fa3 52%, #d9e3df 100%);
}

.safety-report-intro {
  background: #f6f8f7;
}

.safety-report-intro .gassan-container {
  text-align: center;
}

.safety-report-list {
  padding: clamp(20px, 4vw, 48px) 0 clamp(88px, 10vw, 140px);
  background:
    radial-gradient(
      circle at top left,
      rgba(127, 165, 190, 0.16),
      transparent 32%
    ),
    #f6f8f7;
}

.safety-report-list__inner {
  width: min(100% - 40px, 1080px);
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.safety-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}

.safety-report-card {
  min-width: 0;
}

.safety-report-card__link {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  min-height: 112px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(40, 65, 80, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  color: inherit;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(20, 40, 55, 0.07);
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    background 0.45s ease;
}

.safety-report-card__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92, 137, 166, 0.12),
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.safety-report-card__link:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 91, 120, 0.24);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 58px rgba(20, 40, 55, 0.11);
}

.safety-report-card__link:hover::before {
  opacity: 1;
}

.safety-report-card__year {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(62px, 7vw, 76px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #172b3a;
  color: #fff;
  font-family: var(--font-en, inherit);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.safety-report-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
}

.safety-report-card__title {
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.safety-report-card__meta {
  font-family: var(--font-en, inherit);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(23, 33, 43, 0.52);
}

.safety-report-card__arrow {
  position: relative;
  z-index: 1;
  display: block;
  width: 38px;
  height: 12px;
}

.safety-report-card__arrow::before,
.safety-report-card__arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  background: #172b3a;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.safety-report-card__arrow::before {
  width: 38px;
  height: 1px;
  transform: translateY(-50%);
}

.safety-report-card__arrow::after {
  width: 9px;
  height: 1px;
  transform: translateY(-50%) rotate(35deg);
  transform-origin: right center;
}

.safety-report-card__link:hover .safety-report-card__arrow::before {
  transform: translateY(-50%) scaleX(1.18);
  transform-origin: right center;
}

@media (max-width: 767px) {
  .safety-report-list__inner {
    width: min(100% - 28px, 720px);
  }

  .safety-report-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 720px;
  }

  .safety-report-card__link {
    min-height: 96px;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .safety-report-card__year {
    width: 58px;
    font-size: 0.95rem;
  }

  .safety-report-card__title {
    font-size: 0.98rem;
  }

  .safety-report-card__arrow {
    width: 30px;
  }

  .safety-report-card__arrow::before {
    width: 30px;
  }
}
