/* Local Stories Display Styles - Modern Card Grid */
.local-stories {
    margin: 40px 0;
    padding: 20px 0;
}

.local-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 0 auto;
    max-width: 1200px;
}

.local-stories .story {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44,85,48,0.08), 0 1.5px 4px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 380px;
}

.local-stories .story:hover {
    box-shadow: 0 6px 24px rgba(44,85,48,0.16), 0 3px 8px rgba(0,0,0,0.08);
    transform: translateY(-4px) scale(1.02);
}

.story-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: #eaeaea;
    display: block;
}

.story-content {
    padding: 20px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.story-meta {
    font-size: 0.95em;
    color: #7a8a7f;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.story-title {
    font-size: 1.18em;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 10px;
    line-height: 1.25;
    min-height: 48px;
}

.story-description {
    color: #444;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 0;
    flex: 1;
}

@media (max-width: 900px) {
    .local-stories-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .story-image {
        height: 140px;
    }
    .container, .section-header, .scriptheading {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}

@media (max-width: 600px) {
    .local-stories {
        padding: 10px 0;
    }
    .local-stories-grid {
        gap: 18px;
    }
    .story-content {
        padding: 14px 10px 12px 10px;
    }
    .story-title {
        font-size: 1.05em;
        min-height: 36px;
    }
    .story-image {
        height: 100px;
    }
    .container, .section-header, .scriptheading {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

.local-stories .no-stories-message {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 2px dashed #ddd;
    margin: 0 auto;
    max-width: 600px;
} 