.editor-page{
  width:min(980px, calc(100% - 32px));
  margin:0 auto 48px;
  padding-top:42px;
}

.editor-profile{
  display:grid;
  gap:28px;
  justify-items:center;
  margin:0 auto 48px;
  color:#fff;
}

.editor-loading,
.editor-empty{
  width:100%;
  padding:24px;
  border:1px solid rgba(255,0,0,.35);
  border-radius:8px;
  background:rgba(10,10,10,.72);
  text-align:center;
  font-weight:900;
}

.editor-profile-head{
  display:grid;
  grid-template-columns:128px minmax(0, auto);
  gap:22px;
  align-items:center;
}

.editor-profile-photo{
  width:128px;
  height:128px;
  border-radius:50%;
  object-fit:cover;
  background:#111;
}

.editor-profile-name{
  margin:0 0 10px;
  color:#fff;
  font-size:clamp(30px, 5vw, 48px);
  line-height:1;
  text-transform:none;
}

.editor-socials{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-size:15px;
  font-weight:700;
}

.editor-socials a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:999px;
  color:#fff;
  background:#111;
  text-decoration:none;
  font-size:17px;
  box-shadow:0 0 22px rgba(0,0,0,.42);
  transition:transform .25s ease, box-shadow .25s ease;
}

.editor-socials a.facebook{
  background:#1877f2;
  box-shadow:0 0 25px rgba(24,119,242,.55);
}

.editor-socials a.twitter{
  background:#111;
  box-shadow:0 0 25px rgba(255,255,255,.18);
}

.editor-socials a.instagram{
  background:linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow:0 0 25px rgba(253,29,29,.45);
}

.editor-socials a.youtube{
  background:#fff;
  color:#e60000;
  box-shadow:0 0 25px rgba(255,255,255,.28);
}

.editor-socials a:hover{
  color:#fff;
  transform:translateY(-4px) scale(1.08);
}

.editor-socials a.youtube:hover{
  color:#e60000;
}

.editor-description{
  width:min(900px, 100%);
  margin:0;
  padding:22px 24px;
  background:rgba(255,255,255,.08);
  color:#f2f2f2;
  font-size:18px;
  line-height:1.58;
  font-weight:500;
}

.editor-posts-section{
  width:min(900px, 100%);
  margin:0 auto;
}

.editor-section-title{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:34px;
  border-top:2px solid #f00000;
}

.editor-section-title span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  max-width:100%;
  margin-top:-2px;
  padding:0 18px;
  background:#f00000;
  color:#fff;
  font-size:clamp(12px, 2.4vw, 16px);
  font-weight:1000;
  line-height:1;
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:clip;
}

.editor-posts-list{
  display:grid;
  gap:14px;
}

.editor-post-card{
  display:grid;
  grid-template-columns:210px minmax(0, 1fr);
  gap:16px;
  align-items:center;
  padding:10px;
  border:1px solid var(--editor-post-color, #f00000);
  border-radius:8px;
  background:linear-gradient(115deg, rgba(var(--editor-post-rgb, 240,0,0), .10), rgba(0,0,0,.86) 42%, rgba(0,0,0,.96));
  color:#fff;
  text-decoration:none;
  box-shadow:0 0 18px rgba(var(--editor-post-rgb, 240,0,0), .10);
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.editor-post-card:hover{
  transform:translateY(-2px);
  box-shadow:0 0 26px rgba(var(--editor-post-rgb, 240,0,0), .22);
}

.editor-post-media{
  position:relative;
  height:128px;
  min-height:128px;
  border-radius:6px;
  overflow:hidden;
  background:#111;
}

.editor-post-media img{
  width:100%;
  height:100%;
  min-height:128px;
  display:block;
  object-fit:cover;
}

.editor-post-badge{
  position:absolute;
  left:12px;
  bottom:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:8px 14px;
  border-radius:999px;
  background:var(--editor-post-color, #f00000);
  color:#fff;
  font-size:13px;
  font-weight:1000;
  line-height:1;
  text-transform:uppercase;
}

.editor-post-content h2{
  margin:0 0 8px;
  color:#fff;
  font-size:22px;
  line-height:1.08;
}

.editor-post-content p{
  margin:0 0 10px;
  color:#d8d8d8;
  font-size:16px;
  line-height:1.32;
  font-weight:700;
}

.editor-post-meta{
  color:#ff3b3b;
  font-size:13px;
  font-weight:900;
}

.editor-pagination{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-wrap:wrap !important;
  gap:10px !important;
  margin:32px auto 18px !important;
  padding:0 !important;
}

.editor-pagination button{
  width:auto !important;
  min-width:44px !important;
  height:38px !important;
  min-height:38px !important;
  padding:0 18px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border:1px solid #e60000 !important;
  border-radius:999px !important;
  background:#e60000 !important;
  color:#fff !important;
  font-size:12px !important;
  font-weight:900 !important;
  line-height:1 !important;
  text-decoration:none !important;
  box-shadow:0 0 18px rgba(255,0,0,.24) !important;
  cursor:pointer !important;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease !important;
}

.editor-pagination button:first-child,
.editor-pagination button:last-child{
  min-width:90px !important;
}

.editor-pagination button.pagina-ativa{
  background:#050505 !important;
  color:#ff2020 !important;
  border-color:#e60000 !important;
  box-shadow:0 0 20px rgba(255,0,0,.34) !important;
}

.editor-pagination button:not(:disabled):hover{
  background:#050505 !important;
  color:#ff2020 !important;
  border-color:#e60000 !important;
  transform:translateY(-1px) !important;
  box-shadow:0 0 20px rgba(255,0,0,.34) !important;
}

.editor-pagination button:disabled{
  opacity:.45 !important;
  cursor:not-allowed !important;
  pointer-events:none !important;
}

.editor-post-card.tipo-noticia-normal{ --editor-post-color:#5b000b; --editor-post-rgb:91,0,11; }
.editor-post-card.tipo-noticia-playstation{ --editor-post-color:#0057ff; --editor-post-rgb:0,87,255; }
.editor-post-card.tipo-noticia-xbox{ --editor-post-color:#16a34a; --editor-post-rgb:22,163,74; }
.editor-post-card.tipo-noticia-nintendo{ --editor-post-color:#e00000; --editor-post-rgb:224,0,0; }
.editor-post-card.tipo-noticia-pc{ --editor-post-color:#ffd12f; --editor-post-rgb:255,209,47; }
.editor-post-card.tipo-noticia-fofoca,
.editor-post-card.tipo-noticia-fofocas{ --editor-post-color:#ff2f7d; --editor-post-rgb:255,47,125; }
.editor-post-card.tipo-noticia-rumor{ --editor-post-color:#ff8a00; --editor-post-rgb:255,138,0; }
.editor-post-card.tipo-noticia-opiniao{ --editor-post-color:#7c3cff; --editor-post-rgb:124,60,255; }
.editor-post-card.tipo-noticia-filmes-series{ --editor-post-color:#00d4ff; --editor-post-rgb:0,212,255; }
.editor-post-card.tipo-analise-verde{ --editor-post-color:#00c878; --editor-post-rgb:0,200,120; }
.editor-post-card.tipo-analise-amarela{ --editor-post-color:#ffd029; --editor-post-rgb:255,208,41; }
.editor-post-card.tipo-analise-vermelha{ --editor-post-color:#ff3030; --editor-post-rgb:255,48,48; }

@media (min-width:701px){
  .editor-posts-list{
    display:flex;
    flex-direction:column;
    gap:0;
  }

  .editor-post-card,
  .editor-post-card:hover{
    display:grid;
    grid-template-columns:245px minmax(0, 1fr);
    gap:22px;
    align-items:center;
    min-height:0;
    padding:14px 0;
    margin:0;
    border:0;
    border-bottom:1px dotted rgba(255,255,255,.22);
    border-radius:0;
    background:transparent;
    box-shadow:none;
    transform:none;
    overflow:visible;
  }

  .editor-post-card:last-child{
    border-bottom:0;
  }

  .editor-post-media{
    width:245px;
    height:138px;
    min-height:138px;
    margin:0;
    border:0;
    border-radius:0;
    box-shadow:none;
  }

  .editor-post-media img{
    width:100%;
    height:100%;
    min-height:138px;
    object-fit:cover;
  }

  .editor-post-badge{
    left:12px;
    bottom:10px;
    min-height:32px;
    margin:0;
    padding:8px 14px;
    z-index:2;
  }

  .editor-post-content{
    min-width:0;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:10px;
    text-align:left;
  }

  .editor-post-content h2{
    width:100%;
    margin:0;
    color:#fff;
    font-size:22px;
    line-height:1.18;
    font-weight:500;
    text-align:left;
    text-shadow:none;
    transition:color .18s ease, text-shadow .18s ease;
  }

  .editor-post-card:hover .editor-post-content h2{
    color:var(--editor-post-color, #ff2b2b);
    text-shadow:0 0 14px rgba(var(--editor-post-rgb, 255,43,43), .24);
  }

  .editor-post-content p{
    width:100%;
    margin:0;
    color:rgba(255,255,255,.86);
    font-size:16px;
    line-height:1.35;
    font-weight:400;
    text-align:left;
    display:-webkit-box;
    -webkit-line-clamp:2;
    line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .editor-post-meta,
  .editor-post-meta > span{
    width:100%;
    margin:0;
    display:inline-flex;
    align-items:center;
    justify-content:flex-start;
    flex-wrap:nowrap;
    gap:4px;
    color:rgba(255,255,255,.82);
    font-size:13px;
    line-height:1.25;
    font-weight:500;
    text-align:left;
    white-space:nowrap;
  }

  .editor-post-author-link{
    color:#ff2b2b;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
  }

  .editor-post-author-link:hover{
    color:#ff4a4a;
    text-decoration:none;
  }
}

@media (max-width:700px){
  .editor-page{
    width:min(100% - 24px, 560px);
    padding-top:28px;
  }

  .editor-profile{
    gap:20px;
    margin-bottom:36px;
  }

  .editor-profile-head{
    grid-template-columns:96px minmax(0, 1fr);
    gap:16px;
    width:100%;
  }

  .editor-profile-photo{
    width:96px;
    height:96px;
  }

  .editor-socials{
    flex-wrap:wrap;
  }

  .editor-description{
    padding:18px;
    font-size:16px;
  }

  .editor-section-title{
    margin-bottom:24px;
  }

  .editor-pagination{
    width:100% !important;
    gap:8px !important;
    margin:28px auto 24px !important;
  }

  .editor-pagination button{
    min-width:42px !important;
    height:38px !important;
    min-height:38px !important;
    padding:0 14px !important;
    font-size:12px !important;
  }

  .editor-pagination button:first-child,
  .editor-pagination button:last-child{
    min-width:82px !important;
  }

  .editor-post-card{
    display:flex;
    flex-direction:column;
    gap:0;
    width:100%;
    min-height:0;
    margin:0;
    padding:0 0 26px;
    border:0;
    border-bottom:1px dotted rgba(255,255,255,.22);
    border-radius:0;
    background:transparent;
    box-shadow:none;
    overflow:visible;
    transform:none;
    text-align:center;
  }

  .editor-post-card:hover{
    border-bottom-color:rgba(255,255,255,.22);
    background:transparent;
    box-shadow:none;
    transform:none;
  }

  .editor-posts-list{
    gap:28px;
  }

  .editor-post-media{
    width:100%;
    height:auto;
    min-height:0;
    aspect-ratio:16 / 6.2;
    margin:0 0 12px;
    border-radius:0;
  }

  .editor-post-media img{
    width:100%;
    height:100%;
    min-height:0;
    object-fit:cover;
  }

  .editor-post-badge{
    left:12px;
    bottom:10px;
    min-height:0;
    padding:7px 10px;
    font-size:10px;
  }

  .editor-post-content{
    width:100%;
    min-width:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:7px;
    padding:0 10px;
    text-align:center;
  }

  .editor-post-content h2{
    display:block;
    width:100%;
    margin:0;
    overflow:visible;
    color:#fff;
    font-size:18px;
    line-height:1.22;
    font-weight:500;
    text-align:center;
  }

  .editor-post-content p{
    display:block;
    width:100%;
    margin:0;
    overflow:visible;
    color:rgba(255,255,255,.86);
    font-size:13px;
    line-height:1.32;
    font-weight:400;
    text-align:center;
  }

  .editor-post-meta,
  .editor-post-meta > span{
    width:100%;
    margin:2px 0 0;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:4px;
    color:rgba(255,255,255,.56);
    font-size:12px;
    line-height:1.25;
    font-weight:500;
    text-align:center;
  }

  .editor-post-author-link{
    color:#ff2b2b;
    font-weight:800;
  }
}

/* LINKS DE AUTOR - mesmo comportamento da Home. */
.editor-post-author-link,
.editor-post-author-link:visited{
  color:#ff2b2b !important;
  text-decoration:none !important;
}

.editor-post-author-link:hover,
.editor-post-author-link:focus-visible{
  color:#fff !important;
  text-shadow:0 0 12px rgba(255,0,0,.40) !important;
}
