/* Articles Page Styles */
.articles-page {
    min-height: 100vh;
    background: #fff;
}

.articles-page .hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 20px;
    text-align: center;
}

.articles-page .hero-section h1 {
    font-family: 'Aptos-Display', Helvetica;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.articles-page .hero-section p {
    font-family: 'Aptos', Helvetica;
    font-size: 18px;
    color: #ebebeb;
    max-width: 600px;
    margin: 0 auto;
}

.articles-page .filters-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.articles-page .filters-section > div {
    background: #F6F8F6;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.articles-page .filters-section label {
    font-family: 'Aptos-Bold', Helvetica;
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.articles-page .filters-section select {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Aptos', Helvetica;
    font-size: 14px;
    background: white;
    cursor: pointer;
    min-width: 150px;
    transition: border-color 0.3s ease;
}

.articles-page .filters-section select:hover {
    border-color: #999;
}

.articles-page .filters-section select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.articles-page .articles-grid {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.articles-page .div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    width: 100%;
    justify-content: center;
}

.articles-page .content-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.articles-page .content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* See More Link Styles */
.see-more-container {
    text-align: center;
    margin-top: 40px;
}

.see-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Aptos-Bold', Helvetica;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.see-more-link:hover {
    background: #333;
    transform: translateX(4px);
}

.see-more-link:active {
    transform: translateX(2px);
}

/* No Results State */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results img {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-results h3 {
    font-family: 'Aptos-Display', Helvetica;
    font-size: 24px;
    color: #333;
    margin-bottom: 12px;
}

.no-results p {
    font-family: 'Aptos', Helvetica;
    font-size: 16px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .articles-page .hero-section h1 {
        font-size: 32px;
    }
    
    .articles-page .hero-section p {
        font-size: 16px;
    }
    
    .articles-page .filters-section > div {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .articles-page .div {
        grid-template-columns: 1fr;
    }
    
    .see-more-link {
        font-size: 14px;
        padding: 10px 24px;
    }
}
