.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.bc {
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform .4s cubic-bezier(.23, 1, .32, 1), box-shadow .4s;
    background: var(--white);
}

.bc:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .08);
}

.bc-img {
    overflow: hidden;
}

.bc-img img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.bc:hover .bc-img img {
    transform: scale(1.05);
}

.bc-body {
    padding: 24px;
}

.bc-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.bc-title {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 10px;
}

.bc-excerpt {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 14px;
}

.bc-meta {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bc-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.bc-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    margin-top: 14px;
    transition: gap .3s;
}

.bc-read:hover {
    gap: 10px;
}

.bc-featured {
    grid-column: span 1;
}

.bc-featured .bc-img img {
    height: 340px;
}

.bc-sm .bc-img img {
    height: 190px;
}

.bc-hero {
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 40px;
    background: var(--white);
}

.bc-hero-img {
    position: relative;
    overflow: hidden;
}

.bc-hero-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.bc-hero:hover .bc-hero-img img {
    transform: scale(1.03);
}

.bc-hero-body {
    padding: 36px;
}

.bc-hero-title {
    font-family: var(--fd);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 12px;
}

.bc-hero-exc {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px;
    margin-bottom: 24px;
}

.sw-title {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sw-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: color .3s;
}

.sw-cat:hover {
    color: var(--gold);
}

.sw-cat span {
    font-size: 13px;
}

.sw-cat .cnt {
    font-size: 11px;
    background: var(--off);
    padding: 3px 10px;
    color: var(--muted);
}

.sw-post {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.sw-post:last-child {
    border-bottom: none;
}

.sw-post img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    flex-shrink: 0;
}

.sw-post-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 4px;
}

.sw-post-date {
    font-size: 11px;
    color: var(--muted);
}

.sw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sw-tag {
    font-size: 11px;
    padding: 6px 14px;
    border: 1px solid var(--border);
    color: var(--mid);
    cursor: pointer;
    transition: all .3s;
}

.sw-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.blog-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.bcat {
    font-size: 12px;
    font-weight: 500;
    padding: 8px 20px;
    border: 1.5px solid var(--border);
    color: var(--mid);
    cursor: pointer;
    background: var(--white);
    transition: all .25s;
}

.bcat:hover,
.bcat.on {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.nl-widget {
    background: var(--dark);
    padding: 28px;
}

.nl-widget h4 {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}

.nl-widget p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 16px;
    line-height: 1.6;
}

@media(max-width:991px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:576px) {
    .bc-hero-img img {
        height: 280px;
    }
}