/* =========================================================
  Safety Index Page
========================================================= */

/* Link cards
--------------------------------------------------------------------------- */

.safety-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.safety-link-card {
  padding: 34px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.safety-link-card__label {
  margin: 0 0 10px;
  color: #9b001f;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.safety-link-card h3 {
  margin: 0 0 16px;
  font-size: 1.55rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.safety-link-card p {
  margin: 0;
  color: #444;
  font-size: 0.96rem;
  line-height: 1.9;
}

.safety-link-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  margin-top: 26px;
  padding: 14px 20px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  background: #9b001f;
  border: 1px solid #9b001f;
  border-radius: 6px;
  transition: 0.2s ease;
}

.safety-link-card a::after {
  content: "→";
  margin-left: 10px;
}

.safety-link-card a:hover {
  color: #9b001f;
  background: #fff;
}

/* WBGT
--------------------------------------------------------------------------- */

.safety-section #wbgt_container {
  max-width: 980px;
  margin: 0 auto;
}

.safety-section #wbgt_container .wbgt-panel {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  text-align: center;
}

/* Responsive
--------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .safety-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .safety-link-card {
    padding: 28px 20px;
  }

  .safety-link-card h3 {
    font-size: 1.35rem;
  }

  .safety-link-card a {
    max-width: none;
  }
}
