/* Estilos Gerais do Widget */
.angie-sidebar-widget-e336e578 {
    font-family: inherit;
    width: 100%;
}

/* Cabeçalho das Abas */
.angie-tabs-header {
    display: flex;
    justify-content: flex-start;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    gap: 0;
}

/* Abas */
.angie-tab {
    cursor: pointer;
    padding: 12px 0;
    margin-right: 30px;
    font-weight: 700;
    color: #666;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
    background: none;
    border: none;
    outline: none;
}

.angie-tab:hover {
    color: #333;
}

.angie-tab.active {
    color: #333;
}

.angie-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #5bc0de;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Conteúdo das Abas */
.angie-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.angie-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Lista de Posts */
.angie-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Item do Post */
.angie-post-item.regular-post {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 0;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angie-post-item.regular-post:hover {
    transform: translateX(5px);
}

/* Thumbnail do Post */
.angie-post-thumb {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.angie-post-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.angie-post-item.regular-post:hover .angie-post-thumb img {
    transform: scale(1.05);
}

/* Conteúdo do Post */
.angie-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Título do Post */
.angie-post-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.angie-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.angie-post-title a:hover {
    color: #5bc0de;
}

/* Meta Informações */
.angie-post-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.angie-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.angie-post-meta i {
    color: #999;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

/* Texto "Nenhum post encontrado" */
.angie-no-posts {
    text-align: center;
    color: #999;
    padding: 20px;
    font-style: italic;
}

/* Responsividade - Tablets */
@media (max-width: 768px) {
    .angie-tabs-header {
        gap: 0;
    }

    .angie-tab {
        font-size: 13px;
        padding: 8px 0;
        margin-right: 20px;
    }

    .angie-post-item.regular-post {
        gap: 12px;
    }

    .angie-post-thumb img {
        width: 70px;
        height: 70px;
    }

    .angie-post-title {
        font-size: 15px;
    }

    .angie-post-meta {
        font-size: 11px;
    }
}

/* Responsividade - Mobile */
@media (max-width: 480px) {
    .angie-tabs-header {
        gap: 0;
        margin-bottom: 15px;
    }

    .angie-tab {
        font-size: 12px;
        padding: 6px 0;
        margin-right: 15px;
    }

    .angie-post-item.regular-post {
        gap: 10px;
        margin-bottom: 15px;
    }

    .angie-post-thumb img {
        width: 60px;
        height: 60px;
    }

    .angie-post-title {
        font-size: 14px;
        margin: 0 0 5px;
    }

    .angie-post-meta {
        font-size: 10px;
        gap: 8px;
    }

    .angie-post-meta span {
        gap: 3px;
    }
}

/* Estados de Foco para Acessibilidade */
.angie-tab:focus {
    outline: 2px solid #5bc0de;
    outline-offset: 2px;
}

.angie-post-title a:focus {
    outline: 2px solid #5bc0de;
    outline-offset: 2px;
}

/* Suporte para modo escuro */
@media (prefers-color-scheme: dark) {
    .angie-sidebar-widget-e336e578 {
        color: #e0e0e0;
    }

    .angie-tabs-header {
        border-bottom-color: #444;
    }

    .angie-tab {
        color: #b0b0b0;
    }

    .angie-tab.active {
        color: #e0e0e0;
    }

    .angie-post-title a {
        color: #e0e0e0;
    }

    .angie-post-meta {
        color: #999;
    }

    .angie-no-posts {
        color: #666;
    }
}