/*
Theme Name: Hestia Child
Theme URI: https://bruno-wordpress.r4jlrq.easypanel.host
Description: Tema filho do Hestia personalizado para uso da ED2X.
Author: ED2X
Author URI: https://bruno-wordpress.r4jlrq.easypanel.host
Template: hestia-pro
Version: 1.0.0
*/

* {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Reset completo para links */
a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none !important;
  outline: none !important;
  border: none !important;
  border-bottom: none !important;
  text-decoration-line: none !important;
  text-decoration-color: transparent !important;
  text-decoration-style: none !important;
  text-underline-offset: unset !important;
}

body {
  background: #fafafa;
  color: #333;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

/* Navegação Principal */
.nav-menu {
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111111;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 100;
  position: relative;
}

.menu {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  background: transparent;
  border: none;
  outline: none;
  position: absolute;
  left: 24px;
}

.menu:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburguer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 20px;
}

.line-menu {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
  transition: all 0.2s ease;
}

.hamburguer-text {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
}

/* Ticker - Estilos principais */
.ticker-container {
  background: linear-gradient(90deg, #1e3a8a 0%, #1e40af 100%);
  border-bottom: 1px solid #1e40af;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.ticker-content {
  display: flex;
  position: absolute;
  will-change: transform;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  font-size: 13px;
  color: #ffffff;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

a.ticker-link {
  text-decoration: none;
  -moz-text-decoration-style: none;
}

.ticker-label {
  font-weight: 500;
  color: #e2e8f0;
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-color: transparent !important;
  text-decoration-style: none !important;
  text-underline-offset: unset !important;
  border: none !important;
  border-bottom: none !important;
}

.ticker-value {
  font-weight: 600;
  color: #ffffff;
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-color: transparent !important;
  text-decoration-style: none !important;
  text-underline-offset: unset !important;
  border: none !important;
  border-bottom: none !important;
}

.ticker-value.positive {
  color: #10b981;
}

.ticker-value.negative {
  color: #ef4444;
}

.ticker-change {
  font-size: 11px;
  font-weight: 500;
  padding: 1px 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-color: transparent !important;
  text-decoration-style: none !important;
  text-underline-offset: unset !important;
  border: none !important;
  border-bottom: none !important;
}

.ticker-icon {
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-color: transparent !important;
  text-decoration-style: none !important;
  text-underline-offset: unset !important;
  border: none !important;
  border-bottom: none !important;
}

/* Hover effects */
.ticker-container .ticker-item a:hover .ticker-value {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

/* Menu Lateral */
.side-menu {
  position: fixed;
  top: 0;
  left: -350px;
  width: 350px;
  height: 100vh;
  background: #ffffff;
  color: #333333;
  transition: left 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
}

.side-menu.active-menu {
  left: 0;
}

.menu-header {
  padding: 24px 20px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
}

.menu-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.close-menu {
  background: none;
  border: none;
  color: #666;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

.close-menu:hover {
  background: #f0f0f0;
  color: #333;
}

.menu-content {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.menu-section {
  margin-bottom: 8px;
}

.section-title {
  padding: 16px 20px 8px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #fafafa;
}

.menu-list {
  list-style: none;
}

.menu-link {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  font-weight: 500;
}

.menu-link:hover {
  background: #f8f9fa;
  color: #333;
  border-left-color: #007bff;
}

.category-link {
  justify-content: space-between;
}

.post-count {
  background: #e9ecef;
  color: #666;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 500;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.logo-wp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.logo-img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  width: 55px;
  height: 55px;
  border-radius: 9999px;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.author-role {
  font-size: 12px;
  color: #666;
}

.menu-footer {
  padding: 20px;
  border-top: 1px solid #e5e5e5;
  background: #f8f9fa;
  text-align: center;
}

.menu-footer p {
  font-size: 11px;
  color: #666;
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #e9ecef;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  color: #666;
}

.social-link:hover {
  background: #007bff;
  color: #fff;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.menu-overlay.active-menu {
  opacity: 1;
  visibility: visible;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.news-grid-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Artigo Principal */
.featured-article {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.featured-article-category {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 30px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.featured-article:hover,
.featured-article-category:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.featured-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.category-tag {
  background: #007bff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.category-tag.small {
  padding: 4px 8px;
  font-size: 10px;
}

.featured-content {
  padding: 30px;
}

.featured-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.featured-summary {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Seção de Posts Secundários */
.secondary-posts {
  margin-bottom: 30px;
}

.secondary-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.secondary-post-full {
  grid-column: 1 / -1;
}

.secondary-post {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.2s ease;
}

.secondary-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

.secondary-post-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.secondary-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondary-post-content {
  padding: 20px;
}

.secondary-post-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.secondary-post-summary {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Meta Informações */
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #888;
}

.author-info-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.author-photo.small {
  width: 24px;
  height: 24px;
}

.author-avatar.small {
  width: 24px;
  height: 24px;
  font-size: 10px;
}

.author-avatar.medium {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.publish-date {
  font-size: 12px;
  color: #999;
}

/* Títulos de Seção */
.section-title-main {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  border-bottom: 3px solid #007bff;
  padding-bottom: 10px;
}

.section-title-sidebar {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

/* Artigos Recentes */
.recent-articles {
  margin-top: 30px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.article-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

.article-image {
  position: relative;
  height: 183px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 20px;
}

.article-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.article-summary {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Artigos em Alta */
.trending-articles {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trending-list {
  display: flex;
  flex-direction: column;
}

.trending-item:hover {
  background: #f8fafc;
  text-decoration: none;
  color: inherit;
}

.trending-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.trending-item:last-child {
  border-bottom: none;
}

.trending-number {
  background: #007bff;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.trending-content {
  flex: 1;
}

.trending-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.trending-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #999;
}

/* Trending Mobile Section - Oculta no desktop */
.trending-mobile-section {
  display: none;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.trending-mobile-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.trending-mobile-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 25px 25px 0;
  margin-bottom: 20px;
}

.trending-tabs {
  display: flex;
  flex-direction: column;
  padding: 0 25px;
  gap: 8px;
  margin-bottom: 20px;
}

.trending-tab {
  background: #f8f9fa;
  color: #666;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}

.trending-tab.active {
  background: #007bff;
  color: #fff;
}

.trending-tab:hover:not(.active) {
  background: #e9ecef;
  color: #333;
}

.trending-content-mobile {
  position: relative;
}

.trending-tab-content {
  display: none;
  padding: 0 25px 25px;
}

.trending-tab-content.active {
  display: block;
}

.trending-list-mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trending-item-mobile {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
}

.trending-item-mobile:last-child {
  border-bottom: none;
}

.trending-item-mobile:hover {
  background: #f8fafc;
  text-decoration: none;
  color: inherit;
}

.trending-number-mobile {
  background: #007bff;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.trending-content-mobile-item {
  flex: 1;
}

.trending-title-mobile {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.trending-meta-mobile {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
}

.authors-section {
  background: #f8f9fa;
  padding: 40px 0;
  margin: 40px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.authors-carousel {
  display: flex;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.author-card-link {
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.author-card-link:hover {
  transform: translateY(-2px);
}

.author-card-link:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
  border-radius: 8px;
}

.author-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  height: 100%;
  transition: box-shadow 0.2s ease;
}

.author-card-link:hover .author-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.author-photo-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-avatar-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.author-details {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.author-name-large {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.author-card-link:hover .author-name-large {
  color: #007bff;
}

.author-latest {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Seções de Categoria */
.category-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #007bff;
}

.category-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

.view-all {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.view-all:hover {
  color: #0056b3;
}

/* Artigo Principal da Categoria */
.category-featured {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.category-featured-image {
  height: 300px;
  overflow: hidden;
}

.category-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-featured-content {
  padding: 25px;
}

.category-featured-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.category-featured-summary {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Outros Artigos da Categoria */
.category-articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.category-article-item {
  display: flex;
  gap: 15px;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-article-image {
  width: 150px;
  height: 100px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.category-article-content {
  flex: 1;
}

.category-article-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.category-article-summary {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Destaque da Categoria na Sidebar */
.category-highlight {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.category-highlight-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-highlight-content {
  padding: 20px;
}

.category-highlight-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.category-highlight-summary {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Artigos da Sidebar da Categoria */
.category-sidebar-articles {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-sidebar-item {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.category-sidebar-item:last-child {
  border-bottom: none;
}

.category-sidebar-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.category-sidebar-date {
  font-size: 11px;
  color: #999;
}

/* Rodapé */
.footer {
  background: #1a1a1a;
  color: #fff;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.footer-section:first-child {
  flex: 1.5;
  /* Dá mais espaço para a primeira seção com título e descrição */
}

.footer-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #007bff;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #007bff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 12px;
  color: #999;
  margin: 0;
}

@media (max-width: 768px) {
  .nav-menu {
    padding: 16px 24px;
    display: flex;
    width: 100%;
    justify-content: right;
    align-items: center;
    background: #111111;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
    position: relative;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px 20px;
  }

  .footer-section:first-child {
    flex: 1;
  }

  .news-grid-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .secondary-posts-grid {
    grid-template-columns: 1fr;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .category-article-item {
    flex-direction: column;
  }

  .category-article-image {
    width: 100%;
    height: 200px;
  }



  .authors-carousel {
    flex-direction: column;
    gap: 15px;
  }

  .author-card-link {
    min-width: auto;
    width: 100%;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 15px;
  }

  .author-photo-large,
  .author-avatar-large {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
  }

  .author-details {
    width: 100%;
    text-align: center;
  }

  .author-name-large {
    white-space: normal;
    margin-bottom: 8px;
    font-size: 15px;
  }

  .author-latest {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }

  /* Mostrar trending mobile apenas em mobile */
  .trending-mobile-section {
    display: block;
  }

  /* Ocultar trending das sidebars em mobile */
  .trending-articles,
  .category-sidebar-articles {
    display: none;
  }

  .trending-mobile-title {
    font-size: 20px;
    padding: 20px 20px 0;
  }

  .trending-tabs {
    padding: 0 20px;
    gap: 6px;
  }

  .trending-tab {
    padding: 10px 14px;
    font-size: 13px;
  }

  .trending-tab-content {
    padding: 0 20px 20px;
  }

  .trending-number-mobile {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .trending-title-mobile {
    font-size: 14px;
  }

  .trending-meta-mobile {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  h1 {
    display: none;
  }

  .footer-content {
    padding: 30px 15px 15px;
    gap: 25px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-description {
    font-size: 13px;
  }

  .footer-section-title {
    font-size: 15px;
  }

  .footer-link {
    font-size: 13px;
  }

  .side-menu {
    width: 100vw;
    left: -100vw;
  }

  .form-search {
    display: none;
  }

  .authors-carousel {
    gap: 12px;
  }

  .author-card {
    padding: 15px 12px;
    gap: 10px;
  }

  .author-photo-large,
  .author-avatar-large {
    width: 70px;
    height: 70px;
    font-size: 16px;
  }

  .author-name-large {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .author-latest {
    font-size: 11px;
    line-height: 1.3;
  }

  .trending-mobile-title {
    font-size: 18px;
    padding: 15px 15px 0;
  }

  .trending-tabs {
    padding: 0 15px;
    gap: 5px;
  }

  .trending-tab {
    padding: 8px 12px;
    font-size: 12px;
  }

  .trending-tab-content {
    padding: 0 15px 15px;
  }
}

@media (max-width: 360px) {
  .trending-tabs {
    padding: 0 10px;
    gap: 4px;
  }

  .trending-tab {
    padding: 5px 8px;
    font-size: 11px;
    border-radius: 12px;
  }

  .trending-mobile-title {
    font-size: 16px;
    padding: 12px 10px 0;
  }

  .trending-tab-content {
    padding: 0 10px 12px;
  }
}

@media (hover: none) {
  .author-card-link:active {
    transform: scale(0.98);
  }

  .author-card-link:active .author-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }
}

.authors-list .menu-link {
  padding: 16px 20px;
}

.author-link {
  align-items: center;
  gap: 12px;
}

.author-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.entry-social{
	display: none;
}

.section-comments{
	display: none !important;
}

#modal-notificacao-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 999;
}

#modal-notificacao {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	width: 90%;
	max-width: 700px;
	z-index: 1000;
	overflow: hidden;
}

.modal-conteudo {
	padding: 25px;
	text-align: center;
}

.modal-conteudo h2 {
	color: #ED1C24;
	margin-top: 0;
	font-size: 24px;
}

.modal-conteudo p {
	color: #333;
	margin-bottom: 25px;
	line-height: 1.5;
}

.botoes {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.botoes button {
	padding: 12px 20px;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s ease;
}

#btn-sim {
	background-color: #00A650;
	color: white;
}

#btn-sim:hover {
	background-color: #008c42;
}

#btn-nao {
	background-color: #ED1C24;
	color: white;
}

#btn-nao:hover {
	background-color: #d01820;
}

@media (min-width: 768px) {
	.botoes {
		flex-direction: row;
		justify-content: center;
	}

	.botoes button {
		min-width: 180px;
	}
}


.modal-conteudo::before {
	content: '';
	display: block;
	height: 5px;
	background: linear-gradient(to right, #ED1C24 50%, white 50%);
	margin-bottom: 20px;
	border-radius: 2px;
}

#modal-notificacao,
#modal-notificacao-overlay {
  display: none;
}

