    /* Estilização rápida para integrar à Home Corporativa */

    .th-home-blog-preview {
        margin-top: 30px;
        padding: 80px 25px;
        background: #163133;
        mix-blend-mode: multiply;
    }

    .th-section-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 40px;
    }

    .th-section-subtitle {
        color: #fbbf24;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .th-section-title {
        font-size: 2.2rem;
        color: #fff;
        margin-top: 5px;
    }

    .th-posts-grid-home {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .th-card-mini {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
        min-height: 300px;
        display: grid;
        grid-template-rows: 170px 1fr;
    }

    .th-card-mini:hover {
        transform: translateY(-5px);
    }

    .th-card-mini__thumb {
        position: relative;
        display: block;
        height: 170px;
        overflow: hidden;
    }

    .th-card-mini__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .th-card-mini__body {
        padding: 15px;
        display: grid;
        align-content: start;
    }

    .th-card-mini__title {
        font-size: 1rem;
        line-height: 1.4;
        margin: 0;
    }

    .th-card-mini__title a {
        color: #1f2937;
        text-decoration: none;
        font-weight: 600;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
    }

    .th-badge-sm {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #fbbf24;
        color: #000;
        font-size: 0.7rem;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 700;
    }

    .th-btn-secondary {
        padding: 10px 20px;
        border: 2px solid #fff;
        color: #111;
        text-decoration: none;
        font-weight: 600;
        border-radius: 5px;
        transition: 0.3s;
    }

    .th-btn-secondary:hover {
        background: #111;
        color: #fff;
    }

    @media (max-width: 992px) {
        .th-posts-grid-home {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .th-posts-grid-home {
            grid-template-columns: 1fr;
        }

        .th-section-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
    }