.blog-home-section {
    background:
        linear-gradient(180deg, #fffdf9 0%, #f6f8f4 100%);
}

.blog-home-shell {
    background:
        radial-gradient(circle at top right, rgba(217,111,50,.16), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.9) 0%, rgba(255,249,242,.96) 45%, rgba(240,246,244,.94) 100%);
    box-shadow: 0 20px 44px rgba(23,49,58,.09);
}

.blog-home-heading {
    max-width: 38rem;
}

.blog-home-lead {
    max-width: 36rem;
    font-size: 1rem;
}

.blog-home-view-all {
    align-self: flex-start;
}

.blog-home-featured-link,
.blog-home-side-link {
    display: block;
    height: 100%;
}

.blog-home-featured-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    border-radius: 1.65rem;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 40px rgba(23,49,58,.10);
    transition: transform .22s ease, box-shadow .22s ease;
}

.blog-home-featured-link:hover .blog-home-featured-card,
.blog-home-side-link:hover .blog-home-side-card {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(23,49,58,.12);
}

.blog-home-featured-media {
    flex: 0 0 auto;
    height: clamp(220px, 24vw, 320px);
    background:
        linear-gradient(135deg, rgba(23,49,58,.12), rgba(217,111,50,.18));
    overflow: hidden;
}

.blog-home-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.4rem 1.45rem 1.5rem;
}

.blog-home-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    color: #6f7f84;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-home-featured-title,
.blog-home-side-title {
    color: var(--countries-ink);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.16;
}

.blog-home-featured-title {
    margin-bottom: .7rem;
    font-size: clamp(1.45rem, 1.8vw, 1.95rem);
}

.blog-home-featured-desc,
.blog-home-side-desc {
    color: #5c6f75;
    line-height: 1.7;
}

.blog-home-featured-desc {
    margin-bottom: 1rem;
    font-size: .96rem;
}

.blog-home-card-cta {
    margin-top: auto;
    color: var(--countries-accent);
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-home-side-list {
    display: grid;
    gap: .85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: 100%;
}

.blog-home-side-card {
    display: flex;
    flex-direction: column;
    padding: .85rem;
    border-radius: 1.3rem;
    background: rgba(255,255,255,.9);
    box-shadow: 0 14px 30px rgba(23,49,58,.08);
    transition: transform .22s ease, box-shadow .22s ease;
    height: 100%;
}

.blog-home-side-media {
    flex: 0 0 auto;
    height: 110px;
    background:
        linear-gradient(135deg, rgba(23,49,58,.12), rgba(217,111,50,.18));
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: .75rem;
}

.blog-home-media-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-home-side-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    padding: .1rem .1rem .15rem;
}

.blog-home-side-title {
    margin-bottom: .45rem;
    font-size: 1rem;
}

.blog-home-side-desc {
    margin-bottom: .7rem;
    font-size: .88rem;
    line-height: 1.6;
}

.blog-home-strip {
    background:
        linear-gradient(135deg, rgba(255,255,255,.88) 0%, rgba(247,241,232,.94) 100%);
    border: 1px solid rgba(23,49,58,.08);
    box-shadow: 0 14px 30px rgba(23,49,58,.07);
}

.blog-home-strip-desc {
    color: #66777d;
}

.blog-home-action-btn {
    min-height: 2.9rem;
    padding: .78rem 1.15rem;
    border-radius: 999px;
    border-width: 1px;
    font-size: .84rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.blog-home-action-btn:hover {
    transform: translateY(-1px);
}

.blog-home-action-btn-primary {
    background: var(--countries-ink);
    border-color: rgba(23,49,58,.92);
    color: #fff;
    box-shadow: 0 12px 24px rgba(23,49,58,.16);
}

.blog-home-action-btn-primary:hover {
    background: #10262e;
    border-color: #10262e;
    color: #fff;
    box-shadow: 0 16px 30px rgba(23,49,58,.2);
}

.blog-home-action-btn-secondary {
    background: rgba(255,255,255,.76);
    border-color: rgba(23,49,58,.16);
    color: var(--countries-ink);
    box-shadow: 0 10px 22px rgba(23,49,58,.08);
}

.blog-home-action-btn-secondary:hover {
    background: rgba(255,255,255,.96);
    border-color: rgba(217,111,50,.28);
    color: var(--countries-accent);
}

@media (max-width: 1399.98px) {
    .blog-home-side-list {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .blog-home-side-card {
        grid-template-columns: 1fr;
    }

    .blog-home-view-all {
        width: 100%;
        justify-content: center;
    }
}
