/* **************************************** */
/* * PAGE BASE */
/* **************************************** */
:root {
    --navy: #2f466b;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --green: #2f7d57;
    --orange: #d97706;
    --red: #c93434;
    --red-dark: #9f2424;
    --ink: #172033;
    --muted: #5f6b7a;
    --line: #dbe3ec;
    --soft: #f5f8fb;
    --white: #ffffff;
}

html {
    background: var(--soft);
    scroll-behavior: smooth;
}

body {
    background: var(--soft);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

body * {
    box-sizing: border-box;
}

a {
    color: var(--blue-dark);
}

.skip-link {
    background: var(--white);
    left: 12px;
    padding: 10px 14px;
    position: absolute;
    top: -60px;
    z-index: 2000;
}

.skip-link:focus {
    top: 12px;
}

/* **************************************** */
/* * SITE HEADER */
/* **************************************** */
#siteHeader {
    background: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    line-height: normal;
}

#siteHeader,
#siteHeader * {
    box-sizing: content-box;
}

#top-bar {
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    padding: 10px 7px 5px;
    text-align: center;
}

#top-bar p {
    color: var(--white);
    font-size: 13px;
    line-height: 16px;
    margin: 0;
}

.inner-wrap {
    margin: 0 auto;
    max-width: 1000px;
    min-width: 300px;
}

.site-identity {
    height: 43.5px;
}

#header-logo {
    color: var(--white);
    display: inline-block;
    float: left;
    padding-left: 10px;
    text-align: center;
    width: 350px;
}

#header-logo img {
    float: left;
    height: 42px;
    max-width: 100%;
    width: auto;
}

#header-logo h2,
#header-logo h3 {
    color: var(--white);
    display: block;
    float: left;
    margin: 0;
    padding-left: 10px;
}

#header-logo h2 {
    font-size: 24px;
    font-weight: 700;
}

#header-logo h3 {
    font-size: 14px;
    font-weight: 100;
    text-align: left;
    width: 242px;
}

#header-text {
    color: var(--white);
    float: right;
    font-size: 13px;
    padding-right: 10px;
    text-align: right;
    width: 350px;
}

#header-text span {
    display: block;
    float: right;
}

.social-logos-facebook-icon,
.social-logos-twitter-icon,
.social-logos-linkedin-icon,
.social-logos-you-tube-icon {
    background-image: url("https://www.gbmaps.com/5-digit-postcode-sector-maps/sprites.png");
    background-repeat: no-repeat;
    height: 35px;
    width: 35px;
}

.social-logos-facebook-icon {
    background-position: -92px -4px;
}

.social-logos-twitter-icon {
    background-position: -138px -4px;
}

.social-logos-linkedin-icon {
    background-position: -182px -4px;
}

.social-logos-you-tube-icon {
    background-position: -224px -4px;
}

#header {
    background: #30466b;
    height: 44px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1100;
}

.header-inner-wrap {
    height: 44px;
    margin: 0 auto;
    max-width: 1000px;
    min-width: 300px;
}

#menu {
    padding-top: 1px;
    position: relative;
}

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0 1%;
}

#navigation {
    float: left;
    margin-right: 250px !important;
}

#menu li {
    float: left;
    position: relative;
}

#menu a {
    background: #000000;
    border: 1px solid var(--white);
    color: var(--white);
    display: block;
    font-size: 16px;
    line-height: normal;
    margin-left: -1px;
    margin-top: -1px;
    padding: 8px;
    text-align: center;
    text-decoration: none;
}

#menu a:hover,
#menu a:focus {
    background: #636466;
}

#help {
    position: absolute;
    right: 0;
}

#helplink {
    float: right !important;
}

#helplink a {
    background: #56ba48;
}

#helplink a:hover,
#helplink a:focus {
    background: #3e9733;
}

#navigation ul {
    display: none;
    left: 0;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    position: absolute;
    top: 100%;
    width: 150%;
    z-index: 1200;
}

#navigation li:hover > ul,
#navigation li:focus-within > ul {
    display: block;
}

#navigation ul a {
    background: #636466;
    border: 0;
    border-bottom: 1px solid #636466;
    border-top: 1px solid #636466;
    color: var(--white);
    display: block;
    font-size: 16px;
    line-height: normal;
    margin-top: 0;
    padding: 8px;
    text-align: center;
    text-decoration: none;
}

#navigation ul a:hover,
#navigation ul a:focus {
    background: #000000;
}

#menu-toggle {
    display: none;
}

#menu li li {
    float: none;
}

.header-clear {
    clear: both;
}

/* **************************************** */
/* * MAIN LAYOUT */
/* **************************************** */
#wildfireTool {
    margin: 0 auto;
    max-width: 1180px;
    padding: 18px 20px 54px;
}

.breadcrumbs {
    align-items: center;
    color: #64748b;
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 7px;
    margin: 0 0 16px;
}

.breadcrumbs a {
    text-decoration: none;
}

.tool-hero,
.map-card,
.content-card,
.source-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.tool-hero {
    align-items: center;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    padding: 30px;
}

.eyebrow {
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.tool-hero h1,
.section-heading h2,
.content-card > h2,
.source-panel h2 {
    color: var(--navy);
    font-weight: 750;
    letter-spacing: -.02em;
}

.tool-hero h1 {
    font-size: 38px;
    line-height: 1.12;
    margin: 0 0 12px;
}

.hero-copy > p:last-child {
    color: var(--muted);
    font-size: 17px;
    margin: 0;
    max-width: 650px;
}

/* **************************************** */
/* * POSTCODE SEARCH */
/* **************************************** */
#postcodeSearchForm {
    background: #eff6ff;
    border: 1px solid #cfe0f7;
    border-radius: 9px;
    padding: 20px 14px;
}

#postcodeSearchForm label {
    color: var(--navy);
    display: block;
    font-size: 15px;
    font-weight: 750;
    margin-bottom: 8px;
}

.postcode-controls {
    display: grid;
    gap: 6px;
    grid-template-columns: minmax(0, 1fr) 50px;
}

#postcode {
    background: var(--white);
    border: 1px solid #9fb1c5;
    border-radius: 7px;
    color: var(--ink);
    font: inherit;
    font-size: 17px;
    min-height: 50px;
    padding: 0 10px;
    text-transform: uppercase;
    width: 100%;
}

#postcode:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .13);
    outline: none;
}

#postcodeSearchButton {
    background: var(--blue);
    border: 0;
    border-radius: 7px;
    color: var(--white);
    cursor: pointer;
    font: inherit;
    min-height: 50px;
    padding: 0;
    position: relative;
    width: 50px;
}

#postcodeSearchButton::before {
    border: 3px solid currentColor;
    border-radius: 50%;
    content: '';
    height: 12px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-68%, -68%);
    width: 12px;
}

#postcodeSearchButton::after {
    background: currentColor;
    border-radius: 2px;
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(3px, 6px) rotate(45deg);
    width: 10px;
}

#postcodeSearchButton:hover,
#postcodeSearchButton:focus {
    background: var(--blue-dark);
}

#postcodeSearchButton:disabled {
    cursor: wait;
    opacity: .65;
}

.form-note,
.form-error {
    font-size: 12px;
    margin: 8px 0 0;
}

.form-note {
    color: var(--muted);
}

.form-error {
    color: var(--red-dark);
    font-weight: 700;
    min-height: 19px;
}

/* **************************************** */
/* * SEARCH RESULT */
/* **************************************** */
.postcode-result {
    border: 1px solid;
    border-radius: 10px;
    margin-top: 18px;
    padding: 20px 24px;
}

.postcode-result.is-detected {
    background: #fff4ed;
    border-color: #efb38e;
}

.postcode-result.is-clear {
    background: #edf9f2;
    border-color: #acd8bc;
}

.result-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.postcode-result h2 {
    color: var(--ink);
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 7px;
}

#postcodeResultMessage {
    margin: 0;
}

.result-details {
    display: grid;
    gap: 9px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 17px 0 0;
}

.result-details div {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(95, 107, 122, .18);
    border-radius: 7px;
    padding: 10px 12px;
}

.result-details dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.result-details dd {
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    margin: 3px 0 0;
}

.result-warning {
    background: #fff8e8;
    border: 1px solid #dfbd6a;
    border-radius: 7px;
    color: #614b17;
    font-size: 13px;
    margin: 12px 0 0;
    padding: 10px 12px;
}

/* **************************************** */
/* * AMAZON AFFILIATE ADVERTISEMENT */
/* **************************************** */
.affiliate-ad {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 9px 20px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0 0 18px;
    padding: 0 0 16px;
}

.affiliate-ad-copy h3 {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.25;
    margin: 0 0 4px;
}

.affiliate-ad-copy > p:last-child {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    max-width: 690px;
}

.affiliate-ad-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    max-width: 330px;
}

.affiliate-ad-links a {
    background: var(--navy);
    border-radius: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: 750;
    padding: 9px 12px;
    text-decoration: none;
    white-space: nowrap;
}

.affiliate-ad-links a:hover,
.affiliate-ad-links a:focus {
    background: var(--blue-dark);
    color: var(--white);
}

.affiliate-ad-disclosure {
    color: var(--muted);
    font-size: 11px;
    grid-column: 1 / -1;
    margin: 0;
}

/* **************************************** */
/* * MAP */
/* **************************************** */
.map-card,
.content-card {
    margin-top: 20px;
    padding: 24px;
}

.section-heading {
    align-items: end;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-heading h2,
.content-card > h2 {
    font-size: 27px;
    line-height: 1.2;
    margin: 0;
}

.checked-date {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
    white-space: nowrap;
}

.map-stage {
    position: relative;
}

#wildfireMap {
    background: #eaf0f5;
    border: 1px solid var(--line);
    border-radius: 8px;
    height: 590px;
    overflow: hidden;
    width: 100%;
}

#loadMapButton {
    background: var(--blue);
    border: 0;
    border-radius: 7px;
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-weight: 750;
    left: 50%;
    min-height: 48px;
    padding: 0 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

#loadMapButton:hover,
#loadMapButton:focus {
    background: var(--blue-dark);
}

.leaflet-popup-content {
    color: var(--ink);
    line-height: 1.45;
    margin: 14px 16px;
}

.leaflet-popup-content strong,
.leaflet-popup-content span {
    display: block;
}

.leaflet-popup-content strong {
    color: var(--navy);
    font-size: 15px;
    margin-bottom: 3px;
}

.leaflet-popup-content span {
    color: var(--muted);
    font-size: 12px;
}

.map-key {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 13px;
}

.map-key span {
    align-items: center;
    color: var(--muted);
    display: flex;
    font-size: 12px;
    gap: 7px;
}

.fire-swatch {
    display: inline-block;
    filter: drop-shadow(0 0 1px var(--white)) drop-shadow(0 1px 1px rgba(23, 32, 51, .55));
    height: 22px;
    width: 22px;
}

.fire-swatch svg {
    display: block;
    fill: currentColor;
    height: 100%;
    width: 100%;
}

.postcode-swatch {
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(23, 32, 51, .45);
    display: inline-block;
    height: 18px;
    width: 18px;
}

.nominal-fire {
    color: #f59e0b;
}

.high-fire {
    color: #dc2626;
}

.postcode-swatch {
    background: var(--blue);
}

.wildfire-flame-marker {
    background: transparent;
    border: 0;
    filter: drop-shadow(0 0 1px var(--white)) drop-shadow(0 1px 2px rgba(23, 32, 51, .7));
}

.wildfire-flame-marker svg {
    display: block;
    fill: currentColor;
    height: 100%;
    transform-origin: center bottom;
    transition: transform .15s ease;
    width: 100%;
}

.wildfire-flame-marker.is-nearest svg {
    filter: drop-shadow(0 0 2px var(--white)) drop-shadow(0 0 2px var(--ink));
    transform: scale(1.2);
}

.map-note {
    color: var(--muted);
    font-size: 12px;
    margin: 12px 0 0;
}

/* **************************************** */
/* * WILDFIRE REPORT FORM */
/* **************************************** */
.report-intro,
.user-reports-intro {
    color: #445469;
    font-size: 14px;
    margin: 10px 0 0;
    max-width: 850px;
}

#wildfireReportForm {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    max-width: 760px;
}

.report-field {
    display: grid;
    gap: 6px;
}

.report-field label {
    color: var(--navy);
    font-size: 14px;
    font-weight: 750;
}

.report-field input,
.report-field textarea {
    background: var(--white);
    border: 1px solid #9fb1c5;
    border-radius: 7px;
    color: var(--ink);
    font: inherit;
    padding: 10px 12px;
    width: 100%;
}

.report-field input {
    min-height: 46px;
}

.report-field textarea {
    min-height: 145px;
    resize: vertical;
}

.report-field input:focus,
.report-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .13);
    outline: 0;
}

.report-honeypot {
    left: -10000px;
    position: absolute;
}

.report-public-note {
    color: var(--muted);
    font-size: 12px;
    margin: -3px 0 0;
}

#wildfireReportButton {
    background: var(--blue);
    border: 0;
    border-radius: 7px;
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-weight: 750;
    justify-self: start;
    min-height: 44px;
    padding: 0 20px;
}

#wildfireReportButton:hover,
#wildfireReportButton:focus {
    background: var(--blue-dark);
}

#wildfireReportButton:disabled {
    cursor: wait;
    opacity: .7;
}

.report-status {
    color: #8b1e1e;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    min-height: 20px;
}

.report-status.is-success {
    color: var(--green);
}

/* **************************************** */
/* * USER WILDFIRE REPORTS */
/* **************************************** */
.user-reports-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.user-report {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 15px 17px;
}

.user-report-header {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    justify-content: space-between;
}

.user-report h3 {
    color: var(--navy);
    font-size: 16px;
    margin: 0;
}

.user-report time {
    color: var(--muted);
    font-size: 12px;
}

.user-report p {
    color: #445469;
    font-size: 14px;
    margin: 9px 0 0;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.user-reports-message {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

/* **************************************** */
/* * SAFETY AND METHOD CONTENT */
/* **************************************** */
.safety-grid,
.method-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.safety-grid article,
.method-step {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
}

.safety-grid h3,
.method-step h3 {
    color: var(--navy);
    font-size: 17px;
    margin: 0 0 7px;
}

.safety-grid p,
.method-step p {
    color: #445469;
    font-size: 14px;
    margin: 0;
}

.emergency-warning {
    background: #fff2f2;
    border: 1px solid #e5a4a4;
    border-radius: 8px;
    color: #6f2020;
    font-size: 14px;
    margin-top: 14px;
    padding: 13px 15px;
}

.method-grid {
    counter-reset: method-step;
}

.method-step h3::before {
    background: var(--navy);
    border-radius: 50%;
    color: var(--white);
    content: counter(method-step);
    counter-increment: method-step;
    display: inline-block;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    margin-right: 8px;
    text-align: center;
    width: 24px;
}

/* **************************************** */
/* * FREQUENTLY ASKED QUESTIONS */
/* **************************************** */
.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 0;
}

.faq-list summary {
    color: var(--navy);
    cursor: pointer;
    font-size: 16px;
    font-weight: 750;
    padding: 15px 4px;
}

.faq-list details p {
    color: #445469;
    font-size: 14px;
    margin: -3px 0 15px;
    max-width: 900px;
    padding: 0 4px;
}

/* **************************************** */
/* * DATA SOURCES */
/* **************************************** */
.source-panel {
    margin-top: 20px;
    padding: 18px 22px;
}

.source-panel h2 {
    font-size: 18px;
    margin: 0 0 6px;
}

.source-panel p {
    color: var(--muted);
    font-size: 12px;
    margin: 0;
}

/* **************************************** */
/* * SITE FOOTER */
/* **************************************** */
#footerContainer {
    background: #2f466b;
    border-top: 4px solid #0099ff;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    padding: 22px 0;
    width: 100%;
}

#footerContainer,
#footerContainer * {
    box-sizing: border-box;
}

#footerContainer .inner-wrap {
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 15px;
}

#shortcutRow {
    display: grid;
    gap: 24px 14px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

#shortcutRow > div[style],
.shortcutColumn > div,
.shortcutColumn2 > div,
.shortcutColumn3 > div,
.shortcutColumn4 > div,
.shortcutColumn5 > div,
.shortcutColumn6 > div {
    display: none;
}

#shortcutRow a {
    color: #cbd5e1;
    display: block;
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 5px;
    text-decoration: none;
}

#shortcutRow a:hover,
#shortcutRow a:focus {
    color: var(--white);
    text-decoration: underline;
}

#shortcutTitle,
#shortcutTitle2,
#shortcutTitle3,
#shortcutTitle4,
#shortcutTitle5,
#shortcutTitle6 {
    color: var(--white) !important;
    font-weight: 700;
    margin-bottom: 9px !important;
}

#shortcutRow hr {
    border: 0;
    border-top: 1px solid #71809a;
    grid-column: 1 / -1;
    margin: 0;
    width: 100%;
}

#myfooter {
    align-items: flex-start;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    padding-top: 18px;
}

#footer-logo {
    color: var(--white);
    min-width: 280px;
}

#footer-logo .flag {
    display: none;
}

#footer-logo h2,
#footer-logo h3 {
    color: var(--white);
    margin: 0;
}

#footer-logo h2 {
    font-size: 24px;
    line-height: 1.2;
}

#footer-logo h3 {
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
}

#footer-text {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.6;
    text-align: right;
}

#footer-text > br:first-child {
    display: none;
}

#footer-text a {
    color: var(--white);
}

@media (max-width: 900px) {
    #shortcutRow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    #shortcutRow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #myfooter {
        flex-direction: column;
        gap: 16px;
    }

    #footer-text {
        text-align: left;
    }
}

@media (max-width: 420px) {
    #shortcutRow {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* **************************************** */
/* * RESPONSIVE LAYOUT */
/* **************************************** */
@media (max-width: 920px) {
    #header {
        height: auto;
        min-height: 44px;
    }

    .header-inner-wrap,
    #menu {
        height: auto;
        min-height: 44px;
    }

    #menu-toggle {
        background: #30466b;
        border: 0;
        box-sizing: border-box;
        color: var(--white);
        cursor: pointer;
        display: block;
        font: inherit;
        font-weight: 700;
        height: 44px;
        padding: 0 16px;
        text-align: left;
        width: 100%;
    }

    #navigation,
    #help {
        display: none;
    }

    #header.active-menu #navigation,
    #header.active-menu #help {
        display: block;
    }

    #navigation {
        float: none;
        margin-right: 0 !important;
        padding: 0 !important;
    }

    #help {
        padding: 0 !important;
        position: static;
    }

    #navigation li,
    #helplink {
        float: none !important;
    }

    #menu > #navigation > li > a,
    #helplink > a {
        border: 1px solid var(--white);
        height: auto;
        min-height: 0;
        padding: 8px;
        text-align: center;
    }

    #navigation ul,
    #navigation li:hover > ul,
    #navigation li:focus-within > ul {
        display: block;
        max-height: none;
        min-width: 0;
        overflow: visible;
        position: static;
        width: auto;
    }

    #navigation ul a {
        padding: 8px;
    }

    .tool-hero {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .result-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .affiliate-ad {
        grid-template-columns: minmax(0, 1fr);
    }

    .affiliate-ad-links {
        justify-content: flex-start;
        max-width: none;
    }

    .safety-grid,
    .method-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 680px) {
    .site-identity {
        height: auto;
    }

    #header-logo {
        display: block;
        float: none;
        margin: 0 auto;
        padding: 0;
        width: 290px;
    }

    #header-text {
        float: none;
        margin: 0 auto;
        padding: 0;
        text-align: center;
        width: 290px;
    }

    #wildfireTool {
        padding: 14px 12px 34px;
    }

    .tool-hero,
    .map-card,
    .content-card,
    .source-panel {
        border-radius: 8px;
        padding: 17px;
    }

    .tool-hero {
        gap: 20px;
    }

    .tool-hero h1 {
        font-size: 30px;
    }

    .hero-copy > p:last-child {
        font-size: 15px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 7px;
    }

    .section-heading h2,
    .content-card > h2 {
        font-size: 23px;
    }

    .checked-date {
        white-space: normal;
    }

    #wildfireMap {
        height: 480px;
    }
}

@media (max-width: 520px) {
    .result-details {
        grid-template-columns: minmax(0, 1fr);
    }
}
