/**
 * CSS do Blog - ProCuidar Vacinas
 * Layout inspirado no Saúde Livre Vacinas
 * Versão: 2.0
 */

/* ========================================
   VARIÁVEIS E RESET
   ======================================== */

:root {
    /* Cores Principais - ProCuidar */
    --primary-color: #7C3AED; /* Roxo */
    --primary-dark: #6D28D9;
    --primary-light: #A78BFA;
    
    /* Cores Secundárias */
    --secondary-color: #10B981; /* Verde */
    --accent-color: #F59E0B; /* Laranja */
    
    /* Cores de Categorias */
    --cat-pediatria: #EC4899; /* Rosa */
    --cat-gestantes: #8B5CF6; /* Roxo claro */
    --cat-adultos: #3B82F6; /* Azul */
    --cat-idosos: #F59E0B; /* Laranja */
    --cat-prevencao: #10B981; /* Verde */
    --cat-tecnologia: #06B6D4; /* Ciano */
    
    /* Cores Neutras */
    --bg-color: #F9FAFB;
    --card-bg: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Tipografia */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transições */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-color);
}

/* ========================================
   HERO BANNER
   ======================================== */

.blog-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="900" cy="300" r="400" fill="rgba(255,255,255,0.05)"/><circle cx="1100" cy="100" r="200" fill="rgba(255,255,255,0.03)"/></svg>') no-repeat center right;
    background-size: cover;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: var(--spacing-sm);
}

.hero-content p {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* ========================================
   CONTAINER E LAYOUT
   ======================================== */

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.blog-main {
    min-width: 0; /* Fix para overflow */
}

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--text-secondary);
}

/* ========================================
   FILTROS E BUSCA
   ======================================== */

.blog-filters {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.search-form {
    display: flex;
    gap: var(--spacing-sm);
}

.search-input {
    flex: 1;
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.search-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   GRID DE POSTS
   ======================================== */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* ========================================
   CARD DE POST
   ======================================== */

.post-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.post-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: var(--border-color);
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition);
}

.category-badge:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Cores por categoria */
.category-badge[data-category="pediatria"] {
    background: var(--cat-pediatria);
}

.category-badge[data-category="gestantes"] {
    background: var(--cat-gestantes);
}

.category-badge[data-category="adultos"] {
    background: var(--cat-adultos);
}

.category-badge[data-category="idosos"] {
    background: var(--cat-idosos);
}

.category-badge[data-category="prevencao"] {
    background: var(--cat-prevencao);
}

.category-badge[data-category="tecnologia"] {
    background: var(--cat-tecnologia);
}

/* Cor padrão */
.category-badge:not([data-category]) {
    background: var(--primary-color);
}

.post-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-meta-item i {
    font-size: 0.875rem;
}

.post-excerpt {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.post-views {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* ========================================
   PAGINAÇÃO
   ======================================== */

.pagination-container {
    display: flex;
    justify-content: center;
    margin: var(--spacing-xl) 0;
}

.load-more-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.load-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.load-more-btn:active {
    transform: translateY(0);
}

/* Paginação com números (alternativa) */
.pagination {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--spacing-sm);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.pagination a {
    background: var(--card-bg);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.pagination a:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.pagination .current {
    background: var(--primary-color);
    color: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.pagination .disabled {
    background: var(--border-color);
    color: var(--text-secondary);
    cursor: not-allowed;
}

/* ========================================
   SIDEBAR
   ======================================== */

.blog-sidebar {
    position: sticky;
    top: var(--spacing-lg);
    height: fit-content;
}

.sidebar-widget {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
}

.widget-categories ul,
.widget-recent ul {
    list-style: none;
}

.widget-categories li,
.widget-recent li {
    margin-bottom: var(--spacing-sm);
}

.widget-categories a,
.widget-recent a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.widget-categories a:hover,
.widget-recent a:hover {
    background: var(--bg-color);
    color: var(--primary-color);
    padding-left: var(--spacing-md);
}

.category-count {
    background: var(--border-color);
    color: var(--text-secondary);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.recent-post-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.recent-post-item:hover {
    background: var(--bg-color);
}

.recent-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info {
    flex: 1;
}

.recent-post-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.recent-post-date {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

/* Widget Newsletter */
.widget-newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #FFFFFF;
}

.widget-newsletter .widget-title {
    color: #FFFFFF;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.widget-newsletter p {
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.newsletter-form input {
    width: 100%;
    padding: var(--spacing-sm);
    border: none;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-base);
}

.newsletter-form button {
    width: 100%;
    padding: var(--spacing-sm);
    background: #FFFFFF;
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--bg-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Widget Tags */
.widget-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.tag-link {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--bg-color);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: var(--transition);
}

.tag-link:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* ========================================
   EMPTY STATE
   ======================================== */

.empty-state {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: var(--spacing-md);
}

.empty-state h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.empty-state a {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary-color);
    color: #FFFFFF;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.empty-state a:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: var(--font-size-3xl);
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: var(--font-size-2xl);
    }
    
    .hero-content p {
        font-size: var(--font-size-base);
    }
    
    .blog-hero {
        padding: var(--spacing-lg) 0;
    }
    
    .post-title {
        font-size: var(--font-size-lg);
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-button {
        width: 100%;
    }
}

/* Mobile pequeno (< 480px) */
@media (max-width: 479px) {
    :root {
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
    }
    
    .blog-container {
        padding: 0 var(--spacing-sm);
    }
    
    .post-content {
        padding: var(--spacing-sm);
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-card {
    animation: fadeIn 0.5s ease-out;
}

.post-card:nth-child(1) { animation-delay: 0.1s; }
.post-card:nth-child(2) { animation-delay: 0.2s; }
.post-card:nth-child(3) { animation-delay: 0.3s; }
.post-card:nth-child(4) { animation-delay: 0.4s; }
.post-card:nth-child(5) { animation-delay: 0.5s; }
.post-card:nth-child(6) { animation-delay: 0.6s; }

/* ========================================
   UTILITÁRIOS
   ======================================== */

.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }



/* ==========================================
   POST SINGLE
   ========================================== */

.breadcrumb-section {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-light);
}

.post-single {
    padding: var(--spacing-xl) 0;
}

.post-single-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.post-main {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.post-header {
    margin-bottom: 30px;
}

.post-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.post-single-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 20px;
}

.post-single-meta {
    padding: 20px 0;
    border-top: 1px solid var(--bg-light);
    border-bottom: 1px solid var(--bg-light);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar,
.author-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 24px;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.post-date-views {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.post-date-views span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-featured-image {
    margin: 30px 0;
    border-radius: 16px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
}

.post-content-body p {
    margin-bottom: 20px;
}

.post-content-body h2,
.post-content-body h3,
.post-content-body h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.post-content-body ul,
.post-content-body ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.post-footer {
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

.post-tags {
    margin-bottom: 30px;
}

.post-tags h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-share h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.email { background: #6b7280; }

/* Post Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget-author .author-card {
    text-align: center;
}

.author-card-avatar,
.author-card-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
}

.author-card-avatar-placeholder {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 40px;
}

.author-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.author-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Widget */
.widget-cta .cta-card {
    background: linear-gradient(135deg, #7B5FFF 0%, #5B8FF9 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
}

.cta-card i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.cta-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related Posts */
.related-posts {
    padding: var(--spacing-xl) 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 40px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ==========================================
   EMPTY STATE
   ========================================== */

.no-posts {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.no-posts i {
    font-size: 80px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.no-posts h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.no-posts p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, #7B5FFF, #5B8FF9);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 95, 255, 0.3);
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 992px) {
    .blog-grid,
    .post-single-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar,
    .post-sidebar {
        order: -1;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .post-single-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .posts-grid,
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .post-main {
        padding: 25px;
    }
    
    .post-single-title {
        font-size: 26px;
    }
    
    .post-content-body {
        font-size: 16px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .search-input-wrapper {
        flex-direction: column;
        padding: 15px;
        border-radius: 16px;
    }
    
    .search-input-wrapper input {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .search-input-wrapper button {
        width: 100%;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

/**
 * CSS do Blog ProCuidar Vacinas
 * Layout baseado no design do site principal
 */

/* ==========================================
   VARIÁVEIS E RESET
   ========================================== */

:root {
    /* Cores Principais */
    --primary-color: #7B5FFF;
    --secondary-color: #5B8FF9;
    --text-color: #333333;
    --text-light: #6b7280;
    --bg-color: #FFFFFF;
    --bg-light: #F5F7FA;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e8ebf5 100%);
    
    /* Cores das Categorias */
    --pediatria: #5B8FF9;
    --gestantes: #FF6B9D;
    --adultos: #9270CA;
    --tecnologia: #5AD8A6;
    --prevencao: #F6BD16;
    --educacao: #6DC8EC;
    
    /* Sombras */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.12);
    
    /* Transições */
    --transition: all 0.3s ease;
    
    /* Espaçamentos */
    --container-width: 1200px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    background: var(--bg-gradient);
    padding: var(--spacing-xl) 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 95, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91, 143, 249, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #7B5FFF 0%, #5B8FF9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Search Form */
.search-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 8px 8px 8px 20px;
    box-shadow: var(--shadow-md);
}

.search-input-wrapper i {
    color: var(--text-light);
    margin-right: 12px;
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.search-input-wrapper button {
    background: linear-gradient(to right, #7B5FFF, #5B8FF9);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-input-wrapper button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 95, 255, 0.3);
}

/* ==========================================
   BLOG CONTENT
   ========================================== */

.blog-content {
    padding: var(--spacing-xl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* ==========================================
   POSTS GRID
   ========================================== */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.post-image-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.post-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-title a {
    color: inherit;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.btn-read-more:hover {
    gap: 12px;
}

/* ==========================================
   PAGINATION
   ========================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    background: white;
    color: var(--text-color);
    font-weight: 500;
    border: 2px solid #e5e7eb;
    transition: var(--transition);
}

.pagination-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ==========================================
   SIDEBAR
   ========================================== */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-light);
}

/* Categories Widget */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 12px;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
    transition: var(--transition);
}

.category-link:hover {
    background: var(--bg-light);
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.category-count {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Recent Posts Widget */
.recent-posts {
    list-style: none;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-title:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Newsletter Widget */
.widget-newsletter {
    background: linear-gradient(135deg, #7B5FFF 0%, #5B8FF9 100%);
    color: white;
}

.widget-newsletter .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.widget-newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.95;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.btn-newsletter {
    width: 100%;
    padding: 12px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-color);
    color: white;
}

/* ==========================================
   POST SINGLE
   ========================================== */

.breadcrumb-section {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-light);
}

.post-single {
    padding: var(--spacing-xl) 0;
}

.post-single-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.post-main {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.post-header {
    margin-bottom: 30px;
}

.post-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.post-single-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 20px;
}

.post-single-meta {
    padding: 20px 0;
    border-top: 1px solid var(--bg-light);
    border-bottom: 1px solid var(--bg-light);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar,
.author-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 24px;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.post-date-views {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.post-date-views span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-featured-image {
    margin: 30px 0;
    border-radius: 16px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
}

.post-content-body p {
    margin-bottom: 20px;
}

.post-content-body h2,
.post-content-body h3,
.post-content-body h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.post-content-body ul,
.post-content-body ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.post-footer {
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

.post-tags {
    margin-bottom: 30px;
}

.post-tags h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-share h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.email { background: #6b7280; }

/* Post Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget-author .author-card {
    text-align: center;
}

.author-card-avatar,
.author-card-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
}

.author-card-avatar-placeholder {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 40px;
}

.author-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.author-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Widget */
.widget-cta .cta-card {
    background: linear-gradient(135deg, #7B5FFF 0%, #5B8FF9 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
}

.cta-card i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.cta-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related Posts */
.related-posts {
    padding: var(--spacing-xl) 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 40px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ==========================================
   EMPTY STATE
   ========================================== */

.no-posts {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.no-posts i {
    font-size: 80px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.no-posts h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.no-posts p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, #7B5FFF, #5B8FF9);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 95, 255, 0.3);
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 992px) {
    .blog-grid,
    .post-single-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar,
    .post-sidebar {
        order: -1;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .post-single-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .posts-grid,
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .post-main {
        padding: 25px;
    }
    
    .post-single-title {
        font-size: 26px;
    }
    
    .post-content-body {
        font-size: 16px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .search-input-wrapper {
        flex-direction: column;
        padding: 15px;
        border-radius: 16px;
    }
    
    .search-input-wrapper input {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .search-input-wrapper button {
        width: 100%;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

/* ==========================================
   MOBILE OVERRIDE - PRIORIDADE MÁXIMA
   ========================================== */
@media (max-width: 767px) {
    /* Desativa todas as regras de desktop primeiro */
    .post-single-grid {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .post-main {
        order: 1 !important;
        padding: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .post-sidebar {
        order: 2 !important;
        margin-top: 0 !important;
    }
    
    /* Remove qualquer float ou position que atrapalhe */
    .post-main,
    .post-sidebar,
    .widget,
    .related-posts {
        float: none !important;
        position: static !important;
        clear: both !important;
    }
    
    /* Largura total para todos os elementos */
    .post-main,
    .post-sidebar,
    .post-single-grid,
    .post-single > .container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
}


 @media (max-width: 767px) {
        .blog-filters {
            overflow: visible !important;
            padding: 1rem;
            width: 100%;
        }
        
        .search-form {
            display: flex !important;
            flex-direction: column !important;
            gap: 0.75rem !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        .search-input,
        .search-input-wrapper input {
            width: 100% !important;
            padding: 0.875rem 1rem !important;
            border: 1px solid #E5E7EB !important;
            border-radius: 0.5rem !important;
            display: block !important;
            visibility: visible !important;
        }
        
        .search-button,
        .search-input-wrapper button {
            width: 100% !important;
            padding: 0.875rem 1.5rem !important;
            background: #7C3AED !important;
            color: #FFFFFF !important;
            display: block !important;
            visibility: visible !important;
        }
        
        .blog-hero,
        .hero-content {
            overflow: visible !important;
        }
    }