/* Articles Page Specific Styles */

/* Articles Hero Section */
.articles-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    border-bottom: 1px solid #333333;
}

.articles-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.articles-title {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(158, 244, 227);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.articles-description {
    font-size: 1.25rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Articles Grid Section */
.articles-grid {
    padding: 80px 0;
    background: #000000;
}

.article-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Article Card Styles */
.article-card {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(158, 244, 227, 0.2);
    border-color: rgb(158, 244, 227);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
}

.article-card-title {
    margin-bottom: 1rem;
}

.article-card-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.article-card-title a:hover {
    color: rgb(158, 244, 227);
}

.article-excerpt {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #888888;
}

.article-date, .article-read-time {
    display: flex;
    align-items: center;
}

.article-read-more {
    color: rgb(158, 244, 227);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.article-read-more:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Coming Soon Card */
.coming-soon-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 2px dashed #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
}

.coming-soon-content h3 {
    color: rgb(158, 244, 227);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.coming-soon-content p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .articles-hero {
        padding: 120px 0 60px;
    }
    
    .articles-title {
        font-size: 2.5rem;
    }
    
    .articles-description {
        font-size: 1.125rem;
    }
    
    .article-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-card-title a {
        font-size: 1.25rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .coming-soon-card {
        padding: 1.5rem;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .articles-hero {
        padding: 100px 0 40px;
    }
    
    .articles-title {
        font-size: 2rem;
    }
    
    .articles-description {
        font-size: 1rem;
    }
    
    .article-content {
        padding: 1.25rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.25rem;
    }
}