.post-thumbnail {
    display: block;
    width: 100%;
    max-width: 408px;
    height: 295px;
    overflow: hidden;
}

    .post-thumbnail img {
        width: 100%;
        height: 100%;
      
    }

.hero-title-section {
    background: linear-gradient(90deg, #f8fafc 60%, #e0e7ef 100%);
    border-radius: 18px;
    padding: 48px 24px 32px 24px;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

    .hero-title-section h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1a2233;
        margin-bottom: 12px;
        letter-spacing: -1px;
    }

    .hero-title-section .category-underline {
        display: block;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #ffb347, #ffcc33);
        margin: 0 auto 14px auto;
        border-radius: 2px;
        transition: width 0.3s;
    }

    .hero-title-section p {
        font-size: 1.25rem;
        color: #4b5563;
        margin-bottom: 0;
        font-weight: 500;
    }

    .hero-title-section .hero-icon {
        position: absolute;
        top: 18px;
        right: 32px;
        font-size: 3.5rem;
        color: #ffe08233;
        pointer-events: none;
        z-index: 0;
    }

    .hero-title-section:hover {
        box-shadow: 0 8px 32px 0 rgba(13,110,253,0.13);
        transform: translateY(-2px) scale(1.01);
    }

        .hero-title-section:hover .category-underline {
            width: 80px;
        }
