.home-blog-showcase {
    position: relative;
    z-index: 2;
}

.home-blog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.82rem;
    padding-bottom: 0;
    border-bottom: 0;
}

.home-blog-head > div:first-child {
    display: grid;
    gap: 0.14rem;
    max-width: 760px;
}

.home-blog-shell {
    position: relative;
    overflow: hidden;
    border-radius: 1.3rem;
    border: 1px solid rgba(203, 213, 225, 0.78);
    background: #ffffff;
    box-shadow: 0 24px 36px -26px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: clamp(0.9rem, 1.65vw, 1.15rem);
}

.home-blog-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(440px 180px at 9% 0%, rgba(148, 46, 135, 0.08), transparent 72%),
    radial-gradient(460px 190px at 96% 100%, rgba(79, 70, 229, 0.07), transparent 74%);
}

.home-blog-kicker {
    margin: 0;
    font-size: 0.73rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #7c3a9c;
    font-weight: 700;
}

.home-blog-head h2 {
    margin: 0;
    color: #5a2b82;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.1rem, 1.9vw, 1.5rem);
    font-weight: 700;
}

.home-blog-desc {
    margin: 0;
    color: #64748b;
    font-size: 0.92rem;
}

.home-blog-all {
    position: relative;
    z-index: 1;
    border-radius: 999px;
    border: 1px solid rgba(91, 42, 130, 0.26);
    background: rgba(124, 58, 237, 0.06);
    color: #4c1d95;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.52rem 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    box-shadow: 0 8px 16px -14px rgba(76, 29, 149, 0.42);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.home-blog-all:hover {
    transform: translateY(-1px);
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(91, 42, 130, 0.34);
}

.home-blog-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.76rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-blog-card {
    border-radius: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    background: linear-gradient(160deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 0.95)),
    radial-gradient(300px 180px at 5% 10%, rgba(148, 46, 135, 0.06), transparent 74%);
    box-shadow: 0 12px 20px -18px rgba(15, 23, 42, 0.22);
    overflow: hidden;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: stretch;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.home-blog-card:hover {
    transform: translateY(-2px);
    border-color: rgba(148, 46, 135, 0.34);
    box-shadow: 0 18px 28px -22px rgba(82, 39, 120, 0.2);
}

.home-blog-media {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 100%;
}

.home-blog-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(148, 46, 135, 0.11), rgba(30, 41, 59, 0.16));
    pointer-events: none;
}

.home-blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.32s ease;
}

.home-blog-card:hover .home-blog-media img {
    transform: scale(1.05);
}

.home-blog-content {
    padding: 0.72rem 0.8rem 0.76rem;
}

.home-blog-date {
    margin: 0;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #475569;
    font-weight: 600;
}

.home-blog-content h3 {
    margin: 0.3rem 0 0;
    color: #0f172a;
    font-size: clamp(0.98rem, 1.1vw, 1.08rem);
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.home-blog-content p {
    margin: 0.34rem 0 0;
    color: #334155;
    line-height: 1.4;
    font-size: 0.82rem;
}

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

@media (max-width: 767px) {
    .home-blog-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 0.7rem;
    }

    .home-blog-all {
        width: auto;
        justify-content: flex-start;
    }

    .home-blog-grid {
        grid-template-columns: 1fr;
    }

    .home-blog-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }
}
