.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.article-card {
    background: #fff;
    border: 1px solid #e1e3e5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.article-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #e5e8ec;
}
.article-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.article-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}
.article-title {
    font-size: 18px;
    color: #0a1e25;
    margin-bottom: 15px;
    font-weight: 700;
}
.article-excerpt {
    color: #4f5555;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}
.article-readmore {
    display: block;
    width: 62px;
	text-align: center;
    cursor: pointer;
    border-radius: 5px;
    border: 0;
    background: #e1e3e5;
    padding: 10px 15px;
    margin: auto;
    color: #39464a;
    font-weight: 600;
}
.article-readmore:hover {
    background: #39464a;
    color: #fff;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}
.pagination a {
    display: inline-block;
    padding: 8px 12px;
    background: #e1e3e5;
    color: #0a1e25;
    border-radius: 5px;
    font-weight: 600;
}
.pagination a:hover, .pagination a.active {
    background: #1a416a;
    color: #fff;
}

/* Detail článku */
.article-detail {
    background: #fff;
    border: 1px solid #e1e3e5;
    border-radius: 8px;
    padding: 40px;
    margin: 40px auto;
    max-width: 900px;
}
.article-detail h1 {
    font-size: 18px;
    color: #0a1e25;
    margin-bottom: 15px;
}
.article-detail .meta {
    color: #666;
    font-size: 13px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e3e5;
}
.article-detail img.main-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}
.article-detail .content {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}
.article-detail .content p {
    margin-bottom: 20px;
}
.article-detail .content h2, .article-detail .content h3 {
	font-size: 16px;
    margin: 20px 0 15px 0;
    color: #0a1e25;
}
.article-detail .content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}
@media(max-width: 768px) {
    .article-detail {
        padding: 20px;
    }
    .article-detail h1 {
        font-size: 24px;
    }
}
