@charset "UTF-8";
/*
* index.css
*
*/

/* Hero banner */
.hero-banner {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.hero-banner .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
}

.hero-banner .hero-main-copy {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.hero-banner .hero-sub-copy {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.section-heading {
    font-size: 18px;
    font-weight: bold;
    border-left: 4px solid #2073DB;
    padding: 10px 14px;
    margin: 0 0 10px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}
h2.section-heading:before {
    content: none;
    border-left: none;
    padding-right: 0;
}

/* Articles grid */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-bottom: 16px;
}

/* Article card */
.article-card {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 0;
}

.article-card:hover {
    opacity: 0.7;
    text-decoration: none;
}

.article-card .thumb {
    width: 100%;
    aspect-ratio: 690 / 460;
    object-fit: cover;
    display: block;
    background-color: #ccc;
}

.article-card .card-body {
    padding: 8px 0 4px;
}

.article-card .card-title {
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    border-bottom: none;
    padding-bottom: 0;
}

.article-card .category-badge {
    display: inline-block;
    font-size: 12px;
    color: #333;
    border-radius: 3px;
    padding: 2px 6px;
    background: #eee;
}

/* Pagination */
.pagination-wrap {
    margin-top: 0;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
}

.uk-pagination {
    gap: 6px;
    margin-bottom: 0;
}

.uk-pagination>*>* {
    border: 1px solid #cccccc;
    border-radius: 4px;
    color: #1B6BCF;
    background: #fff;
    line-height: 1.5;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    min-height: 30px;
    box-sizing: border-box;
}

.uk-pagination>*> :hover {
    color: #1B6BCF;
    background: #D2F0FF;
    border-color: #cccccc;
}

.uk-pagination>.uk-active>* {
    color: #999;
    background: #e5e5e5;
    border-color: #ccc;
}

.uk-pagination>.uk-disabled>* {
    color: #999;
    background: #fff;
    border: none;
}