/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 28 2026 | 22:09:54 */
.rel-box {
    margin: 22px 0;
    padding: 14px;
    background: #f5f5f5;
    border-left: 4px solid #111;
    border-radius: 10px;
}

/* 📌 LEIA TAMBÉM (MAIOR E MAIS PORTAL) */
.rel-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 14px;
    color: #111;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid #111;
    padding-bottom: 6px;
}

/* ITEM PRINCIPAL */
.rel-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #e6e6e6;
    transition: 0.2s ease;
}

.rel-item:hover {
    transform: translateY(-2px);
    border-color: #ccc;
}

/* 🔥 IMAGEM QUADRADA GRANDE (ESTILO PORTAL) */
.rel-img {
    width: 95px;
    height: 95px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
}

.rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* padrão portal (G1) */
}

/* TEXTO */
.rel-text {
    display: flex;
    flex-direction: column;
}

.rel-head {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
}

/* MOBILE */
@media (max-width: 768px) {
    .rel-img {
        width: 100px;
        height: 100px;
    }

    .rel-head {
        font-size: 13px;
    }

    .rel-title {
        font-size: 16px;
    }
}