/* ================= BLOG LIST ================= */
.blog-list {
    padding: 90px 0;
}

.blog-card-lg img {
    width: 100%;
    border-radius: 18px;
}

.blog-meta {
    margin: 18px 0 10px;
    font-size: 12px;
    color: var(--muted);
}

.blog-card-lg h3 {
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 14px;
}

.read-more {
    font-size: 13px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

/* PAGINATION */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.blog-pagination a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    text-decoration: none;
    color: #111;
}

.blog-pagination a.active {
    background: #111;
    color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
    .blog-card-lg h3 {
        font-size: 18px;
    }
}

/* blogdetails */

/* ================= BLOG DETAILS ================= */
.blog-details {
    padding: 90px 0;
}

.blog-main-img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 20px;
}

.blog-details h2 {
    font-family: var(--font-head);
    font-size: 28px;
    margin-bottom: 18px;
}

.blog-details p,
.blog-details li {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}

.blog-inline-images img {
    width: 100%;
    border-radius: 14px;
}

.img-caption {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

/* TAGS */
.blog-tags a {
    display: inline-block;
    border: 1px solid var(--border);
    padding: 4px 10px;
    font-size: 12px;
    margin-right: 6px;
    text-decoration: none;
    color: #111;
}

/* SHARE */
.blog-share {
    margin: 30px 0;
}

.blog-share a {
    margin-left: 8px;
    text-decoration: none;
    font-size: 13px;
}

/* RELATED */
.related-blogs {
    margin-top: 60px;
}

.related-card img {
    width: 100%;
    border-radius: 14px;
}

.related-card p {
    font-size: 14px;
    margin: 12px 0;
}

/* SIDEBAR */
.blog-sidebar input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    margin-bottom: 30px;
}

.sidebar-box {
    margin-bottom: 40px;
}

.sidebar-box h4 {
    font-size: 16px;
    margin-bottom: 14px;
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
}

.sidebar-box ul li {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--muted);
}

.tag-cloud span {
    display: inline-block;
    border: 1px solid var(--border);
    padding: 4px 10px;
    font-size: 12px;
    margin: 4px;
}

/* MOBILE */
@media(max-width:768px) {
    .blog-details h2 {
        font-size: 24px;
    }
}