.articles-wrapper {
    padding: 60px 20px;
    background: #f9f9f9;
}
.articles-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
}
.articles-wrapper h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
.articles-wrapper .intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.article-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}
.article-card:hover {
    transform: translateY(-5px);
}
.article-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}
.article-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.article-card p {
    font-size: 15px;
    color: #666;
}
.article-card a {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
.article-card a:hover {
    text-decoration: underline;
}
