/* Blog listing + details */

.sk-blogcard .img {
    display: block;
    text-decoration: none;
}

.sk-blogcard h3 a {
    color: inherit;
    text-decoration: none;
}

.sk-blogcard h3 a:hover {
    color: var(--sk-accent-2);
}

.bl-empty {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--sk-line);
    border-radius: var(--sk-radius);
    padding: 48px 32px;
}

.bl-empty .ic {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--sk-soft);
    color: var(--sk-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.bl-empty p {
    color: var(--sk-muted);
    margin-bottom: 22px;
}

.bl-pagination {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.bl-pagination .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bl-pagination .page-item .page-link,
.bl-pagination .pagination > li > a,
.bl-pagination .pagination > li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid var(--sk-line);
    background: #fff;
    color: var(--sk-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.bl-pagination .page-item.active .page-link,
.bl-pagination .pagination > li.active > span,
.bl-pagination .pagination > li.active > a {
    background: var(--sk-accent);
    border-color: var(--sk-accent);
    color: #fff;
}

.bl-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 320px;
    gap: 36px;
    align-items: start;
}

.bl-article {
    background: #fff;
    border: 1px solid var(--sk-line);
    border-radius: var(--sk-radius);
    overflow: hidden;
    padding: 0 0 36px;
}

.bl-cover {
    height: 340px;
    background-size: cover;
    background-position: center;
}

.bl-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px 32px 0;
    font-size: 13.5px;
    color: var(--sk-muted);
    font-weight: 600;
}

.bl-meta i {
    color: var(--sk-accent);
    margin-right: 6px;
}

.bl-prose {
    padding: 18px 32px 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--sk-body);
}

.bl-prose h2,
.bl-prose h3 {
    margin: 1.2em 0 .5em;
}

.bl-prose img {
    border-radius: 12px;
    margin: 18px 0;
}

.bl-prose p {
    margin: 0 0 1em;
}

.bl-widget {
    background: #fff;
    border: 1px solid var(--sk-line);
    border-radius: var(--sk-radius);
    padding: 26px;
    margin-bottom: 24px;
}

.bl-widget h4,
.bl-widget .h4 {
    font-size: 18px;
    margin-bottom: 18px;
}

.bl-recent {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.bl-recent li {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
}

.bl-recent .thumb {
    height: 64px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.bl-recent a {
    color: var(--sk-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

.bl-recent a:hover {
    color: var(--sk-accent-2);
}

.bl-recent span {
    display: block;
    margin-top: 4px;
    font-size: 12.5px;
    color: var(--sk-muted);
}

.bl-help .sk-btn {
    width: 100%;
    justify-content: center;
    margin: 8px 0 6px;
}

.bl-help p {
    color: var(--sk-muted);
    font-size: 14.5px;
}

@media (max-width: 991px) {
    .bl-layout {
        grid-template-columns: 1fr;
    }

    .bl-cover {
        height: 240px;
    }
}
