
.articles-section {
    padding: 80px 5%;
    background: #f8fafc;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 50px;
}

#searchArticle {
    width: 100%;
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(0, 56, 105, 0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    outline: none;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
}

.thumb-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content .author {
    color: #D4AF37;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-content h3 {
    margin: 10px 0;
    color: #003869;
    font-size: 1.4rem;
}

.card-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-read {
    display: inline-block;
    padding: 10px 20px;
    background: var(--blue-gradient);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

