/**
 * TeixeiraZap Ofertas - Relacionadas Styles
 * Estilos para a seção de ofertas relacionadas na página single.
 */

.ofertas-relacionadas-section {
    margin-top: 50px;
    padding: 32px 20px;
    background: #f8f9fb;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.ofertas-relacionadas-header {
    text-align: center;
    margin-bottom: 28px;
}

.ofertas-relacionadas-title {
    font-size: 22px;
    font-weight: 800;
    color: #111b21;
    margin: 0 0 6px 0;
}

.ofertas-relacionadas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ofertas-relacionadas-grid .oferta-card {
    padding-bottom: 0;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ofertas-relacionadas-section {
        margin-top: 30px;
        padding: 24px 16px;
    }

    .ofertas-relacionadas-grid {
        gap: 12px;
    }
}