.story-hero-banner {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #2d9e4a 0%, #001f8f 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.story-hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.story-list-wrapper {
    max-width: 1500px;
    margin: 50px auto;
    padding: 0 20px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-5px);
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    font-weight: bold;
    margin-bottom: 10px;
}

.category {
    color: #238e3a;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more-btn {
    margin-top: auto;
    background: #2aaf47;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}

.read-more-btn:hover {
    background: #238e3a;
}

.no-story-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 2px dashed #ddd;
}

.no-story-message h2 {
    margin-top: 20px;
    color: #666;
}
