/* Technology Articles Section */
.tech-articles {
    padding: 4rem 0;
    background: #f8f9fa;
}

.tech-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #0d1b2a;
    font-size: 2.5rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.15);
}

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

.article-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: #0d1b2a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

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

.article-details {
    margin-bottom: 1.5rem;
}

.article-details p {
    margin-bottom: 1rem;
    color: #0d1b2a;
    line-height: 1.6;
}

.article-details ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-details li {
    margin-bottom: 0.8rem;
    color: #0d1b2a;
    line-height: 1.5;
}

.article-details li strong {
    color: #007bff;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #6c757d;
}

.read-time {
    font-weight: 500;
}

.article-date {
    color: #007bff;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-articles h2 {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}