.subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
	margin-top: 10px;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.article-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
    line-height: 1.4;
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.article-title a:hover {
    color: #3b82f6;
}

.article-excerpt {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    align-items: center;
    color: #94a3b8;
    font-size: 0.9rem;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.2s;
}

.read-more:hover {
    gap: 8px;
}

.read-more i {
    transition: transform 0.2s;
}

.read-more:hover i {
    transform: translateX(3px);
}


@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .article-item {
        padding: 20px;
		margin-top: 7px;
    }
    
    .article-title {
        font-size: 1.3rem;
    }
}