.hoo-posts-section {
    background-color: #1a1a1e;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hoo-posts-col {
    width: calc(50% - 10px);
}

@media (max-width: 767px) {
    .hoo-posts-col {
        width: 100%;
    }
}

.hoo-post-card {
    padding: 8px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    cursor: pointer;
    transition: .25s ease;
}

.hoo-post-card:hover {
    background-color: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .16);
}

.hoo-post-thumb {
    position: relative;
}

.hoo-post-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 4px;
}

.hoo-post-thumb::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #27272b;
    width: 48px;
    height: 36px;
    border-top-right-radius: 6px;
    z-index: 1;
    transition: .25s ease;
}

.hoo-post-card:hover .hoo-post-thumb::after {
    background-color: #363639;
}

.hoo-post-thumb::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 9px;
    left: 18px;
    width: 0;
    height: 0;
    border-left: 12px solid white;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    z-index: 2;
}

.hoo-post-meta {
    color: #d6d6d6;
    font-size: 14px;
    font-weight: 300;
    margin: 8px 0 4px 0;
}

.hoo-post-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* GRID dos 4 cards na segunda coluna */
.hoo-small-posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hoo-small-post-item {
    width: calc(50% - 8px);
}

@media (max-width: 767px) {
    .hoo-small-post-item {
        width: calc(50% - 8px);
        /* Sempre 2 por linha no mobile */
    }
}