ul {
    padding-left: 18px !important;
}

:root {
    /* Paleta extraída do site Sidnei Teles Imóveis */
    --primary: #0f1d33;
    /* Azul Marinho Nobre / Grafite */
    --primary-hover: #1b2f4f;
    --accent: #d4af37;
    /* Dourado / Âmbar de Destaque */
    --accent-light: #f9f5eb;
    /* Fundo leve dourado/bege */
    --bg-page: #f4f6f9;
    /* Cinza suave de fundo */
    --bg-card: #ffffff;
    --text-main: #2c3e50;
    /* Texto principal escuro */
    --text-muted: #64748b;
    /* Texto secundário */
    --border-color: #e2e8f0;
    --radius: 8px;
    --max-width: 800px;
}

/* Card Principal do Post */
.post-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2.5rem;
}

/* Tag de Categoria e Metadados */
.post-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.post-category {
    background-color: var(--primary);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.post-date {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Título e Subtítulo */
.post-title {
    font-size: 2.25rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.post-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
}

/* Imagem em Destaque */
.post-featured-figure {
    /* margin: 0 -2.5rem 2.5rem -2.5rem; */
    margin: 0 0 2.5rem 0;
    background-color: var(--primary);
    position: relative;
}

.post-featured-image {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

.post-image-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.75rem 1.5rem 0 1.5rem;
    font-style: italic;
}

/* Conteúdo Principal */
.post-content {
    font-size: 1.05rem;
    color: var(--text-main);
}

.post-content p {
    margin-bottom: 1.6rem;
}

.post-content h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 2.2rem 0 1rem 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.4rem;
}

.post-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.post-content blockquote {
    background-color: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--primary);
    font-size: 1.1rem;
    border-radius: 0 8px 8px 0;
}

/* ===================================================
   SEÇÃO DE GALERIA DE FOTOS (FANCYBOX COMPATIBLE)
   =================================================== */
.post-gallery-section {
    margin: 2.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.post-gallery-title {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.post-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.post-gallery-item {
    margin: 0;
    border: 1px solid var(--border-color);
    border-radius: calc(var(--radius) - 2px);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(15, 29, 51, 0.1);
}

.post-gallery-img-wrapper {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #e2e8f0;
    cursor: pointer;
}

.post-gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.post-gallery-item:hover .post-gallery-img-wrapper img {
    transform: scale(1.05);
}

/* Responsividade da Galeria */
@media (max-width: 768px) {
    .post-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .post-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Box de Destaque / Chamada de Ação (Estilo Imobiliária) */
.post-cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #172c4c 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 3rem;
    text-align: center;
}

.post-cta-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.post-cta-box p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 1.25rem;
}

.post-cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background 0.2s ease;
}

.post-cta-button:hover {
    background-color: #c29f2e;
}

/* Responsividade */
@media (max-width: 768px) {
    .post-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .post-container {
        padding: 1.75rem 1.25rem;
    }

    .post-title {
        font-size: 1.75rem;
    }

    .post-subtitle {
        font-size: 1.05rem;
    }

    .post-featured-figure {
        /* margin: 0 -1.25rem 1.75rem -1.25rem; */
        margin: 0 0 2.5rem 0;
    }

    .post-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}



.breadcrumb {
    margin-bottom: 0px !important;
}