/* --- CORREÇÃO DE LAYOUT GLOBAL --- */
main.container {
    display: block !important; /* Remove o espaço da sidebar */
    padding-bottom: 60px;
}

.editors-main {
    width: 100%;
}

/* --- Cabeçalho da Seção --- */
.section-header {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.editors-intro {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin-top: 10px;
}

/* --- Grid de Editores --- */
.editors-grid {
    display: grid;
    /* Grid responsivo: mínimo 300px por card */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Card do Editor */
.editor-card {
    background-color: var(--bg-surface);
    border: 1px solid rgba(242, 227, 213, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.editor-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cream);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Imagem do Editor */
.editor-image {
    height: 180px;
    background-color: #000;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.editor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que preencha o espaço sem bordas brancas */
    transition: transform 0.5s;
    opacity: 0.9;
}

.editor-card:hover .editor-image img {
    transform: scale(1.1);
    opacity: 1;
}

/* Conteúdo do Card */
.editor-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tech-tag {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--accent-cream);
    background: rgba(242, 227, 213, 0.1);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
    align-self: flex-start;
    border: 1px solid rgba(242, 227, 213, 0.2);
}

.editor-content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.editor-desc {
    font-size: 0.95rem;
    color: #b0c4de;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1; /* Empurra o botão para baixo */
}

/* Botão */
.editor-btn {
    display: block;
    text-align: center;
    background: transparent;
    border: 1px solid var(--accent-cream);
    color: var(--accent-cream);
    padding: 12px;
    font-family: var(--font-tech);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: auto;
    transition: all 0.2s;
}

.editor-btn:hover {
    background: var(--accent-cream);
    color: var(--bg-blueprint);
    text-decoration: none;
}

/* --- Caixa de Lista Completa --- */
.full-list-box {
    background-color: rgba(242, 227, 213, 0.05);
    border: 1px dashed var(--text-muted);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
}

.full-list-box h3 {
    font-family: var(--font-heading);
    color: var(--accent-cream);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.full-list-box p {
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.full-list-btn {
    display: inline-block;
    background: var(--accent-cream);
    color: var(--bg-blueprint);
    padding: 12px 30px;
    font-family: var(--font-tech);
    font-weight: 700;
    border-radius: 4px;
    transition: transform 0.2s;
}

.full-list-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 227, 213, 0.3);
}

/* Responsivo */
@media (max-width: 600px) {
    .editors-grid {
        grid-template-columns: 1fr;
    }
    .full-list-box {
        padding: 25px;
    }
}