.emergency {
  background: var(--black);
  color: var(--white);
  padding: 72px 0;
}

.emergency-page-title {
  margin: 0;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.emergency-page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 1px;
  background: var(--caution-yellow);
}

.emergency-inner {
  width: min(var(--max-width), 100% - 48px);
  margin: 0 auto;
  border-left: 2px solid var(--caution-yellow);
  padding-left: 28px;
}

.emergency-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: start;
}

.emergency-copy,
.emergency-details {
  text-align: left;
}

.emergency-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caution-yellow);
  border: 1px solid rgba(242, 201, 76, 0.6);
  padding: 6px 12px;
  border-radius: 999px;
}

.emergency-heading {
  margin: 0 0 14px;
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.emergency-lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
}

.emergency-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.emergency-list li {
  position: relative;
  padding-left: 18px;
  font-size: 17px;
  line-height: 1.6;
}

.emergency-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--caution-yellow);
  border-bottom: 2px solid var(--caution-yellow);
  transform: rotate(-45deg);
}

.emergency-proof {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.emergency-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--caution-yellow);
  color: var(--black);
  font-size: 13px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 0 0 0 rgba(242, 201, 76, 0.45);
  animation: emergency-pulse 2.4s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.emergency-cta:hover,
.emergency-cta:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.cta-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.cta-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes emergency-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 201, 76, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(242, 201, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 201, 76, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .emergency-cta {
    animation: none;
  }
}

@media (max-width: 1024px) and (min-width: 701px) {
  .emergency-page-title {
    font-size: 28px;
  }
}

@media (max-width: 700px) {
  .emergency-page-title {
    font-size: 24px;
  }
}
