/* Sarasota Weather homepage */

.sarasota-home {
    max-width: 1180px;
    margin: 0 auto;
    color: #253444;
}

.weather-intro {
    padding: 24px 20px 12px;
    text-align: center;
}

.weather-intro h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 800;
    color: #123b5d;
}

.weather-lead {
    max-width: 850px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #4d6070;
}

.weather-widget-section {
    margin: 18px 0 34px;
}

#sarasota-weather-frame {
    width: 100%;
    border: 0;
    display: block;
    overflow: hidden;
}

.forecast-links,
.local-weather,
.sarasota-weather-info,
.weather-guides,
.weather-faq {
    margin: 38px 0;
    padding: 0 20px;
}

.sarasota-home h2 {
    margin: 0 0 20px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 750;
    color: #123b5d;
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.forecast-link {
    min-height: 125px;
    padding: 20px;
    border: 1px solid #dce7ef;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(24, 67, 98, 0.07);
    color: #123b5d;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.forecast-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 25px rgba(24, 67, 98, 0.13);
    color: #087baa;
}

.forecast-link strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.forecast-link span {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: #607283;
}

.location-grid,
.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.location-grid a,
.guide-grid a {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 14px 16px;
    border: 1px solid #dce7ef;
    border-radius: 10px;
    background: #f7fbfd;
    color: #155378;
    font-weight: 650;
    text-decoration: none;
}

.location-grid a:hover,
.guide-grid a:hover {
    background: #eaf6fb;
    color: #087baa;
}

.sarasota-weather-info {
    padding: 30px;
    border-radius: 16px;
    background: #f3f9fc;
}

.sarasota-weather-info p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.75;
}

.sarasota-weather-info p:last-child {
    margin-bottom: 0;
}

.weather-faq {
    max-width: 900px;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid #dce7ef;
}

.faq-item:first-of-type {
    border-top: 1px solid #dce7ef;
}

.faq-item h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #173f5d;
}

.faq-item p {
    margin: 0;
    line-height: 1.7;
    color: #4f6170;
}

@media (max-width: 991px) {
    .forecast-grid,
    .location-grid,
    .guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .weather-intro {
        padding: 18px 12px 8px;
    }

    .weather-lead {
        font-size: 16px;
    }

    .forecast-links,
    .local-weather,
    .sarasota-weather-info,
    .weather-guides,
    .weather-faq {
        margin: 28px 0;
        padding-left: 12px;
        padding-right: 12px;
    }

    .forecast-grid,
    .location-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .forecast-link {
        min-height: auto;
    }

    .sarasota-weather-info {
        padding: 22px 18px;
    }

    .sarasota-home h2 {
        font-size: 25px;
    }
}