/* RESET BÁSICO */
body {
    margin: 0;
}

/* GARANTE QUE O CONTEÚDO USE A LARGURA DISPONÍVEL */
.wp-site-blocks,
.entry-content,
.wp-block-post-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* GRID */
#portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* CARD */
.portfolio-item {
    position: relative;
    overflow: hidden;
    background: #fff;
}

/* IMAGEM */
.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2)
    );
    color: white;
    opacity: 0;
    transition: 0.3s ease;
}

/* HOVER */
.portfolio-item:hover .overlay {
    opacity: 1;
}

/* TÍTULO */
.overlay h3 {
    position: absolute;
    bottom: 36px;
    left: 16px;
    margin: 0;
    font-size: 16px;
}

/* DESCRIÇÃO */
.overlay p {
    position: absolute;
    bottom: 16px;
    left: 16px;
    margin: 0;
    font-size: 12px;
}

/* TAGS */
.tags {
    position: absolute;
    top: 12px;
    right: 12px;

    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

/* TAG ITEM */
.tag-item {
    background: #FFE600;
    color: #000;
    font-size: 11px;
    padding: 4px 6px;
}