/*
Theme Name: AulaCreactiva Theme
Version: 1.1.5
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {

    --primary: #6D28D9;
    --primary-dark: #5B21B6;
    --primary-dark-rgb: 91, 33, 182;
    --primary-light: rgba(109, 40, 217, 0.1);

}
.bg-primary {
    background-color: var(--primary) !important;
}
.boder-primary {
    border-color: var(--primary) !important;
}
body {
    /* background-color: rgb(248, 249, 250) !important; */
    background-color:  rgba(109, 40, 217, 0.08) !important;
    padding-top: 70px;
}
body, div, p, td, th, select, input, label, textarea, button, form, pre {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
pre {
    font-family: "Inter", sans-serif !important;
}
.btn-primary {

    background: var(--primary) !important;
    border-color: var(--primary) !important;

}

.btn-primary:hover {

    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;

}

.navbar {

    backdrop-filter: blur(10px);
}

.dropdown-menu {

    border-radius: 20px;
}

.nav-link {

    font-weight: 500;
}

/* Efecto de subrayado para los enlaces del navbar */
.navbar-nav .nav-link {
    position: relative;
    color: #333; /* Ajusta según el color actual de tu texto */
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}
/* Botón de la lupa en el navbar */
.btn-search-trigger {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-search-trigger:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

/* Estilos dentro del Modal de búsqueda */
.custom-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(109, 40, 217, 0.25);
}

.custom-search-submit {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 1.5rem;
    transition: background-color 0.2s ease;
}

.custom-search-submit:hover {
    background-color: var(--primary-dark);
    color: white;
}
.text-mini {
    font-size: 0.8rem;
}
/*
*
*
*
*
*
* ----------------- Sections Class -----------------
**
*
*
*
*
*
*/
.section-bg-1{
    background-color: rgba(var(--primary-dark-rgb), 0.02);  
}
.section-bg-2{
    background-color: rgba(var(--primary-dark-rgb), 0.06);  
}

/*
*
*
*
*
*
* ----------------- Hero section -----------------
**
*
*
*
*
*
*/
.hero-section {
    padding: 120px 0 100px;
    background: 
        radial-gradient(
            circle at top right,
            rgba(109, 40, 217, 0.12),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #f8fafc
        );
    position: relative;
    overflow: hidden;
}

/* Badge */
.hero-badge {
    animation: fadeInDown 0.8s ease;
}

.badge-custom {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(109, 40, 217, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(109, 40, 217, 0.2);
}

/* Título */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a202c;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .text-primary {
    color: var(--primary);
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.25rem;
    color: #718096;
    line-height: 1.6;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Botones */
.hero-cta {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.3);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Stats */
.hero-stats {
    animation: fadeInUp 0.8s ease 0.8s both;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
}


/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-search-card {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-search-card {
        padding: 30px 20px;
    }
}
/* ========================================
   HERO IMAGE
======================================== */

.hero-image-wrapper{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    animation: fadeInRight 1s ease .5s both;
}

/* Glow principal */
.hero-image-wrapper::before{
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(109,40,217,.18) 0%,
            rgba(109,40,217,.08) 35%,
            transparent 70%
        );
    filter: blur(40px);
    z-index: 0;
}

/* Glow secundario */
.hero-image-wrapper::after{
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    top: 10%;
    right: 5%;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(59,130,246,.15) 0%,
            transparent 70%
        );
    filter: blur(50px);
    z-index: 0;
}

.hero-image{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    height: auto;
    object-fit: contain;
    animation: floatHero 6s ease-in-out infinite;
}

/* ========================================
   FLOATING CARDS
======================================== */

.floating-card{
    position:absolute;
    z-index:3;
    background:#fff;
    border-radius:14px;
    padding:10px 16px;
    font-size:.85rem;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    width:auto;
    max-width:none;
}

.card-1{
    top:10%;
    left:5%;
}

.card-2{
    top:55%;
    right:0;
}

.card-3{
    bottom:12%;
    left:15%;
}

/* ========================================
   ANIMATIONS
======================================== */

@keyframes floatHero{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-12px);
    }
    100%{
        transform: translateY(0);
    }
}

@keyframes floatCard{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-8px);
    }
    100%{
        transform: translateY(0);
    }
}


/*
*
*
*
*
*
* ----------------- Categoria de iconos -----------------
**
*
*
*
*
*
*/
.card-hover{
    scale: 1.0;
    transition: transform 0.4s ease-in-out; /* Transición suave para el zoom */
}
.card-hover:hover{
   transform: scale(1.08);
}
.category-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

/*
*
*
*
*
*
* ----------------- Tarjetas de iconos -----------------
**
*
*
*
*
*
*/

.post-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: .3s;
    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0,0,0,.1);
}

.post-card-image {
    position: relative;
}

.post-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #6D28D9;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: .8rem;
}

.past-card-body {
    padding: 24px;
}

.post-category {

    color: #64748B;
    font-size: .85rem;
    margin-bottom: 10px;
}

.post-card-title {

    font-size: 1.1rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.post-card-title a {

    color: #0F172A;
    text-decoration: none;
}
.post-card-title a:hover {
    color: var(--primary) !important;
}

.post-card-meta {
    color: #64748B;
    font-size: .85rem;
}


.floating-card{

    position:absolute;
    background:white;
    padding:12px 18px;
    border-radius:16px;
    box-shadow:
    0 15px 30px rgba(0,0,0,.08);
}

.card-1{

    top:20%;
    right:0;
}

.card-2{

    bottom:20%;
    left:0;
}
.subheader-container{

    padding-top:56px;
    padding-bottom:56px;
}

.section-badge{

    display:inline-block;
    background:#FFF;
    color:#6D28D9;
    padding:8px 16px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    font-size:2.5rem;
    font-weight:800;
    margin-bottom:10px;
}

.section-description{

    color:#64748B;
}

/* Tarjeta de categoría basada en imagen.jpg */
.category-card {
    background-color: #ffffff;
    min-height: 190px; /* Ajusta la altura para mantenerlas uniformes */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Efecto hover interactivo */
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    border-color: #dee2e6 !important;
}

/* Forzar que el texto del nombre ocupe el centro y no rompa el diseño */
.category-card .card-title {
    font-size: 0.95rem;
    line-height: 1.3;
    color: #1e293b; /* Un tono oscuro pero moderno */
}

/* Ajustes finos para el icono */
.category-card .icon-wrapper i {
    /* Si usas un color de icono basado en el fondo podrías manejar opacidades */
    opacity: 0.85;
}

/* 
* 
* 
* ------------------------ comunity box ----------------
*
*
*
*
* */
/* Contenedor Principal del Banner */
.cta-box {
    background: #5d42f5; /* El color púrpura vibrante base de tu diseño */
    background: linear-gradient(135deg, #5d42f5 0%, #4a32d4 100%); /* Sutil degradado moderno */
}

.opacity-85 {
    opacity: 0.85;
}

/* --- EFECTO COLLAGE DE AVATARES --- */
.avatar-group {
    width: 200px;
    height: 140px;
}

.avatar-item {
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 18px; /* Bordes suavizados identicos a la captura */
    border: 3px solid #ffffff;
    overflow: hidden;
    background-color: #eee;
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Coordenadas para cruzar las imágenes de forma orgánica */
.avatar-item.item-1 { top: 0; left: 10px; z-index: 2; }
.avatar-item.item-2 { top: 5px; left: 95px; z-index: 1; }
.avatar-item.item-3 { top: 65px; left: 30px; z-index: 4; }
.avatar-item.item-4 { top: 60px; left: 115px; z-index: 3; }

/* --- BOTONERA PERSONALIZADA --- */

/* Botón WhatsApp */
.btn-whatsapp {
    background-color: #c7ecc7 !important; /* Tono verde pastel menta */
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-size: 0.9rem;
}
.btn-whatsapp:hover {
    background-color: #b3e2b3 !important;
    transform: translateY(-2px);
}

/* Botones Translúcidos (Telegram y Facebook) */
.btn-translucido {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-size: 0.9rem;
}
.btn-translucido:hover {
    background-color: rgba(255, 255, 255, 0.22) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Botón de Suscripción al Boletín */
.btn-light-solid {
    background-color: #ffffff !important;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.btn-light-solid:hover {
    background-color: #f1f5f9 !important;
    transform: translateY(-2px);
}

/* Ajuste fino para celulares: Botones al 100% si el espacio es muy reducido */
@media (max-width: 576px) {
    .btn-whatsapp, .btn-translucido, .btn-light-solid {
        width: 100%;
    }
}
/* 
*
*
*  --------------- FOOTER ---------------
*
*
*
*
*/
/* Paleta de color oscura para el fondo del footer */
.bg-dark-footer {
    background-color: #111827; /* Azul/gris oscuro profundo */
}

/* Tamaño de fuente auxiliar para los enlaces legales */
.fs-7 {
    font-size: 0.82rem;
}

/* Botones de Redes Sociales */
.social-btn {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
    transition: transform 0.2s ease, opacity 0.15s ease;
}
.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* --- ESTILADO DE LOS WIDGETS NATIVOS DE WORDPRESS --- */
/* Limpia las viñetas y espaciados por defecto que WordPress añade a los menús del footer */
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 0.6rem;
}

.footer-widget ul li a {
    color: #9ca3af; /* Gris claro suave */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s ease, padding-left 0.15s ease;
}

/* Efecto sutil al pasar el cursor sobre los enlaces */
.footer-widget ul li a:hover,
.hover-white:hover {
    color: #ffffff !important;
    padding-left: 2px;
}

.footer-widget {
    text-align: right;
}

footer * h3.wp-block-heading {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* --- ADAPTACIÓN ESTÉTICA PARA EL FORMULARIO DE SUSCRIPCIÓN --- */
/* Esto forzará que cualquier formulario que arrastres al Widget 4 (ej. Mailchimp, Fluent Forms, HTML) tome el look de la foto */
.footer-widget input[type="email"],
.footer-widget input[type="text"] {
    width: 100%;
    padding: 11px 16px;
    border-radius: 12px;
    border: 1px solid #374151;
    background-color: #ffffff;
    color: #111827;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-widget input[type="submit"],
.footer-widget button {
    width: 100%;
    padding: 11px 16px;
    border-radius: 12px;
    border: none;
    background: #5d42f5; /* Botón púrpura de AulaCreactiva */
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.footer-widget input[type="submit"]:hover,
.footer-widget button:hover {
    background-color: #4a32d4;
}

/* 
*
*
*
*
*   single 
*
*
*
*
/*

/* Variables auxiliares de tipografía */
.fs-8 { font-size: 0.76rem; }
.text-purple { color: #7c3aed; }

/* Pestañas personalizadas tipo AulaCreactiva */
.custom-tabs .nav-link {
    border: none;
    color: #64748b;
    background-color: transparent !important;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
}
.custom-tabs .nav-link.active {
    color: #5d42f5 !important;
    border-bottom: 2px solid #5d42f5 !important;
    font-weight: 600 !important;
}

/* Tabla informativa lateral */
.custom-table-info tr {
    border-bottom: 1px dashed #e2e8f0;
}
.custom-table-info tr:last-child {
    border-bottom: none;
}
.custom-table-info td {
    padding: 0.75rem 0;
}

/* Efectos hover globales */
.hover-primary:hover {
    color: #5d42f5 !important;
}
.related-item a:hover {
    color: #5d42f5 !important;
}

/* Sidebar fijo al hacer scroll */
@media (min-width: 992px) {
    .sticky-sidebar {
        position: sticky;
        top: 6rem;
    }
}

/* ------------ categorias ------------- */
/* Tarjetas del Directorio de Categorías */
.category-directory-card {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-directory-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06) !important;
}

/* Ajustes para forzar tamaño de iconos de Bootstrap o FontAwesome en la caja */
.icon-box-wrapper i {
    font-size: 1.6rem;
}

/* Animación sutil de la flecha del enlace "Explorar ->" */
.hover-arrow i {
    transition: transform 0.2s ease;
}

.hover-arrow:hover i {
    transform: translateX(4px);
}

/* Clases de utilidad para centrar y estructurar anchos de texto máximos */
.max-w-md {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.opacity-90 {
    opacity: 0.90;
}
.category-hero-icon {
    font-size: 4rem !important;
}
.category-hero-backbtn {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 16px !important;
}
.category-hero-backbtn:hover{
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
}

/* ------------ ultimos post **************** /

/* Sección de Publicaciones Recientes */
.recent-posts-section {
    background-color: #f8f9fa;
}

.post-card-grid {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card-grid:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.post-card-grid-thumbnail img {
    width: 140px;
    height: 95px;
    object-fit: cover;
}

.post-card-grid-meta a:hover {
    color: #0d6efd !important; /* Cambia al color primario de tu tema */
}

.post-card-grid-title {
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 600;
}

.-title a:hover {
    color: #0d6efd !important;
}

.post-card-grid-categories .badge {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .post-card-grid-post-thumbnail img {
        width: 120px;
        height: 80px;
    }
    
    .post-card-grid-post-title {
        font-size: 0.9rem;
    }
}
/* =========================================================
*      POST -> POST
/ ======================================================== */
.aulacreactiva-post .post-title{
    letter-spacing: -1px;
    font-weight: 900 !important;
}
.aulacreactiva-post h1,
.aulacreactiva-post h2,
.aulacreactiva-post h3,
.aulacreactiva-post h4,
.aulacreactiva-post h5,
.aulacreactiva-post h6 {
    padding-top: 24px;
    padding-bottom: 8px;
} 
.aulacreactiva-post .post-content h1 {
    font-size: 1.8rem;
    font-weight: 700 !important;
}
.aulacreactiva-post .post-content h2 {
    font-size: 1.6rem;
    font-weight: 700 !important;
}
.aulacreactiva-post .post-content h3 {
    font-size: 1.4rem;
    font-weight: 700 !important;
}
.aulacreactiva-post .post-content h4 {
    font-size: 1.2rem;
    font-weight: 700 !important;
}
.aulacreactiva-post .post-content a {
    text-decoration: none;
}
.aulacreactiva-post .post-content a:hover {
    text-decoration: underline;
}

/* =========================================================
*      NAVBAR -> BOTÓN BUSCAR Y MODAL DE BUSQUEDA
/ ======================================================== */

/* 1. Corrección del espacio en blanco (Efecto "Stretch" perfecto) */
@media (min-width: 768px) {
    .ratio-search-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    /* Forzamos a la columna contenedora a tener la altura de su hermana de texto */
    .col-md-4.image-container-wrapper {
        position: relative;
        align-self: stretch;
    }
}

/* 2. Configuración para el Efecto Zoom */
.ratio-search-image {
    overflow: hidden; /* Oculta el desborde de la imagen al agrandarse */
    display: block;
}

.ratio-search-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta y estira la imagen sin deformarla */
    transition: transform 0.4s ease-in-out; /* Transición suave para el zoom */
}

/* =========================================================
*      HERO CATETORIAS -> SUBCATEGORIAS
/ ======================================================== */
.subcategories-list {
    list-style-type: none;
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.subcategories-list li {
    display: inline-block;
    margin-right: 8px;
}
.subcategories-list li a {
    text-decoration: none;
    display: block;
    background-color: white;
    padding: 8px 16px;
    border-radius: 16px;
    color: var(--primary);
    font-size: 0.9rem;
}
.subcategories-list li a:hover{
    scale: 1.1;
    -webkit-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.5); 
    box-shadow: 0px 2px 16px 0px rgba(0,0,0,0.6);
}

/* =========================================================
*      ADS CONTAINNER 
/ ======================================================== */

.ads-container {
    display: block;
}
.ads-container * img {
    border-radius: 8px;
}
.ads-container * p{
    padding: 0px;
    margin: 0px;
}
/* =========================================================
*      CORREGIR MENU DE WORDPRESS
/ ======================================================== */
/* Si el usuario inició sesión, empuja el navbar fijo hacia abajo */
body.logged-in .navbar.fixed-top {
    top: 32px;
}

/* Ajuste para pantallas móviles (la barra de WordPress mide 46px o se vuelve relativa) */
@media screen and (max-width: 782px) {
    body.logged-in .navbar.fixed-top {
        top: 46px;
    }
}
/* =========================================================
*      CODE / PRE
/ ======================================================== */
.wp-block-code {
    background-color: rgba(var(--primary-dark-rgb), 0.2) !important;
    border-radius: 16px;
    padding: 24px;
    max-height: 350px;
    overflow-x: hidden;
}