.hg-hurricane-monitor {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px 16px;
  align-items: center;
  box-sizing: border-box;
  margin: 16px 0 22px;
  padding: 16px 18px;
  color: #263833;
  background: linear-gradient(105deg, #fffaf0 0%, #f5fbf8 100%);
  border: 1px solid #e6d6ad;
  border-left: 5px solid #d98220;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(45, 58, 50, 0.08);
}

.hg-hurricane-monitor__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #8a4a08;
  background: #ffedc7;
  border-radius: 50%;
  font-size: 18px;
}

.hg-hurricane-monitor__copy {
  min-width: 0;
}

.hg-hurricane-monitor__eyebrow {
  margin: 0 0 2px;
  color: #86500f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hg-hurricane-monitor h2 {
  margin: 0 0 3px;
  color: #263833;
  font-size: 19px;
  line-height: 1.25;
}

.hg-hurricane-monitor__copy > p:last-child {
  margin: 0;
  color: #53615d;
  font-size: 14px;
  line-height: 1.45;
}

.hg-hurricane-monitor__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  box-sizing: border-box;
  padding: 9px 14px;
  color: #fff;
  background: #1f6a50;
  border-radius: 8px;
  box-shadow: 0 7px 16px rgba(31, 106, 80, 0.18);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.hg-hurricane-monitor__link:hover,
.hg-hurricane-monitor__link:focus {
  color: #fff;
  background: #174f3c;
}

.hg-hurricane-monitor__link:focus-visible {
  outline: 3px solid rgba(31, 106, 80, 0.28);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .hg-hurricane-monitor {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 12px;
    margin: 14px 0 18px;
    padding: 14px;
  }

  .hg-hurricane-monitor__icon {
    align-self: start;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .hg-hurricane-monitor__link {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
  }
}

@media (max-width: 360px) {
  .hg-hurricane-monitor {
    grid-template-columns: 1fr;
  }

  .hg-hurricane-monitor__icon,
  .hg-hurricane-monitor__link {
    grid-column: 1;
  }
}
