/* GLOBAL */
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* BRAND COLORS */
:root {
    --fixfox-orange: #ff7a00;
    --fixfox-orange-light: #ffa64d;
    --fixfox-black: #000000;
    --fixfox-darkgray: #1a1a1a;
    --fixfox-lightgray: #e5e5e5;
}

/* HEADER */
.main-header {
    background: #1a1a1a;
    border-bottom: 3px solid var(--fixfox-orange);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.main-header-transparent {
    background: transparent !important;
    border-bottom: none !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.header-logo {
    height: 100px;
    margin-top: 0;
}

.header-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.7rem;
    padding-top: 0;
    align-self: center;
}

    .header-title span {
        color: var(--fixfox-orange);
    }

.header-nav {
    padding-top: 0;
    align-self: center;
}

.header-cta {
    background: var(--fixfox-orange);
    color: #000;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: background .2s ease;
    align-self: center;
}

.header-cta-top {
    margin-top: 0;
    align-self: center;
}

.header-cta:hover {
    background: var(--fixfox-orange-light);
}

.main-header .nav-link {
    font-weight: 500;
    color: white;
    transition: color .2s ease, border-bottom .2s ease;
    padding-bottom: 3px;
}

    .main-header .nav-link:hover {
        color: var(--fixfox-orange);
        border-bottom: 2px solid var(--fixfox-orange);
    }

/* SIDEBAR */
.sidebar {
    width: 260px;
    background: var(--fixfox-darkgray);
    padding: 20px;
    color: white;
}

    .sidebar .nav-link {
        color: #ffffff;
        padding: 10px 0;
        display: block;
        font-size: 1rem;
        transition: color .2s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 220px;
    }

        .sidebar .nav-link:hover {
            color: var(--fixfox-orange);
        }

        .sidebar .nav-link.active {
            background-color: transparent !important;
            border-left: none !important;
            color: var(--fixfox-orange) !important;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .sidebar .nav-item-header {
        color: var(--fixfox-orange);
        font-size: .9rem;
        margin-top: 20px;
        text-transform: uppercase;
        font-weight: bold;
    }

/* MAIN CONTENT */
.layout-wrapper {
    min-height: 100vh;
}

.main-content {
    background: #ffffff;
}

.content-area {
    min-height: 70vh;
    padding: 0 !important;
}

/* HERO */
.hero-section {
    position: relative;
    background: url('/images/background-image.jpeg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 140px 60px 80px 60px;
    max-width: 750px;
}

.hero-badge {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #ccc;
    border: 1px solid #555;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title-accent {
    color: var(--fixfox-orange);
}

.hero-sub {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 550px;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-hero-primary {
    background: var(--fixfox-orange);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s ease;
}

    .btn-hero-primary:hover {
        background: var(--fixfox-orange-light);
    }

.btn-hero-secondary {
    background: transparent;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 4px;
    border: 2px solid white;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

    .btn-hero-secondary:hover {
        background: white;
        color: #000;
    }

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.hero-stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #aaa;
    text-transform: uppercase;
}

/* SERVICE CARDS */
.service-card {
    border-radius: 10px;
    transition: transform .2s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
    }

/* CTA SECTION */
.cta-section {
    background: var(--fixfox-orange);
    color: #000;
}

/* ABOUT HERO */
.about-hero {
    background: url('/images/hero-construction.png') center/cover no-repeat;
    padding: 120px 0;
    position: relative;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

/* SERVICE BOXES */
.service-box {
    background: #ffffff;
    border-radius: 10px;
    transition: transform .2s ease;
}

    .service-box:hover {
        transform: translateY(-5px);
    }

.service-link {
    color: var(--fixfox-orange);
    font-weight: 600;
    text-decoration: none;
}

    .service-link:hover {
        text-decoration: underline;
    }

/* STATS BANNER */
.stats-banner {
    background: var(--fixfox-orange);
    text-align: center;
}

    .stats-banner h2 {
        font-size: 2.5rem;
    }

/* TESTIMONIALS */
.testimonial-box {
    background: #ffffff;
    border-radius: 10px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* TESTIMONIAL CAROUSEL */
.testimonial-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-box {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    transition: opacity .3s ease;
}

.carousel-btn {
    background: var(--fixfox-orange);
    color: #000;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .carousel-btn:hover {
        background: var(--fixfox-orange-light);
    }

/* HAMBURGER BUTTON */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 4px;
    z-index: 10000;
    position: relative;
    align-self: center;
}

    .hamburger-btn .hamburger-line {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 3px;
    }

.close-icon {
    font-size: 1.5rem;
    color: white;
    line-height: 1;
    background: none;
    border: none;
    display: block;
}

/* MOBILE FULLSCREEN NAV */
.mobile-fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111;
    z-index: 998;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 120px 40px 60px 40px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    padding: 12px 0;
    border-bottom: 1px solid #2a2a2a;
    text-decoration: none;
    transition: color .2s ease;
}

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        color: var(--fixfox-orange);
    }

.mobile-nav-footer {
    margin-top: 60px;
}

.mobile-nav-cta {
    display: block;
    width: 100%;
    background: var(--fixfox-orange);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-align: center;
    padding: 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s ease;
}

    .mobile-nav-cta:hover {
        background: var(--fixfox-orange-light);
    }

.mobile-nav {
    display: none;
}

.nav-scrollable {
    display: flex !important;
}

/* PAGE HERO (all non-home pages) */
.page-hero {
    background: var(--fixfox-darkgray);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 180px 80px 80px 80px;
    position: relative;
    flex-wrap: wrap;
}

.page-hero-content {
    flex: 1;
    min-width: 300px;
    color: white;
}

.page-hero-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--fixfox-orange);
    margin-bottom: 12px;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin-bottom: 40px;
}

.page-hero-title-accent {
    color: var(--fixfox-orange);
}

.page-hero-info-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page-hero-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #2a2a2a;
    padding: 16px 20px;
    border-radius: 6px;
}

.page-hero-info-icon {
    font-size: 1.4rem;
    width: 40px;
    text-align: center;
}

.page-hero-info-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #aaa;
    margin: 0;
}

.page-hero-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.page-hero-card {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    flex-shrink: 0;
}

.page-hero-card-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero-card-sub {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 28px;
}

.page-form-label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.page-form-input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 10px 14px;
    color: white;
    font-size: 0.95rem;
}

    .page-form-input:focus {
        outline: none;
        border-color: var(--fixfox-orange);
    }

.page-submit-btn {
    width: 100%;
    background: var(--fixfox-orange);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s ease;
    margin-top: 8px;
}

    .page-submit-btn:hover {
        background: var(--fixfox-orange-light);
    }

.page-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.page-form-success {
    background: #1a3a1a;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 20px;
    color: #a5d6a7;
    text-align: center;
}

.page-form-error {
    color: #ef9a9a;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.services-testimonial {
    background: var(--fixfox-darkgray);
    padding: 80px 60px;
}

.services-testimonial-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

    .services-testimonial-title span {
        color: var(--fixfox-orange);
    }

.testimonial-box-dark {
    background: #2a2a2a;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-text-dark {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.testimonial-author-dark {
    color: var(--fixfox-orange);
    font-weight: 700;
}
/* HOME ABOUT */
.home-about {
    background: var(--fixfox-darkgray);
    padding: 80px 80px;
}

.home-about-inner {
    max-width: 800px;
}

.home-about-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
}

    .home-about-title span {
        color: var(--fixfox-orange);
    }

.home-about-text {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.8;
}

/* HOME SERVICES */
.home-services {
    background: #111;
    padding: 80px 80px;
}

.home-services-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    text-align: center;
    margin-bottom: 48px;
}

    .home-services-title span {
        color: var(--fixfox-orange);
    }

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.home-service-card {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 32px;
    text-decoration: none;
    transition: transform .2s ease, border .2s ease;
    border: 1px solid transparent;
    display: block;
}

    .home-service-card:hover {
        transform: translateY(-4px);
        border-color: var(--fixfox-orange);
    }

.home-service-card-title {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin-bottom: 12px;
}

.home-service-card-desc {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.home-service-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--fixfox-orange);
    letter-spacing: 1px;
}

/* HOME CTA */
.home-cta {
    background: var(--fixfox-darkgray);
    padding: 80px;
    text-align: center;
    border-top: 3px solid var(--fixfox-orange);
}

.home-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
}

    .home-cta-title span {
        color: var(--fixfox-orange);
    }

.home-cta-sub {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 32px;
}
#blazor-error-ui {
    display: none !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .main-header {
        position: fixed !important;
        z-index: 9999 !important;
        transition: background .25s ease, border-bottom .25s ease;
    }

        .main-header:not(.main-header-transparent) {
            background: #1a1a1a !important;
            border-bottom: 3px solid var(--fixfox-orange) !important;
        }

    .main-header-transparent {
        background: transparent !important;
        border-bottom: none !important;
    }

    .header-logo {
        height: 80px;
        align-self: center;
    }

    .header-title {
        font-size: 1.2rem;
        padding-top: 0 !important;
        white-space: nowrap;
        align-self: center;
    }

    .hamburger-btn {
        align-self: center;
        margin-top: 0;
    }

    .main-header .container-fluid {
        align-items: center !important;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-content {
        padding: 140px 24px 60px 24px;
    }

    .hero-stats {
        gap: 28px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }

    .page-hero {
        flex-direction: column;
        padding: 140px 24px 60px 24px;
    }

    .page-hero-card {
        max-width: 100%;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 1px;
        padding: 4px 10px;
        max-width: 100%;
        white-space: normal;
        line-height: 1.4;
    }

    .mobile-fullscreen-nav {
        background: #111;
    }
    .home-about {
        padding: 60px 24px;
    }

    .home-about-title {
        font-size: 1.8rem;
    }

    .home-services {
        padding: 60px 24px;
    }

    .home-services-title {
        font-size: 1.8rem;
    }

    .home-cta {
        padding: 60px 24px;
    }

    .home-cta-title {
        font-size: 1.8rem;
    }

    .hail-map-canvas {
        height: 380px;
    }

    .hail-events-inner {
        padding: 60px 24px;
    }

    .hail-events-title {
        font-size: 1.8rem;
    }

    .hail-table th, .hail-table td {
        padding: 10px 8px;
        font-size: 0.82rem;
    }

}

/* ===== HAIL TRACKER ===== */

.hail-hero {
    min-height: auto;
    padding-bottom: 80px;
}

.hail-map-section {
    background: #111;
    padding: 60px 0 0 0;
}

.hail-map-header {
    text-align: center;
    padding: 0 24px 32px 24px;
}

.hail-map-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin-bottom: 8px;
}

    .hail-map-title span {
        color: var(--fixfox-orange);
    }

.hail-map-sub {
    color: #aaa;
    font-size: 0.95rem;
    margin: 0;
}

.hail-map-canvas {
    width: 100%;
    height: 500px;
    display: block;
}

.hail-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 20px 24px;
    background: #1a1a1a;
}

.hail-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.88rem;
}

.hail-legend-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    flex-shrink: 0;
}

.hail-dot-minor    { background: #28a745; }
.hail-dot-moderate { background: #ff7a00; }
.hail-dot-severe   { background: #dc3545; }

.hail-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #aaa;
    gap: 16px;
}

.hail-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #333;
    border-top-color: var(--fixfox-orange);
    border-radius: 50%;
    animation: hail-spin 0.8s linear infinite;
}

@keyframes hail-spin {
    to { transform: rotate(360deg); }
}

.hail-events-section {
    background: #fff;
    padding: 0;
}

.hail-events-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.hail-events-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 40px;
}

    .hail-events-title span {
        color: var(--fixfox-orange);
    }

.hail-empty {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 48px;
    text-align: center;
    color: #888;
    font-size: 1rem;
}

.hail-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.hail-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

    .hail-table thead tr {
        background: #1a1a1a;
        color: white;
    }

    .hail-table th {
        padding: 14px 16px;
        text-align: left;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: 700;
    }

    .hail-table td {
        padding: 14px 16px;
        border-bottom: 1px solid #f0f0f0;
        vertical-align: top;
        color: #333;
    }

.hail-row-severe  { background: #fff5f5; }
.hail-row-moderate { background: #fff8f0; }
.hail-row-minor   { background: #ffffff; }

    .hail-row-severe:hover,
    .hail-row-moderate:hover,
    .hail-row-minor:hover {
        background: #fafafa;
    }

.hail-county {
    font-size: 0.78rem;
    color: #888;
}

.hail-size-label {
    font-size: 0.78rem;
    color: #888;
}

.hail-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hail-badge-minor    { background: #e6f4ea; color: #1e7e34; }
.hail-badge-moderate { background: #fff0e0; color: #c85c00; }
.hail-badge-severe   { background: #fde8e8; color: #b02020; }

.hail-comments {
    font-size: 0.82rem;
    color: #666;
    max-width: 240px;
}

.hail-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.hail-page-info {
    font-size: 0.85rem;
    color: #888;
}

.hail-page-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.hail-page-btn {
    padding: 6px 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

    .hail-page-btn:hover:not(:disabled) {
        background: #f0f0f0;
    }

    .hail-page-btn:disabled {
        opacity: 0.4;
        cursor: default;
    }

.hail-page-ellipsis {
    padding: 6px 4px;
    color: #aaa;
    font-size: 0.85rem;
    user-select: none;
}

.hail-page-btn-active {
    background: var(--fixfox-orange) !important;
    color: #fff !important;
    border-color: var(--fixfox-orange) !important;
}

.hail-source-note {
    margin-top: 20px;
    font-size: 0.78rem;
    color: #aaa;
    text-align: center;
}

/* FORECAST SECTION */
.hail-forecast-section {
    background: #f5f5f5;
    padding: 0;
}

.hail-forecast-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.hail-forecast-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

    .hail-forecast-title span {
        color: var(--fixfox-orange);
    }

.hail-forecast-unavailable {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    padding: 40px 0;
}

.hail-forecast-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.hail-forecast-card {
    background: white;
    border-radius: 10px;
    padding: 20px 12px;
    text-align: center;
    border-top: 4px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .hail-forecast-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

.hail-forecast-none   { border-top-color: #28a745; }
.hail-forecast-storm  { border-top-color: #f0b429; }
.hail-forecast-hail   { border-top-color: #ff7a00; }
.hail-forecast-large-hail { border-top-color: #dc3545; }

.hail-forecast-emoji {
    font-size: 2rem;
    line-height: 1;
}

.hail-forecast-day {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hail-forecast-date {
    font-size: 0.78rem;
    color: #888;
}

.hail-forecast-badge {
    display: inline-block;
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    margin: 2px auto;
}

.hail-forecast-precip {
    font-size: 0.75rem;
    color: #555;
}

.hail-forecast-desc {
    font-size: 0.78rem;
    color: #777;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .hail-forecast-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .hail-forecast-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hail-forecast-inner {
        padding: 60px 24px;
    }

    .hail-forecast-title {
        font-size: 1.8rem;
    }
}

