/* ===== BLOG.CSS START ===== */

/* Blog listing page */
.page-wrap--blog {
    padding: 0 0 80px;
}

.page-wrap--blog .page-wrap__inner {
    padding-top: 8px;
}

.page-wrap--blog .page-title {
    font-size: 18px;
    color: #404040;
    margin-bottom: 6px;
}

/* Post grid */
.post-grid {
    display: grid;
    gap: 12px;
}

.page-wrap--blog .post-grid {
    gap: 10px;
}

/* Post card */
.post-card {
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.post-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.page-wrap--blog .post-card {
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

.post-card__thumb {
    min-height: 110px;
    background:
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.35), rgba(255,255,255,0) 35%),
        linear-gradient(135deg, #79b5f5, #5f86ff);
    overflow: hidden;
    line-height: 0;
}

.page-wrap--blog .post-card__thumb {
    min-height: 110px;
    background:
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.35), rgba(255,255,255,0) 35%),
        linear-gradient(135deg, #79b5f5, #5f86ff);
}

.post-card__thumb img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.page-wrap--blog .post-card__thumb img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.post-card__thumb-fallback {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 16px;
    text-align: center;
}

.page-wrap--blog .post-card__thumb-fallback {
    min-height: 110px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.post-card__body {
    padding: 12px;
}

.page-wrap--blog .post-card__body {
    padding: 10px;
}

.post-card__meta {
    font-size: 11px;
    color: #9a9a9a;
    margin-bottom: 4px;
}

.page-wrap--blog .post-card__meta {
    font-size: 11px;
    color: #9a9a9a;
    margin-bottom: 4px;
}

.post-card__title {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #2d3748;
}

.page-wrap--blog .post-card__title {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.35;
}

.post-card__title a {
    color: #333;
    transition: color 0.2s;
}

.post-card__title a:hover {
    color: #6eaef1;
}

.page-wrap--blog .post-card__title a {
    color: #333;
}

.post-card__excerpt {
    margin: 0 0 8px;
    font-size: 12px;
    color: #666;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-wrap--blog .post-card__excerpt {
    margin: 0 0 8px;
    font-size: 12px;
    color: #666;
    line-height: 1.55;
}

.post-card__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #e06a2f;
    font-weight: 700;
    transition: color 0.2s;
}

.post-card__more:hover {
    color: #c05520;
}

.page-wrap--blog .post-card__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #e06a2f;
    font-weight: 700;
}

/* Pagination */
.pagination-wrap {
    margin-top: 12px;
}

.pagination-wrap .nav-links {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pagination-wrap .page-numbers {
    min-width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 0 8px;
    transition: background 0.2s, color 0.2s;
}

.pagination-wrap .page-numbers:hover {
    background: #edf2f7;
    color: #333;
}

.pagination-wrap .page-numbers.current {
    background: #6eaef1;
    color: #fff;
    border-color: #6eaef1;
}

/* Single post */
.page-wrap--single {
    padding: 0 0 80px;
}

.page-wrap--single .page-wrap__inner {
    padding-top: 8px;
}

.single-article {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

.page-wrap--single .single-article {
    border-radius: 12px;
}

.single-article__header {
    padding: 16px 16px 0;
}

.single-article__title {
    font-size: 18px;
    line-height: 1.35;
    color: #374b68;
    font-weight: 800;
    margin: 0 0 8px;
}

.page-wrap--single .single-article__title {
    font-size: 18px;
    line-height: 1.35;
    color: #374b68;
}

.single-article__meta {
    font-size: 11px;
    color: #a0aec0;
    margin-bottom: 12px;
}

.single-article__thumb {
    margin: 10px 0;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

.page-wrap--single .single-article__thumb {
    margin: 10px 0;
    border-radius: 10px;
    overflow: hidden;
}

.single-article__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.page-wrap--single .single-article__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.single-article__content {
    padding: 0 16px 16px;
}

.single-article__content p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
}

.page-wrap--single .single-article__content p {
    margin: 0 0 10px;
}

.single-article__content h2,
.single-article__content h3 {
    color: #3a4f6c;
    margin: 12px 0 8px;
    font-weight: 700;
}

.single-article__content h2 {
    font-size: 17px;
}

.single-article__content h3 {
    font-size: 15px;
}

.page-wrap--single .single-article__content h2,
.page-wrap--single .single-article__content h3 {
    color: #3a4f6c;
    margin: 12px 0 8px;
}

.single-article__content ul,
.single-article__content ol {
    margin: 0 0 10px 18px;
    padding: 0;
}

.single-article__content li {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 4px;
}

.single-article__content a {
    color: #6eaef1;
    text-decoration: underline;
}

.single-article__content a:hover {
    color: #4a90d9;
}

.single-article__content img {
    border-radius: 8px;
}

/* ===== BLOG.CSS END ===== */
