/* Articles Hub - Horizontal Row Layout */

.article-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.article-row {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-subtle);
}

.article-row:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--bg-subtle);
    border-right: 1px solid var(--border-color);
}

.article-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    background: #f0f4ff;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.article-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--secondary);
}

.article-info p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.read-more {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more::after {
    content: '→';
    transition: transform 0.2s ease;
}

.article-row:hover .read-more::after {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .article-row {
        grid-template-columns: 300px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .article-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .article-image {
        height: 200px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .article-info {
        padding: 1.5rem;
    }
    .article-info h2 {
        font-size: 1.5rem;
    }
}
