/* Arquivo otimizado a partir de Código colado (2).css.
   Ajustes seguros: normalização de espaçamento, remoção de excesso de linhas em branco e preservação de IDs/classes/ordem da cascata. */

/* =========================================================
   CARDS DE ARTIGOS - LAYOUT REFERÊNCIA
   ========================================================= */

.snd-card-wrapper {
    text-decoration: none !important;
    display: block;
    height: 100%;
    color: inherit;
}
#postsContainer {
    max-width: 1100px;
    margin: 0 auto;
}
.snd-blog-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #d5d7da;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.snd-card-wrapper:hover .snd-blog-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.snd-card__image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    height: 200px;
    flex-shrink: 0;
}

.snd-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.snd-card-wrapper:hover .snd-card__img {
    transform: scale(1.05);
}

.snd-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* =========================================================
   BADGE DO TEMA (ESTILO TECH PREMIUM)
   ========================================================= */
.snd-card__badge {
    align-self: flex-start;
    background-color: rgba(15, 122, 222, 0.08);
    color: #0F7ADE;
    border: 1px solid rgba(15, 122, 222, 0.2);

    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;

    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05px;
}

.snd-card__title {
    font-family: 'Source Serif 4', serif;
    font-size: 20px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    height: 52px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.snd-card__meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.snd-card__excerpt {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* =========================================================
   BARRA DE BUSCA NO EXPLORE
   ========================================================= */
.explore-container {
    min-height: 50px;
}

.explore-search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--sndesk-border);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all .2s ease;
  z-index: 10;
}

.explore-search-box:focus-within {
  border-color: var(--sndesk-primary);
  box-shadow: 0 0 0 3px rgba(15,122,222,0.1);
}

.explore-search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--sndesk-text);
  width: 180px;
  transition: width 0.3s ease;
}

.explore-search-box input:focus {
  width: 240px;
}

.explore-search-box i {
  color: var(--sndesk-text-soft);
  margin-left: 8px;
  font-size: 14px;
}
@media (max-width: 992px) {
  .explore-container {
    flex-direction: column;
    gap: 20px;
  }
  .explore-search-box {
    position: relative !important;
    width: 100%;
    max-width: 400px;
  }
  .explore-search-box input {
    width: 100%;
  }
  .explore-search-box input:focus {
    width: 100%;
  }
}
/* =========================================================
   POST (show)
   ========================================================= */

main.container{
  padding-top: calc(var(--navbar-height) + 18px);
}

.post-show{
  max-width:800px;
  margin:24px auto 0;
  padding:0 12px;
}

.post-container{
  max-width:760px;
  margin:0 auto;
  padding-top:0;
}

.post-content blockquote{
  border-left:3px solid var(--sndesk-primary);
  padding-left:16px;
  color:#5f6368;
  font-style:italic;
  margin:24px 0;
}

.post-content hr{
  border:none;
  border-top:1px solid #e0e0e0;
  margin:40px 0;
}

.post-card{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1);
}
.post-card.show{
  opacity:1;
  transform:translateY(0);
}

.rating-box{
  font-size:22px;
  font-weight:600;
  color:#111827;
}

.like-btn{
  border:1px solid #e5e7eb;
  background:#fff;
  padding:6px 14px;
  border-radius:999px;
  transition:.2s;
}
.like-btn:hover{
  background:#fff1f2;
  border-color:#fecdd3;
}

/* =========================================================
   ADMIN USERS EDIT
   ========================================================= */

.profile-card .mb-3{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.profile-avatar-wrap{
  flex:0 0 auto;
}

.profile-avatar-box{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border:1px solid rgba(60, 130, 255, .35);
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  max-width:420px;
}

.profile-avatar-preview{
  width:54px;
  height:54px;
  border-radius:999px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f3f6ff;
  border:1px solid rgba(60, 130, 255, .25);
  flex:0 0 auto;
}

.profile-avatar-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.profile-avatar-initial{
  font-weight:800;
  font-size:18px;
  color:#1f2a44;
}

.profile-avatar-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.profile-avatar-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:#0b63ff;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  user-select:none;
  text-decoration:none;
  line-height:1;
  box-shadow:0 10px 18px rgba(11, 99, 255, .22);
}

.profile-avatar-btn:hover{
  filter:brightness(.98);
}

.profile-avatar-remove{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(220, 53, 69, .25);
  background:rgba(220, 53, 69, .06);
  color:#b4232a;
  font-weight:700;
  cursor:pointer;
  user-select:none;
}

.profile-avatar-remove input{
  margin:0;
  transform:translateY(1px);
}

.profile-avatar-hint{
  font-size:12px;
  color:#6b7280;
  white-space:nowrap;
}

.profile-avatar-actions .profile-error{
  width:100%;
  margin-top:2px;
}

@media (max-width: 760px){
  .profile-card .mb-3{
    flex-direction:column;
    align-items:flex-start;
  }

  .profile-avatar-box{
    width:100%;
    max-width:100%;
    justify-content:flex-start;
  }

  .profile-avatar-hint{
    white-space:normal;
  }
}

/* =========================================================
   VOLTAR AO TOPO
   ========================================================= */

.back-to-top-wrap{
  display:flex;
  justify-content:center;
  margin:26px 0 10px;
  padding-bottom:18px;
}

.back-to-top{
  appearance:none;
  border:1px solid var(--sndesk-border);
  background:var(--sndesk-surface);
  color:var(--sndesk-text);
  border-radius:999px;
  padding:10px 18px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:14px;
  letter-spacing:.2px;

  display:inline-flex;
  align-items:center;
  gap:10px;

  box-shadow:0 10px 24px rgba(17,24,39,.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  cursor:pointer;
}

.back-to-top-icon{
  width:28px;
  height:28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:rgba(15,122,222,.10);
  color:var(--sndesk-primary);
  font-weight:900;
  line-height:1;
}

.back-to-top:hover{
  transform:translateY(-1px);
  border-color:rgba(15,122,222,.30);
  box-shadow:0 16px 34px rgba(34,116,201,.10);
}

.back-to-top:active{
  transform:translateY(0);
  box-shadow:0 10px 22px rgba(34,116,201,.10);
}

.back-to-top:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(34,116,201,.15), 0 16px 34px rgba(34,116,201,.10);
}

.comments-area{
  display:block;
  width:100%;
}

.reading-area{
  padding-bottom:28px;
}

/* =============================================================================
   CONFIGURAÇÕES DO CARROSSEL
   ============================================================================= */
:root {
    --feat-card-w: 340px;
    --rail-gap: 20px;
    --feat-bg: #F4F9FF;
    --card-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    --card-shadow-hover: 0 20px 45px rgba(15, 23, 42, 0.12);
    --title-color: #0f172a;
    --text-color: #64748b;
}

/* =============================================================================
   SEÇÃO DO CARROSSEL (Full Bleed - 100vw)
   ============================================================================= */
.snd-carousel-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background-color: var(--feat-bg) !important;
    padding: 60px 0 !important;
    overflow: hidden !important;
}

.snd-carousel-header {
    max-width: 920px;
    margin: 0 auto 24px auto;
    padding: 0 15px;
}

.snd-carousel-wrapper {
    position: relative;
    width: 100%;
}

/* =============================================================================
   A PISTA HORIZONTAL (Matemática exata para 3 cards)
   ============================================================================= */
.snd-carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: var(--rail-gap);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    max-width: 1060px;
    margin: 0 auto;
    padding: 12px 0 40px 0;

    -ms-overflow-style: none;
    scrollbar-width: none;
}
.snd-carousel-track::-webkit-scrollbar {
    display: none;
}

.snd-carousel-track .snd-feature-card {
    flex: 0 0 var(--feat-card-w) !important;
    width: var(--feat-card-w) !important;
    scroll-snap-align: start;
}

@media (max-width: 1100px) {
    .snd-carousel-track {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .snd-carousel-track {
        max-width: var(--feat-card-w);
    }
}

/* =============================================================================
   BOTÕES DE NAVEGAÇÃO
   ============================================================================= */
.snd-carousel-controls {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    gap: 12px;
}

.snd-btn-nav {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 1px solid #0F7ADE !important;
    background: transparent !important;
    color: #0F7ADE !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0 !important;
}

.snd-btn-nav:hover {
    background: #0F7ADE !important;
    color: #ffffff !important;
}

/* =============================================================================
   CARDS
   ============================================================================= */
.related-card {
    position: relative;
    height: 100%;
    border-radius: 16px !important;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e9eef5;
    box-shadow: var(--card-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.related-card::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(15, 122, 222, 0) 0%, rgba(15, 122, 222, 0.65) 50%, rgba(15, 122, 222, 0) 100%);
    opacity: 0;
    transform: scaleX(0.65);
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: 2;
}

.related-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 122, 222, 0.18);
    box-shadow: var(--card-shadow-hover);
}

.related-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.related-img-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    background: #eef2f7;
    border-bottom: 1px solid #edf2f7;
}

.related-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.related-card:hover .related-img-wrapper img {
    transform: scale(1.035);
}

.related-card .card-body {
    padding: 16px 18px 18px;
}

.related-card .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.related-resumo {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-color);
    margin-top: 0;
}

.related-card .badge,
.related-card .category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 122, 222, 0.07);
    border: 1px solid rgba(15, 122, 222, 0.10);
    color: #0f7ade;
    font-size: 0.75rem;
    font-weight: 600;
}

.related-card a {
    text-decoration: none;
    color: inherit;
}

.related-card:hover .card-title {
    color: #0f4fa8;
}
.snd-btn-nav:disabled {
    opacity: 0.4;
    border-color: #cbd5e1 !important;
    color: #94a3b8 !important;
    cursor: not-allowed;
    pointer-events: none;
}
/* =========================================================
   TOAST
   ========================================================= */

.sndesk-toast{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%) translateY(10px);
  opacity:0;
  pointer-events:none;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(17,24,39,.92);
  color:#fff;
  font-weight:700;
  font-size:14px;
  box-shadow:0 16px 40px rgba(0,0,0,.18);
  transition:opacity .18s ease, transform .18s ease;
  z-index:20000;
}

.sndesk-toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* =========================================================
   FEATURED
   ========================================================= */

.featured-title-main{
  font-size:32px;
  letter-spacing:-0.5px;
}

.featured-grid,
.featured-wrapper{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:28px;
  align-items:stretch;
}

.featured-main{
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.featured-main img{
  width:100%;
  height:340px;
  object-fit:cover;
}

.featured-content{
  padding:26px;
}

.featured-date{
  color:#8b8b8b;
  font-size:.9rem;
  margin-bottom:8px;
}

.featured-title{
  font-size:1.6rem;
  font-weight:700;
  margin-bottom:12px;
}

.featured-excerpt{
  color:#555;
  line-height:1.6;
}

.featured-box{
  background:#fff;
  padding:28px;
  border-radius:18px;
  box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.featured-box-title{
  font-size:12px;
  letter-spacing:1.5px;
  color:#6b7280;
  font-weight:600;
}

.featured-divider{
  height:1px;
  background:#e5e7eb;
  margin:12px 0 20px;
}

.featured-items{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.featured-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-decoration: none !important;
    color: inherit;
    margin-bottom: 20px;
}
.featured-item:hover{
  background:#f9fafb;
}

.featured-item img {
    width: 120px !important;
    height: 85px !important;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.featured-item-content small{
  color:#9ca3af;
}

.featured-item-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    -webkit-line-clamp: 3;
    color: #1e293b;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-item-resumo {
    display: none !important;
}
.featured-item .featured-item-content {
    flex-grow: 1;
}
.featured-item h3,
.featured-item .title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #1e293b;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-item p,
.featured-item .excerpt {
    font-size: 13px;
    color: #64748b;
    display: -webkit-box;

    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.featured-side{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.featured-mini{
  display:flex;
  gap:14px;
  padding:14px;
  border-radius:14px;
  background:#fff;
  align-items:center;
  box-shadow:0 6px 20px rgba(0,0,0,.04);
  transition:.2s;
}
.featured-mini:hover{
  transform:translateY(-4px);
}
.featured-mini img{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:10px;
}
.featured-mini-title{
  font-weight:600;
}

/* =========================================================
   POST EDITOR (create/edit)
   ========================================================= */

.post-editor-page{
  padding-top:18px;
  padding-bottom:40px;
}

.post-editor-page h1{
  font-weight:900;
  letter-spacing:-.2px;
  color:#0b1220;
}
.post-editor-page p.text-muted{
  color:#64748b !important;
}

.post-editor-card{
    background: #F5F5F7 !important;
  border: 1px solid rgba(15, 23, 42, .10) !important;
  border-radius:22px;
  padding:26px;
  border:1px solid rgba(15,122,222,.10);
  box-shadow:0 22px 70px rgba(2,14,28,.08);
  position:relative;
  overflow:hidden;
}

.post-editor-card::before{
  content: none !important;
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(
    180deg,
    rgba(80,205,249,.20),
    rgba(15,122,222,.10),
    transparent 68%
  );

}

.post-divider{
  height:1px;
  background:rgba(15,122,222,.10);
  margin:18px 0;
}

.post-editor-page .form-label{
  color:#0b1220;
  font-weight:800;
  letter-spacing:-.1px;
}

.post-editor-page .form-control{
  border-radius:14px;
  border:1px solid rgba(15,122,222,.18);
  background:#fff;
  box-shadow:0 10px 28px rgba(2,14,28,.03);
  transition:box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}

.post-editor-page .form-control:focus{
  border-color:rgba(15,122,222,.45);
  box-shadow:
    0 18px 45px rgba(2,14,28,.06),
    0 0 0 4px rgba(80,205,249,.18);
  outline:0;
}

.post-editor-page .form-control-lg{
  padding:14px 16px;
  font-weight:700;
}

.post-editor-page small.text-muted{
  color:#64748b !important;
}

.post-editor-page .card{
  border-radius:18px;
  border:1px solid rgba(15,122,222,.12);
  box-shadow:0 18px 55px rgba(2,14,28,.06);
  background:linear-gradient(
    180deg,
    rgba(231,243,254,.60),
    #fff 55%
  );
}

.upload-box{
  border-radius:16px;
  border:1.5px dashed rgba(15,122,222,.32);
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(80,205,249,.16), transparent 60%),
    var(--sndesk-primary-soft, #E7F3FE);
  min-height:170px;
  padding:16px;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, filter .15s ease;
}

.upload-box:hover{
  transform:translateY(-1px);
  border-color:rgba(15,122,222,.48);
  box-shadow:0 18px 50px rgba(2,14,28,.10);
  filter:saturate(1.02);
}

#previewImagem{
  border-radius:14px !important;
  box-shadow:0 14px 40px rgba(2,14,28,.10);
  border:1px solid rgba(15,122,222,.12);
}

.post-editor-page .editor-wrapper{
  border:1px solid rgba(15,122,222,.12);
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 55px rgba(2,14,28,.06);
  padding:16px;
}

.post-editor-page .ql-toolbar.ql-snow,
.post-editor-page .ql-container.ql-snow{
  border:0 !important;
}

.post-editor-page .ql-toolbar.ql-snow{
  background:rgba(231,243,254,.55);
  border-radius:14px;
  padding:10px;
  box-shadow:inset 0 0 0 1px rgba(15,122,222,.10);
}

.post-editor-page .ql-container.ql-snow{
  background:#fff;
  border-radius: 0 0 14px 14px;
  margin-top:10px;
  box-shadow:inset 0 0 0 1px rgba(15,122,222,.10);
}

.post-editor-page .editor-wrapper:focus-within{
  box-shadow:
    0 18px 55px rgba(2,14,28,.06),
    0 0 0 .22rem rgba(15,122,222,.14);
  border-color:rgba(15,122,222,.22);
}

.post-editor-page .ql-editor{
  min-height:380px;
  padding:16px;
  font-size:16px;
  line-height:1.85;
  color:#0b1220;
}

.post-editor-page .ql-editor.ql-blank::before{
  color:#94a3b8;
  font-style:normal;
}

.post-editor-page .btn.btn-primary{
  border:0;
  border-radius:999px;
  padding:12px 18px;
  font-weight:900;
  letter-spacing:.2px;
  background:linear-gradient(
    180deg,
    var(--sndesk-primary-dark, #50CDF9) 0%,
    var(--sndesk-primary, #0F7ADE) 100%
  );
  box-shadow:0 16px 36px rgba(15,122,222,.26);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.post-editor-page .btn.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 22px 46px rgba(15,122,222,.32);
  filter:brightness(1.02);
}

.post-editor-page .btn.btn-primary:active{
  transform:translateY(0);
  box-shadow:0 14px 30px rgba(15,122,222,.24);
}

.post-editor-page a.text-muted{
  color:#64748b !important;
  transition:color .15s ease;
}
.post-editor-page a.text-muted:hover{
  color:#0b1220 !important;
}

@media (max-width: 992px){
  .post-editor-card{
    padding:18px;
    border-radius:18px;
  }
  .post-editor-page .ql-editor{
    min-height:280px;
  }
}

/* =========================================================
   PUBLICAR: fix para não estourar
   ========================================================= */

.post-editor-page .post-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.post-editor-page .post-actions button[type="submit"].btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex:0 0 auto !important;

  width:auto !important;
  inline-size:max-content !important;
  max-width:240px !important;

  height:44px !important;
  padding:0 18px !important;

  white-space:nowrap !important;
  min-width:160px !important;

  float:none !important;
  position:static !important;
  opacity:1 !important;
  transform:none !important;
  filter:none !important;
}

.post-editor-page .post-actions .btn{
  width:auto !important;
  max-width:none !important;
}

.post-editor-page .post-actions button[type="submit"].btn:hover{
  transform:translateY(-1px) !important;
  box-shadow:0 22px 60px rgba(15,122,222,.32) !important;
}

/* =========================================================
   COMENTARIOS E RATING
   ========================================================= */

.post-container .post-actions,
.article-container .post-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;

  background:var(--sndesk-card);
  border:1px solid var(--sndesk-border);
  border-radius:var(--sndesk-radius);
  padding:14px 16px;
  box-shadow:0 6px 16px rgba(15,23,42,.04);
}

.post-container .rating-box,
.article-container .rating-box{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:220px;
}

.rating-box .rating-average{
  font-weight:800;
  color:var(--sndesk-text);
}

.rating-box .rating-count{
  font-size:13px;
}

.post-container .rating-wrapper,
.article-container .rating-wrapper{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
  min-width:240px;
  text-align:right;
}

.user-rating{
  margin:0;
  font-weight:700;
  color:var(--sndesk-text-soft);
}

.star-rating{
  display:flex;
  align-items:center;
  gap:8px;
  justify-content:flex-end;
  user-select:none;
}

.star-rating .star{
  cursor:pointer !important;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:22px;
  height:22px;

  line-height:1;
  font-size:18px;

  color:rgba(17,24,39,.25);
  -webkit-tap-highlight-color:transparent;

  transition:transform .12s ease, color .12s ease;
}

.star-rating .star.active,
.star-rating .star.hover{
  color:rgba(245,158,11,.95);
}

.post-container .star-rating .star:hover,
.article-container .star-rating .star:hover{
  transform:translateY(-1px) scale(1.08);
}

@media (max-width: 640px){
  .post-container .post-actions,
  .article-container .post-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .post-container .rating-wrapper,
  .article-container .rating-wrapper{
    align-items:flex-start;
    min-width:0;
    text-align:left;
  }

  .star-rating{
    justify-content:flex-start;
  }
}

.comments-panel{
  background:var(--sndesk-surface);
  border:1px solid var(--sndesk-border);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.comments-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding:16px 18px;

  background:linear-gradient(
    180deg,
    rgba(15,122,222,.08),
    rgba(15,122,222,0)
  );
  border-bottom:1px solid var(--sndesk-border);
}

.comments-title{
  margin:0;
  font-family:var(--font-title);
  font-weight:900;
  letter-spacing:-0.02em;
  color:var(--sndesk-text);
}

.comments-count{
  font-size:13px;
  font-weight:800;
  color:var(--sndesk-text-soft);
}

.comment-form{
  padding:16px 18px;
  border-bottom:1px solid var(--sndesk-border);
  background:transparent;
}

.comment-input{
  width:100%;
  min-height:96px;
  resize:vertical;

  border-radius:16px;
  border:1.5px solid rgba(15,23,42,.12);
  background:#fff;

  padding:12px 14px;

  color:var(--sndesk-text);
  font-family:var(--font-body);
  font-size:14px;
  line-height:1.6;

  transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.comment-input:focus{
  outline:none;
  border-color:rgba(34,116,201,.45);
  box-shadow:0 0 0 4px rgba(34,116,201,.12);
  transform:translateY(-1px);
}

.comment-form-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:12px;
}

.comment-btn{
  appearance:none;
  border:1px solid rgba(34,116,201,.28);
  background:var(--sndesk-primary);
  color:#fff;

  height:40px;
  padding:0 16px;
  border-radius:999px;

  font-weight:900;
  font-size:13px;

  box-shadow:0 12px 26px rgba(34,116,201,.16);
  cursor:pointer;

  transition:transform .12s ease, box-shadow .2s ease, filter .2s ease;
}

.comment-btn:hover{
  background:var(--sndesk-primary-600);
  transform:translateY(-1px);
  box-shadow:0 16px 34px rgba(34,116,201,.20);
}

.comments-guest,
.comments-empty{
  padding:16px 18px;
  color:var(--sndesk-text-soft);
}

.comments-list{
  padding:6px 0;
}

.comment-item{
  padding:16px 18px;
  transition:background .15s ease;
}

.comment-item + .comment-item{
  border-top:1px solid rgba(229,234,241,.95);
}

.comment-item:hover{
  background:rgba(15,122,222,.035);
}

.comment-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.comment-user{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  cursor:pointer;
}

.comment-avatar{
  width:38px;
  height:38px;
  border-radius:999px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(17,24,39,.92);
  color:#fff;

  font-weight:900;
  font-size:14px;
  flex:0 0 auto;
}

.comment-meta{
  min-width:0;
}

.comment-name{
  font-weight:900;
  color:var(--sndesk-text);
  line-height:1.15;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:520px;
}

.comment-time{
  margin-top:2px;
  font-size:12px;
  font-weight:700;
  color:var(--sndesk-text-soft);
}

.comment-tools{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

.comment-del{
  border:1px solid rgba(220,38,38,.18);
  background:rgba(220,38,38,.08);
  color:#dc2626;

  height:34px;
  padding:0 12px;
  border-radius:999px;

  font-weight:900;
  font-size:12px;

  cursor:pointer;
  transition:transform .12s ease, background .15s ease, border-color .15s ease;
}

.comment-del:hover{
  background:rgba(220,38,38,.14);
  border-color:rgba(220,38,38,.26);
  transform:translateY(-1px);
}

.comment-text{
  margin-top:10px;
  color:var(--sndesk-text);
  line-height:1.7;
  font-size:15px;
  word-break:break-word;
}

.comment-badge{
  margin-top:12px;
  display:inline-flex;
  align-items:center;

  padding:6px 10px;
  border-radius:999px;

  background:rgba(15,122,222,.10);
  border:1px solid rgba(15,122,222,.18);

  color:rgba(15,122,222,.98);
  font-weight:900;
  font-size:12px;
}

@media (max-width: 640px){
  .comments-head,
  .comment-form,
  .comment-item{
    padding:14px;
  }

  .comment-form-actions{
    justify-content:stretch;
  }

  .comment-btn{
    width:100%;
  }

  .comment-name{
    max-width:240px;
  }
}

/* =========================================================
   VEJA MAIS
   ========================================================= */

.load-more-wrap {
  margin: 40px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.posts-counter-text {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.btn-load-more {
  appearance: none;
  cursor: pointer;
  height: 44px;
  padding: 0 32px;
  border-radius: 999px;

  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  color: #ffffff;
  background: linear-gradient(360deg, #0F7ADE 0%, #4FACFE 100%);

  border: none;
  backdrop-filter: none;

  box-shadow: 0 8px 20px rgba(15, 122, 222, 0.25);
  transition: all .25s ease;
}

.btn-load-more:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 12px 28px rgba(15, 122, 222, 0.35);
}

.btn-load-more:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(34, 116, 201, .12);
}

.btn-load-more:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(34, 116, 201, .15), 0 14px 28px rgba(34, 116, 201, .12);
}

.btn-load-more.is-loading {
  opacity: .75;
  pointer-events: none;
}
/* =========================================================
   POST EDITOR
   ========================================================= */

.post-editor-page .post-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.post-editor-page .post-actions button[type="submit"]{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  flex:0 0 auto !important;
  width:auto !important;
  max-width:none !important;

  height:44px !important;
  padding:0 18px !important;

  white-space:nowrap !important;
  line-height:1 !important;

  font-size:14px !important;
  font-weight:900 !important;
  letter-spacing:.2px !important;

  color:#fff !important;
  background:linear-gradient(
    180deg,

    var(--sndesk-primary-dark, #50CDF9) 0%,
    var(--sndesk-primary, #0F7ADE) 120%
  ) !important;

  border:0 !important;
  border-radius:999px !important;

  box-shadow:0 16px 36px rgba(15,122,222,.26) !important;

  opacity:1 !important;
  transform:none !important;
}

.post-editor-page .post-actions button[type="submit"]:hover{
  transform:translateY(-1px) !important;
  box-shadow:0 22px 46px rgba(15,122,222,.32) !important;
}

.post-editor-page .post-actions button[type="submit"]:disabled,
.post-editor-page .post-actions button[type="submit"].disabled{
  opacity:.55 !important;
  cursor:not-allowed !important;
  transform:none !important;
  box-shadow:0 10px 22px rgba(15,122,222,.14) !important;
}

.post-editor-page .post-actions .btn{
  width:auto !important;
}

.admin-pagination-links .pagination ~ p,
.admin-pagination-links nav > p,
.admin-pagination-links nav p.text-sm{
  display:none !important;
}
.post-editor-page .card,
.post-editor-page .editor-wrapper{
  background: #F5F5F7 !important;
}
.post-editor-page .ql-container.ql-snow{
  background:#fff !important;
}
.admin-surface-card{
  background:#fff;
  border:1px solid var(--sndesk-border);
  border-radius:16px;
  box-shadow: 0 14px 30px rgba(44,62,80,.06);
  overflow:hidden;
}

.admin-surface-head{
  padding:16px 18px;
  border-bottom:1px solid rgba(192,207,226,.55);
  background: linear-gradient(0deg, rgba(15,122,222,.04), rgba(15,122,222,.04)), #fff;
}

.admin-surface-title{
  font-weight:800;
  color: var(--sndesk-text);
}

.admin-surface-subtitle{
  margin-top:4px;
  font-size:13px;
  font-weight:600;
  color: var(--sndesk-text-soft);
}

.comment-avatar {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comment-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    object-position: center;
}
.custom-pagination nav p,
.custom-pagination nav div.hidden.flex-1,
.custom-pagination nav .text-sm.text-gray-700 {
    display: none !important;
}
.custom-pagination nav div.flex.justify-between.flex-1 {
    display: none !important;
}
.custom-pagination nav {
    display: flex;
    justify-content: center;
}
/* =============================================================================
   FOOTER PRINCIPAL
   ============================================================================= */

.snd-footer {
    background: #f3f5f9;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

.snd-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
}

.snd-footer__container { position: relative; }
.snd-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 24px;
    margin-bottom: 35px;
}

.snd-footer__logo img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

.snd-footer__title {
  font-family: 'DM Sans', sans-serif;
    margin: 0 0 24px 0;
    font-weight: 700;
    font-size: 18px;
    color: rgb(44, 62, 80);
}

.snd-footer__kicker {
    margin: 0 0 16px 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94A3B8;
}

.snd-footer__text {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(44, 62, 80, 0.70);
}
.snd-footer__text a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, border-bottom 0.2s ease;
    border-bottom: 1px solid transparent;
}

.snd-footer__text a:hover {
    color: #0F7ADE;
    border-bottom: 1px solid #0F7ADE;
}

.snd-footer__block {
    margin-bottom: 25px;
}

.snd-footer__label {
  font-family: 'DM Sans', sans-serif;
    margin-bottom: 4px;
    color: #1E293B;
    font-size: 16px;
}

.snd-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.snd-footer__list a,
.snd-footer__social a {
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s;
}

.snd-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  row-gap: 6px;
}

.snd-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(44, 62, 80, 0.70);
  text-decoration: none;
}

.snd-footer__social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.snd-footer__list a:hover,
.snd-footer__social a:hover {
    color: #0F7ADE;
}

.snd-footer__stores {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

.snd-footer__stores img {
    height: 32px;
    width: auto;
}

.snd-footer__lgpd {
    margin-top: 20px;
}

.snd-footer__lgpd img,
.snd-footer__lgpd svg {
    filter: invert(0.5);
    opacity: 1;
    height: 44px;
    width: auto;
}

/* =============================================================================
   FOOTER BOTTOM
   ============================================================================= */
/*linhaazulfooter*/
.snd-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-top: 1.5px solid #0F7ADE;
    padding: 24px 0 35px 0;
    z-index: 2;
}

.snd-footer__copy, .snd-footer__bottomlinks a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s;
}

.snd-footer__watermark {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 1;
    pointer-events: none;
    opacity: 0.05;
}

.snd-footer__watermark img {
    width: auto;
    max-width: 950px;
    height: auto;
    display: inline-block;
    object-fit: contain;
}
.snd-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 44px;
    padding-top: 20px;

}
.snd-footer__legal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 35px;
}
.snd-cta-split {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;

    border-radius: 0 !important;
}
.snd-cta-split .snd-container,
.snd-cta-split .container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ==========================================================================
   PATCH RESPONSIVO CONSOLIDADO
   Cole no final do CSS
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html,
body {
  overflow-x: hidden;
}

#postsContainer,
.snd-container,
.post-show,
.post-container {
  width: 100%;
}
.snd-card__title,
.featured-item-title,
.featured-item h3,
.featured-item .title,
.comment-name {
  word-break: break-word;
}

/* ==========================================================================
   ATÉ 1200px
   ========================================================================== */
@media (max-width: 1200px) {
  .snd-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .featured-grid,
  .featured-wrapper {
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
  }

  .snd-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 22px;
  }
}

/* ==========================================================================
   ATÉ 992px
   ========================================================================== */
@media (max-width: 992px) {
  main.container {
    padding-top: calc(var(--navbar-height) + 14px);
  }

  .snd-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  #postsContainer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .featured-grid,
  .featured-wrapper {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .featured-main img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .featured-content {
    padding: 22px;
  }

  .featured-box {
    padding: 22px;
  }

  .featured-items,
  .featured-side {
    gap: 16px;
  }

  .explore-container {
    display: flex;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    width: 100%;
  }

  .explore-search-box {
    width: 100% !important;
    max-width: none !important;
    position: relative !important;
  }

  .explore-search-box input,
  .explore-search-box input:focus {
    width: 100% !important;
  }

  .snd-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .post-editor-card {
    padding: 20px !important;
    border-radius: 18px !important;
  }

  .post-editor-page .ql-editor {
    min-height: 280px !important;
  }

  .profile-card .mb-3 {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .profile-avatar-box {
    width: 100%;
    max-width: none;
  }
}

/* ==========================================================================
   ATÉ 768px
   ========================================================================== */
@media (max-width: 768px) {
  .snd-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  #postsContainer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .snd-blog-card {
    padding: 14px;
    border-radius: 20px;
  }

  .snd-card__image-wrapper {
    height: 190px;
    margin-bottom: 14px;
  }

  .snd-card__title {
    height: auto;
    min-height: 0;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .snd-card__meta {
    font-size: 13px;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }

  .snd-card__excerpt {
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .featured-title-main {
    font-size: 28px;
    line-height: 1.15;
  }

  .featured-title {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .featured-content,
  .featured-box {
    padding: 18px;
  }

  .featured-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
  }

  .featured-item img {
    width: 96px !important;
    height: 72px !important;
    flex: 0 0 96px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
  }

  .featured-item-content {
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  .featured-item-title,
  .featured-item h3,
  .featured-item .title {
    font-size: 14px !important;
    line-height: 1.35 !important;
    margin-bottom: 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .featured-item p,
  .featured-item .excerpt {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .featured-mini {
    align-items: flex-start;
    padding: 12px;
  }

  .featured-mini img {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }

  .explore-container {
    overflow: hidden;
  }

  .explore-filters,
  .nav-pills,
  .filter-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    width: 100% !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .explore-filters::-webkit-scrollbar,
  .nav-pills::-webkit-scrollbar,
  .filter-wrapper::-webkit-scrollbar {
    display: none;
  }

  .explore-filters a,
  .explore-filters button,
  .nav-pills .nav-link,
  .filter-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  .explore-search-box {
    width: 100% !important;
    max-width: 100% !important;
  }

  .explore-search-box input,
  .explore-search-box input:focus {
    width: 100% !important;
  }

  .post-editor-page .post-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .post-editor-page .post-actions .btn,
  .post-editor-page .post-actions button[type="submit"] {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .post-container .post-actions,
  .article-container .post-actions {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .post-container .rating-box,
  .article-container .rating-box,
  .post-container .rating-wrapper,
  .article-container .rating-wrapper {
    width: 100%;
    min-width: 0;
    text-align: left;
    align-items: flex-start;
  }

  .star-rating {
    justify-content: flex-start !important;
    flex-wrap: wrap;
  }

  .comments-head,
  .comment-form,
  .comment-item {
    padding: 14px !important;
  }

  .snd-footer {
    padding-top: 48px;
  }

  .snd-footer__grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .snd-footer__bottom {
    margin-top: 28px;
    padding-top: 18px;
    gap: 12px;
  }

  .snd-footer__legal-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 24px;
  }

  .snd-footer__watermark img {
    max-width: 420px;
  }
}

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */
@media (max-width: 768px) {
    #cta-final.cta-dark-premium,
    .snd-cta-split {
        padding: 48px 24px !important;
        text-align: center !important;
    }

    #cta-final .d-flex,
    .snd-cta-split .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 24px !important;
    }

    #cta-final h2,
    .snd-cta-split h2 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
    .explore-container,
    .era-filter-wrapper  {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .era-filter {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        width: 100% !important;
        gap: 12px !important;
        padding-bottom: 4px !important;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none !important;
    }

    .era-filter::-webkit-scrollbar {
        display: none !important;
    }

    .era-filter * {
        white-space: nowrap !important;
    }

    .era-filter a,
    .era-filter button {
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .explore-search-box {
        width: 100% !important;
        max-width: 100% !important;
    }

    .explore-search-box input {
        width: 100% !important;
    }
}
/* ==========================================================================
   ATÉ 576px
   ========================================================================== */
@media (max-width: 576px) {
  main.container {
    padding-top: calc(var(--navbar-height) + 10px);
  }

  .post-show {
    margin-top: 16px;
    padding: 0 10px;
  }

  .snd-card__image-wrapper {
    height: 170px;
  }

  .snd-card__badge {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .snd-card__title {
    font-size: 17px;
  }

  .featured-content,
  .featured-box,
  .admin-surface-head,
  .comment-form,
  .comments-head,
  .comment-item {
    padding: 14px;
  }

  .featured-main img {
    aspect-ratio: 16 / 10;
  }

  .featured-item img {
    width: 88px !important;
    height: 68px !important;
    flex: 0 0 88px !important;
  }

  .featured-item-title,
  .featured-item h3,
  .featured-item .title {
    font-size: 13px !important;
  }

  .comment-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .comment-tools {
    width: 100%;
    justify-content: flex-end;
  }

  .comment-name {
    max-width: 100%;
  }

  .profile-avatar-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .profile-avatar-actions {
    width: 100%;
  }

  .profile-avatar-btn,
  .profile-avatar-remove {
    width: 100%;
    justify-content: center;
  }

  .back-to-top {
    width: 100%;
    justify-content: center;
  }

  .load-more-wrap {
    margin: 32px 0 48px;
    gap: 12px;
  }

  .btn-load-more {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .snd-footer__logo img {
    height: 42px;
  }

  .snd-footer__watermark img {
    max-width: 280px;
  }
}

/* ==========================================================================
   ATÉ 420px
   ========================================================================== */
@media (max-width: 420px) {
  .snd-container,
  #postsContainer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .snd-blog-card {
    padding: 12px;
    border-radius: 18px;
  }

  .snd-card__image-wrapper {
    height: 155px;
  }

  .snd-card__title {
    font-size: 16px;
  }

  .snd-card__excerpt {
    font-size: 13px;
  }

  .featured-title-main {
    font-size: 24px;
  }

  .featured-title {
    font-size: 1.15rem;
  }

  .featured-item {
    gap: 10px !important;
  }

  .featured-item img {
    width: 82px !important;
    height: 64px !important;
    flex: 0 0 82px !important;
  }

  .explore-search-box {
    padding: 8px 12px;
  }

  .explore-search-box input {
    font-size: 13px;
  }

  .comment-avatar {
    width: 34px;
    height: 34px;
  }

  .comment-text {
    font-size: 14px;
  }

  .back-to-top {
    padding: 10px 14px;
    font-size: 13px;
  }

  .back-to-top-icon {
    width: 24px;
    height: 24px;
  }
}