/* ===========================
   Related Articles - Venue
=========================== */

.venue-articles-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.venue-related-articles {
    padding: 50px 20px;
    background: #fefefe;
    text-align: center;
}

.venue-related-articles h2 {
    font-size: 32px;
    font-weight: 800;
    color: #cab359;
    margin-bottom: 40px;
}

.venue-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;
}

.venue-article-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #cab359;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.venue-article-card h3 {
    font-size: 18px;
    padding: 15px 20px 25px;
}

.venue-article-card h3 a {
    color: #111;
    text-decoration: none;
}

.venue-article-card h3 a:hover {
    color: #cab359;
}

@media (min-width: 1024px) {
    .venue-articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
