/* ==========================================================================
   Infy Weather — feature pages (alerts, earthquakes, statistics, insights)

   Follows the same neo-brutalist system as style.css: --panel surfaces,
   3px --border outlines, hard offset shadows, uppercase 900-weight labels.
   Every colour is a token so both themes stay legible.
   ========================================================================== */

/* --- Page header ------------------------------------------------------- */

.feature-hero {
    margin: 0 0 20px;
    padding: 24px 26px;
    background: var(--panel);
    border: 3px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--hard-shadow);
}

.feature-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--text);
}

.feature-hero p {
    margin: 0;
    max-width: 74ch;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.55;
}

.feature-location-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 16px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: var(--subtle);
    border: 2px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
}

.feature-pill.is-live::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--good);
}

/* --- Search / filter bar ---------------------------------------------- */

.feature-search {
    margin-bottom: 16px;
    padding: 18px 20px;
}

.feature-search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.feature-search-form input {
    flex: 1 1 200px;
    min-width: 0;
    padding: 12px 14px;
    background: var(--panel);
    border: 3px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    font-weight: 600;
}

.feature-search-form input::placeholder {
    color: var(--muted);
}

.feature-search-form input:focus-visible,
.feature-scope-btn:focus-visible,
.feature-btn:focus-visible,
.alerts-page-item:focus-visible,
.earthquake-item:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.feature-search-form button,
.feature-btn {
    padding: 12px 18px;
    background: var(--accent);
    border: 3px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--hard-shadow-sm);
    color: #ffffff;
    font: inherit;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.feature-search-form button:hover,
.feature-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: var(--hard-shadow-hover);
}

.feature-btn.secondary {
    background: var(--panel);
    color: var(--text);
}

/* --- Scope toggles ---------------------------------------------------- */

.feature-scope-toggle {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-scope-btn {
    padding: 8px 14px;
    background: var(--panel);
    border: 3px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.feature-scope-btn:hover:not(:disabled) {
    background: var(--highlight);
}

.feature-scope-btn[aria-pressed="true"],
.feature-scope-btn.is-active {
    background: var(--accent);
    border-color: var(--border);
    color: #ffffff;
}

.feature-scope-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.feature-hint {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.feature-empty,
.feature-muted {
    color: var(--muted);
    font-weight: 600;
}

.feature-empty {
    padding: 22px;
    margin-bottom: 16px;
}

.feature-error {
    padding: 16px 18px;
    margin-bottom: 16px;
    background: var(--sev-warning-bg);
    border: 3px solid var(--sev-warning);
    border-radius: 8px;
    color: var(--text);
    font-weight: 800;
}

/* --- Shared two-column map layout ------------------------------------ */

.split-layout {
    display: grid;
    grid-template-columns: minmax(300px, 400px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.split-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    max-height: 78vh;
    overflow: hidden;
}

.split-map-wrap {
    padding: 0;
    overflow: hidden;
}

.split-map {
    width: 100%;
    height: 78vh;
    min-height: 460px;
    border-radius: 9px;
}

.split-scroll {
    overflow-y: auto;
    display: grid;
    gap: 10px;
    padding-right: 4px;
    scrollbar-width: thin;
}

.list-section-title {
    margin: 4px 0 2px;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.result-count {
    font-family: var(--mono);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--muted);
}

/* --- Filter checkboxes ----------------------------------------------- */

.filter-group h2 {
    margin: 0 0 10px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 0;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
}

.filter-check input {
    width: 17px;
    height: 17px;
    accent-color: var(--accent);
    cursor: pointer;
}

.filter-check .filter-swatch {
    width: 12px;
    height: 12px;
    border: 2px solid var(--border);
    border-radius: 3px;
}

.filter-swatch.for-warning { background: var(--sev-warning); }
.filter-swatch.for-watch { background: var(--sev-watch); }
.filter-swatch.for-advisory { background: var(--sev-advisory); }
.filter-swatch.for-alert { background: var(--sev-other); }

.filter-count {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--muted);
}

/* --- Alert list items ------------------------------------------------ */

.alerts-page-item {
    display: block;
    width: 100%;
    padding: 13px 14px;
    text-align: left;
    background: var(--panel);
    border: 3px solid var(--border);
    border-left-width: 8px;
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    cursor: pointer;
    transition: transform 0.1s ease, background 0.1s ease;
}

.alerts-page-item:hover {
    transform: translateX(2px);
    background: var(--highlight);
}

.alerts-page-item.is-warning { border-left-color: var(--sev-warning); }
.alerts-page-item.is-watch { border-left-color: var(--sev-watch); }
.alerts-page-item.is-advisory { border-left-color: var(--sev-advisory); }
.alerts-page-item.is-alert { border-left-color: var(--sev-other); }

.alerts-page-item.is-local {
    background: var(--subtle);
    box-shadow: var(--hard-shadow-sm);
}

.alerts-page-item-head {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    margin-bottom: 7px;
}

.severity-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.severity-tag.for-warning { background: var(--sev-warning); color: var(--on-severity); }
.severity-tag.for-watch { background: var(--sev-watch); color: var(--on-severity); }
.severity-tag.for-advisory { background: var(--sev-advisory); color: var(--on-severity); }
.severity-tag.for-alert { background: var(--sev-other); color: var(--on-severity); }

.local-tag {
    padding: 3px 7px;
    background: var(--accent);
    border: 2px solid var(--border);
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.alerts-page-expiry {
    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
}

.alerts-page-expiry.is-soon {
    color: var(--sev-warning);
}

.alerts-page-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.25;
}

.alerts-page-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Earthquake list ------------------------------------------------- */

.earthquake-controls {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 16px;
    padding: 18px 20px;
}

.earthquake-controls label {
    display: grid;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.earthquake-controls select {
    padding: 11px 12px;
    background: var(--panel);
    border: 3px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.earthquake-item {
    display: block;
    width: 100%;
    padding: 13px 14px;
    text-align: left;
    background: var(--panel);
    border: 3px solid var(--border);
    border-left-width: 8px;
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    cursor: pointer;
    transition: transform 0.1s ease, background 0.1s ease;
}

.earthquake-item:hover {
    transform: translateX(2px);
    background: var(--highlight);
}

.earthquake-item.is-minor { border-left-color: var(--good); }
.earthquake-item.is-moderate { border-left-color: var(--sev-watch); }
.earthquake-item.is-strong { border-left-color: var(--sev-other); }
.earthquake-item.is-major { border-left-color: var(--sev-warning); }

.earthquake-item.is-local {
    background: var(--subtle);
    box-shadow: var(--hard-shadow-sm);
}

.earthquake-item-head {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}

.earthquake-mag {
    font-family: var(--mono);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.earthquake-item.is-major .earthquake-mag { color: var(--sev-warning); }
.earthquake-item.is-strong .earthquake-mag { color: var(--sev-other); }

.earthquake-time {
    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
}

.earthquake-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.3;
}

.earthquake-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.earthquake-meta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--muted);
}

.tsunami-flag {
    color: var(--sev-warning);
    font-weight: 900;
}

/* --- Map legend ------------------------------------------------------ */

.map-legend {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding: 10px 14px;
    background: var(--panel);
    border-top: 3px solid var(--border);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.map-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
}

.map-legend-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--border);
    border-radius: 50%;
}

/* --- Homepage insight modules ---------------------------------------- */

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.insights-grid .insights-wide {
    grid-column: 1 / -1;
}

.insight-card {
    padding: 22px;
}

.insight-card h2 {
    margin: 0 0 5px;
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.insight-sub {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.45;
}

.insight-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.insight-stat {
    padding: 11px 12px;
    background: var(--subtle);
    border: 2px solid var(--border);
    border-radius: 8px;
}

.insight-stat label {
    display: block;
    margin-bottom: 3px;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.insight-stat strong {
    font-family: var(--mono);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.insight-stat .insight-stat-note {
    display: block;
    margin-top: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
}

.insight-list {
    display: grid;
    gap: 7px;
}

.insight-list-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 11px;
    background: var(--subtle);
    border: 2px solid var(--subtle-border);
    border-radius: 7px;
    font-size: 0.86rem;
    font-weight: 700;
}

.insight-list-item .insight-list-value {
    font-family: var(--mono);
    color: var(--muted);
    white-space: nowrap;
}

.insight-link-row {
    margin-top: 14px;
}

.insight-link-row a {
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

.aqi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 3px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--hard-shadow-sm);
    font-family: var(--mono);
    font-weight: 900;
    font-size: 0.92rem;
}

.aqi-badge.is-good { background: #16a34a; color: #ffffff; }
.aqi-badge.is-moderate { background: #eab308; color: #000000; }
.aqi-badge.is-usg { background: #f97316; color: #000000; }
.aqi-badge.is-unhealthy { background: #dc2626; color: #ffffff; }
.aqi-badge.is-very-unhealthy { background: #7e22ce; color: #ffffff; }
.aqi-badge.is-hazardous { background: #7f1d1d; color: #ffffff; }
.aqi-badge.is-unknown { background: var(--subtle); color: var(--text); }

/* --- Statistics: alerts panel ---------------------------------------- */

.stats-alerts-panel {
    margin: 20px 0;
    padding: 22px;
}

.stats-alerts-list {
    display: grid;
    gap: 10px;
}

.stats-alert-item {
    padding: 13px 14px;
    background: var(--subtle);
    border: 3px solid var(--border);
    border-left-width: 8px;
    border-radius: 8px;
}

.stats-alert-item.is-warning { border-left-color: var(--sev-warning); }
.stats-alert-item.is-watch { border-left-color: var(--sev-watch); }
.stats-alert-item.is-advisory { border-left-color: var(--sev-advisory); }
.stats-alert-item.is-alert { border-left-color: var(--sev-other); }

.stats-alert-item strong {
    display: block;
    margin-bottom: 3px;
    font-weight: 900;
}

.stats-alert-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 600;
}

/* ==========================================================================
   Statistics page
   ========================================================================== */

.stats-hero {
    margin: 0 0 20px;
    padding: 24px 26px;
    background: var(--panel);
    border: 3px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--hard-shadow);
}

.stats-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.stats-hero p {
    margin: 0;
    max-width: 78ch;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.55;
}

.stats-location-row,
.stats-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 16px;
}

.stats-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: var(--subtle);
    border: 2px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
}

.stats-link-button {
    padding: 9px 14px;
    background: var(--accent);
    border: 3px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--hard-shadow-sm);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
}

.stats-link-button.secondary {
    background: var(--panel);
    color: var(--text);
}

.stats-link-button:hover {
    transform: translate(2px, 2px);
    box-shadow: var(--hard-shadow-hover);
}

.stats-search {
    position: relative;
    margin-bottom: 16px;
    padding: 18px 20px;
    background: var(--panel);
    border: 3px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--hard-shadow);
}

.stats-search form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.stats-search input {
    flex: 1 1 180px;
    min-width: 0;
    padding: 12px 14px;
    background: var(--panel);
    border: 3px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    font-weight: 600;
}

.stats-search input::placeholder {
    color: var(--muted);
}

.stats-search button {
    padding: 12px 18px;
    background: var(--accent);
    border: 3px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--hard-shadow-sm);
    color: #ffffff;
    font: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.stats-suggestions {
    position: absolute;
    top: calc(100% - 8px);
    left: 20px;
    right: 20px;
    z-index: 200;
    background: var(--panel);
    border: 3px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--hard-shadow);
    overflow: hidden;
    max-height: 320px;
    overflow-y: auto;
}

/* Rely on the hidden attribute; a bare display:none fought the JS toggle. */
.stats-suggestions[hidden] {
    display: none !important;
}

.stats-suggestion {
    display: block;
    width: 100%;
    padding: 12px 14px;
    text-align: left;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border);
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.stats-suggestion:last-child {
    border-bottom: none;
}

.stats-suggestion:hover,
.stats-suggestion.active {
    background: var(--highlight);
}

.stats-grid,
.stats-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.stats-card {
    padding: 18px 20px;
    background: var(--panel);
    border: 3px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--hard-shadow);
}

.stats-card-label {
    margin-bottom: 6px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.stats-card-value {
    font-family: var(--mono);
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.stats-card-sub {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.stats-wide {
    margin-bottom: 18px;
    padding: 22px;
}

.stats-wide h2 {
    margin: 0 0 14px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
}

/* Generic card used for the 7-day table and similar blocks. */
#mainContent > .card:not(.stats-wide):not(.stats-mini-chart):not(.stats-alerts-panel) {
    padding: 22px;
    margin-bottom: 18px;
}

.stats-controls {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 16px;
}

.stats-control {
    display: grid;
    gap: 6px;
}

.stats-control label {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.stats-control select,
.stats-control input {
    padding: 11px 12px;
    background: var(--panel);
    border: 3px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.stats-chart-wrap {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.stats-chart-wrap canvas {
    display: block;
    max-width: 100%;
}

.stats-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

/*
 * Mini cards used to be a fixed 220px tall while the chart wrap inside was
 * 340px, so the graphs spilled out of their cards and over the next section.
 */
.stats-mini-chart {
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    overflow: hidden;
    min-height: 0;
}

.stats-mini-chart h2 {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.stats-mini-chart .stats-chart-wrap {
    height: 220px;
    flex: 0 0 220px;
}

.stats-table-wrap {
    overflow-x: auto;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.stats-table th,
.stats-table td {
    padding: 11px 12px;
    text-align: left;
    border-bottom: 2px solid var(--border);
}

.stats-table th {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    white-space: nowrap;
}

.stats-table td {
    font-family: var(--mono);
    font-weight: 700;
}

.stats-table tbody tr:last-child th,
.stats-table tbody tr:last-child td {
    border-bottom: none;
}

.stats-table tbody tr:hover {
    background: var(--subtle);
}

.stats-error,
.stats-empty {
    padding: 18px 20px;
    margin-bottom: 16px;
    background: var(--sev-watch-bg);
    border: 3px solid var(--sev-watch);
    border-radius: 8px;
    color: var(--text);
    font-weight: 800;
}

.stats-loader {
    padding: 14px 0;
    color: var(--muted);
    font-weight: 700;
}

.stats-note {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.5;
}

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

@media (max-width: 1000px) {
    .split-layout,
    .earthquake-layout,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .split-sidebar {
        max-height: none;
    }

    .split-scroll {
        max-height: 60vh;
    }

    .split-map {
        height: 55vh;
        min-height: 380px;
    }
}

@media (max-width: 640px) {
    .feature-hero,
    .stats-hero {
        padding: 18px;
    }

    .insight-stat-grid {
        grid-template-columns: 1fr;
    }

    .earthquake-controls label,
    .stats-control {
        flex: 1 1 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-search-form button,
    .feature-btn,
    .alerts-page-item,
    .earthquake-item,
    .stats-link-button {
        transition: none;
    }

    .feature-search-form button:hover,
    .feature-btn:hover,
    .alerts-page-item:hover,
    .earthquake-item:hover,
    .stats-link-button:hover {
        transform: none;
    }
}
