/* Blog Section Styles for Director Receiving Soccer Equipment */
.blog-section {
    background: #f8f9fa;
    padding: 50px 0;
}
.blog-content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}
.blog-images {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}
.blog-images img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.blog-story {
    flex: 2;
    min-width: 300px;
    max-width: 600px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 30px;
}
.blog-story h3 {
    font-weight: 700;
    margin-bottom: 15px;
}
.blog-story p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.blog-story blockquote {
    background: #e9ecef;
    border-left: 4px solid #1e7e34;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-style: italic;
}
.blog-story blockquote span {
    font-weight: 600;
}
