/*
Theme Name: Tema do Zé
Author: Zé
Version: 1.0
Description: Tema próprio feito pra usar com Elementor.
*/

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    display: block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden ;
    margin: 0px;
}

.site-itens{
  display: flex;
  flex-wrap: nowrap;
  width: 80vw;
  justify-content: left;
}
h1.site-title {
    margin: 0px;
}
.site-title img {
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.topbar {
  width: 100%;
  background-color: #0045a0;
  color: white;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  height: 60px; /* define uma altura fixa pra barra */
  position: fixed;
  z-index: 999999;
}
.topbar-right{
  margin-right:10px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
}
.topbar-right{
  justify-content: space-around;
  width: 100px;
}
.nav {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.nav a {
  position: relative;
  color: white;
  text-decoration: none;
  padding: 0 16px;
  display: flex;
  align-items: center;
  height: 100%;
  transition:0.2s;
}

.nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
}

.menu-mobile{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}

.topbar-right a {
  color: white;
  font-size: 1.3em;
  cursor: pointer;
  transition: transform 0.2s;
  margin: 5px;
}

.topbar-right a:hover {
  transform: scale(1.1);
  color: rgb(235, 234, 234);
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    height: auto;
    padding: 16px;
  }
  .topbar-left{
    justify-content: space-between;
    width: 100%;
  }
}
/*
Estrutura de Login
*/
/**
Perfil do tutor
**/

.tutor-wrap.tutor-wrap-parent {
    width: 80vw;
    padding-top: 100px;
}


/* ====== HAMBÚRGUER ====== */
.hamburger {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    display: none;
    color: white;
}

/* ====== MOBILE ====== */
@media (max-width: 820px) {

    /* Mostra o botão */
    .hamburger {
        display: block;
    }
    .topbar {
        position: fixed; /* já está, só reafirma */
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        padding: 15px;
        box-sizing: border-box;
    }
    .menu-mobile {
        position: fixed;
        right: -100%; /* começa totalmente escondido */
        width: 70vw; /* largura do menu aberto (ajusta o quanto quiser) */
        height: 100%; /* altura total menos o topo */
        background: white;
        flex-direction: column;
        align-items: center;
        top: 0;
        margin-top: 80px;
        padding-top: 20px;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
        /* suave como manteiga */
        transition: right 0.4s cubic-bezier(.25,.8,.25,1);

        display: flex;
        z-index: 900000; /* sempre flex, o que muda é o right */
    }

    /* Quando o menu abre */
    .menu-mobile.open {
        margin-top: 80px;
        position: fixed;
        right: 0;
        top: 0;
        
    }

    /* Nav vertical */
    .nav {
        flex-direction: column;
        width: 100%;
        order: 2;
    }

    .nav a {
        color: #0045a0;
        padding: 12px 0;
        height: 50px;
        font-size: 18px;
        padding: 0 20px;
        border-bottom: 1px solid #eee;
    }

    /* Ícones */
    .topbar-right {
        display: flex;
        justify-content: center;
        flex-direction: row;
        gap: 20px;
        margin-top: 15px;
    }

    .topbar-right a {
        color: #0045a0;
        font-size: 24px;
    }

    .site-itens{
      margin: 0 auto;
    }
}

/* ====== ESTILOS PARA TEMPLATE BLOG ====== */

.blog-main {
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    padding: 40px 20px;
    background: white;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 2.5em;
    color: #0045a0;
    margin-bottom: 15px;
}

.page-description {
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filtros de Posts */
.post-filters {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: end;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.filter-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 0.9rem;
}

.clear-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #dc3545;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.clear-filters:hover {
    background: #c82333;
    color: white;
}

/* Informações do Filtro Atual */
.current-filter-info {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    border-left: 4px solid #2196f3;
}

.current-filter-info p {
    margin: 0;
    color: #1976d2;
    font-size: 0.95rem;
}

/* Contador de Posts */
.posts-counter {
    background: #f1f8e9;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    border-left: 4px solid #4caf50;
}

.posts-counter p {
    margin: 0;
    color: #388e3c;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.no-posts h2 {
    color: #0045a0;
    margin-bottom: 15px;
}

.no-posts p {
    color: #666;
    font-size: 1.1em;
}

.post-comments {
    font-size: 0.85em;
}

.post-comments a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.post-comments a:hover {
    color: #0045a0;
}

.post-comments i {
    color: #0045a0;
}


/* ====== Footer ====== */
.footer{
    width: 100%;
    background-color: #0045a0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto; /* define uma altura fixa pra barra */
    margin-top: 60px;
}

.footer h3{
  font-size: 1.5em;
}


.footer p{
  background-color: #023577;
  width: 100%;
  text-align: center;
  padding: 20px;
}
.footer-content{
  display: grid;
  grid-template-columns: 2fr 1fr;
  width: 80vw;
  margin: 0 auto;
}

.logo img {
  max-width: 200px;
  height: auto;
  display: block;
}

.footer-right{
  padding-top: 30px;
}

.footer-links{
  width: 250px;
  padding-top: 30px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.footer-links ul li{
  list-style: none;
  width: 130px;
  border-bottom: 1px solid #ffc401;
}

.footer-links ul li a{
  display: flex;
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 0 10px 10px;
  width: 100%;
}

.footer-links ul li a:hover{
  color: rgb(235, 234, 234);
}

.footer-left{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 40%;
  padding: 20px 0 60px 20px;
}

.footer-left p{
  background-color: #0045a0;
  text-align: left;
  padding: 0;
}

@media (max-width: 768px) {

  .footer-content{
    grid-template-columns: 1fr;
    padding: 60px 0;
  }
  .footer-left{
    width: 100%;
    padding: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer-left p{
    text-align: center;
  }
  img.custom-logo {
    margin: 0 auto;
  }
}

/* ====== ESTILOS PARA TEMPLATES DE POSTS ====== */

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 100px; /* Espaço para o header fixo */
}

/* Template Single Post */
.single-post-main {
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.single-post-article {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

/* Header do Post */
.post-header {
    padding: 40px 40px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.post-title {
    font-size: 2.5em;
    color: #0045a0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.post-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9em;
    color: #666;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta i {
    color: #0045a0;
}

.post-meta a {
    color: #666;
    text-decoration: none;
}

.post-meta a:hover {
    color: #0045a0;
}

/* Conteúdo do Post */
.post-content {
    padding: 40px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
}

.post-content h2, .post-content h3, .post-content h4 {
    color: #0045a0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Navegação entre posts */
.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    border-top: 1px solid #eee;
    background-color: #f8f9fa;
}

.post-navigation a {
    color: #0045a0;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.post-navigation a:hover {
    background-color: #e3f2fd;
}

.nav-next {
    margin-left: auto;
}

/* Template Archive */
.archive-main {
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.archive-header {
    text-align: center;
    padding: 40px 20px;
    background: white;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.archive-title {
    font-size: 2.5em;
    color: #0045a0;
    margin-bottom: 15px;
}

.archive-description {
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Posts */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.post-card-thumbnail {
    height: 200px;
    overflow: hidden;
}

.post-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-card:hover .post-card-thumbnail img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 25px;
}

.post-card-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-card-title a {
    color: #0045a0;
    text-decoration: none;
    transition: color 0.3s;
}

.post-card-title a:hover {
    color: #003380;
}

.post-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85em;
    color: #666;
    margin-bottom: 15px;
}

.post-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-card-meta i {
    color: #0045a0;
}

.post-card-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.read-more {
    color: #0045a0;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
    color: #003380;
}

.post-card-category {
    font-size: 0.85em;
}

.post-card-category a {
    color: #666;
    text-decoration: none;
    background-color: #f0f0f0;
    padding: 3px 8px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.post-card-category a:hover {
    background-color: #e0e0e0;
}

/* Paginação */
.pagination {
    text-align: center;
    margin: 40px 0;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: white;
    color: #0045a0;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover, .pagination .current {
    background-color: #0045a0;
    color: white;
}

.pagination i {
    font-size: 0.9em;
}

/* Estilos para Template de Lista de Posts */
.blog-list-template .posts-list {
    margin: 2rem 0;
}

.post-list-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.post-list-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.post-list-header {
    margin-bottom: 1rem;
}

.post-list-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    line-height: 1.4;
}

.post-list-title a {
    color: var(--primary-color, #2c3e50);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-list-title a:hover {
    color: var(--secondary-color, #3498db);
}

.post-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.post-list-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-list-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.post-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color, #2c3e50);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--secondary-color, #3498db);
}

.post-list-thumbnail {
    flex-shrink: 0;
}

.post-list-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        padding-top: 100px;
    }
    
    .post-header {
        padding: 30px 20px 15px;
    }
    
    .post-title {
        font-size: 2em;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-content {
        padding: 30px 20px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .nav-next {
        margin-left: 0;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .archive-title {
        font-size: 2em;
    }
    
    .post-card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    /* Filtros Responsivos */
    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .clear-filters {
        text-align: center;
        justify-content: center;
    }
    
    .current-filter-info p,
    .posts-counter p {
        font-size: 0.85rem;
    }
    
    /* Lista Responsiva */
    .post-list-item {
        padding: 1rem;
    }
    
    .post-list-title {
        font-size: 1.1rem;
    }
    
    .post-list-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .post-list-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-list-thumbnail img {
        width: 60px;
        height: 60px;
    }
}

/* Estilos para Página 404 */
.error-404-page {
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-404-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-404-header {
    margin-bottom: 3rem;
}

.error-code {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.error-number {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color, #2c3e50);
    opacity: 0.1;
    line-height: 1;
}

.error-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--secondary-color, #3498db);
}

.error-title {
    font-size: 2.5rem;
    color: var(--primary-color, #2c3e50);
    margin-bottom: 1rem;
    font-weight: 600;
}

.error-message {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color, #2c3e50);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color, #3498db);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color, #2c3e50);
    border: 2px solid var(--primary-color, #2c3e50);
}

.btn-outline:hover {
    background: var(--primary-color, #2c3e50);
    color: white;
    transform: translateY(-2px);
}

.error-search-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.error-search-section h3 {
    color: var(--primary-color, #2c3e50);
    margin-bottom: 1rem;
}

.search-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.suggested-content {
    margin-bottom: 3rem;
}

.suggested-section {
    margin-bottom: 2.5rem;
}

.suggested-section h3 {
    color: var(--primary-color, #2c3e50);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggested-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.suggested-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.suggested-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.suggested-thumbnail {
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.suggested-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.suggested-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.suggested-content h4 a {
    color: var(--primary-color, #2c3e50);
    text-decoration: none;
}

.suggested-content h4 a:hover {
    color: var(--secondary-color, #3498db);
}

.suggested-date {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.suggested-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: #e3f2fd;
    color: #1976d2;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: #1976d2;
    color: white;
    transform: translateY(-1px);
}

.category-count {
    font-size: 0.8rem;
    opacity: 0.8;
}

.suggested-pages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.page-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    color: var(--primary-color, #2c3e50);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-color, #2c3e50);
    color: white;
    transform: translateY(-2px);
}

.error-contact-section {
    background: linear-gradient(135deg, var(--primary-color, #2c3e50), var(--secondary-color, #3498db));
    color: white;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.error-contact-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.error-contact-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-actions .btn-outline {
    border-color: white;
    color: white;
}

.contact-actions .btn-outline:hover {
    background: white;
    color: var(--primary-color, #2c3e50);
}

/* Responsividade da Página 404 */
@media (max-width: 768px) {
    .error-404-page {
        padding: 2rem 0;
    }
    
    .error-number {
        font-size: 5rem;
    }
    
    .error-icon {
        font-size: 2rem;
    }
    
    .error-title {
        font-size: 1.8rem;
    }
    
    .error-message {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .suggested-posts {
        grid-template-columns: 1fr;
    }
    
    .suggested-categories {
        justify-content: center;
    }
    
    .suggested-pages {
        grid-template-columns: 1fr;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-search-section {
        padding: 1.5rem;
    }
    
    .error-contact-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 4rem;
    }
    
    .error-icon {
        font-size: 1.5rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .suggested-section h3 {
        font-size: 1.1rem;
    }
    
    .category-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}