/* Styles des widgets Junkiro */

/* Styles de base pour la barre latérale */
.single-article-sidebar,
.widget-area {
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  border-radius: 8px;
  box-shadow: none;
  color: #e0e0e0;
  position: sticky;
  top: 100px;
}

/* Style spécifique pour les widgets sur la page article */
.single-article .widget {
  background: #2c2c2c;
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: none;
}

.widget {
  background: #232323;
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: none;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  padding: 0;
  border: none;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

/* Version mobile */
@media (max-width: 900px) {
  .single-article-sidebar,
  .widget-area {
    width: 100% !important;
    margin: 1.5rem 0 !important;
    padding: 1rem !important;
    position: relative;
    top: 0;
    background: #2c2c2c;
    box-shadow: none;
  }

  .single-article .widget {
    background: transparent !important;
    box-shadow: none !important;
    padding: 1.2rem !important;
    margin: 0 0 1rem 0 !important;
    width: 100% !important;
  }

  .widget {
    background: transparent !important;
    box-shadow: none !important;
    padding: 1.2rem !important;
    margin: 0 0 1rem 0 !important;
    width: 100% !important;
  }

  .widget:last-child {
    margin-bottom: 0 !important;
  }

  .widget-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.8rem !important;
  }
}

/* Widget de recherche personnalisé */
.junkiro-search-wrapper {
    background: transparent;
    border-radius: 16px;
    padding: 0 !important;
    box-shadow: none;
    margin: 0 !important;
    border: none;
    transition: transform 0.3s ease;
}

.junkiro-search-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.junkiro-search-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
}

.junkiro-search-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

/* UNIQUEMENT la barre de saisie modifiée */
.junkiro-search-input,
.junkiro-search-form .junkiro-search-input,
.widget .junkiro-search-input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff !important;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
}

.junkiro-search-input:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.junkiro-search-input:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 2px #ffffff;
    transform: translateY(-1px);
}

.junkiro-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* Le reste du code reste inchangé */
.junkiro-search-button {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8em;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    height: 44px;
}

.junkiro-search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.junkiro-search-button:hover::before {
    transform: translateX(100%);
}

/* Style par défaut */
.junkiro-search-button.button-default {
    background: linear-gradient(145deg, #2c2c2c, #232323);
    color: #fff;
    border-radius: 20px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.junkiro-search-button.button-default:hover {
    background: linear-gradient(145deg, #323232, #282828);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Style pill */
.junkiro-search-button.button-pill {
    background: #fff;
    color: #000;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.junkiro-search-button.button-pill:hover {
    background: #f0f0f0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Style carré */
.junkiro-search-button.button-square {
    background: linear-gradient(145deg, #2c2c2c, #232323);
    color: #fff;
    border-radius: 16px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.junkiro-search-button.button-square:hover {
    background: linear-gradient(145deg, #323232, #282828);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Animation de focus */
.junkiro-search-input:focus + .junkiro-search-button {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .junkiro-search-wrapper {
        padding: 12px;
    }
    
    .junkiro-search-input-wrapper {
        gap: 8px;
    }
    
    .junkiro-search-input,
    .junkiro-search-button {
        width: 100%;
    }
    
    .junkiro-search-button {
        padding: 10px 16px;
    }

    .junkiro-search-input {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

/* Résultats de recherche en temps réel */
.junkiro-search-results {
    position: relative;
    background: transparent;
    border-radius: 12px;
    margin-top: 2px;
    padding: 4px;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    max-height: none;
    overflow: visible;
    opacity: 0;
    transform: translateY(-10px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    height: 0;
    visibility: hidden;
}

.junkiro-search-results.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    height: auto;
    margin-bottom: 4px;
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.junkiro-search-result-item {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 0.5px solid transparent;
    display: flex !important;
    flex-direction: row !important;
    gap: 12px;
    align-items: flex-start !important;
    text-decoration: none;
}

.junkiro-search-result-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.junkiro-search-result-item:last-child {
    margin-bottom: 0;
}

.junkiro-search-result-thumbnail {
    width: 60px;
    height: 85px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    order: 1;
}

.junkiro-search-result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.junkiro-search-result-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    order: 2;
}

.junkiro-search-result-title {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
}

.junkiro-search-result-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.junkiro-search-no-results {
    padding: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
}

.junkiro-search-wrapper .widget-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding: 0;
    border: none;
    line-height: 1.4;
    letter-spacing: -0.02em;
    position: relative;
}

.junkiro-search-wrapper .widget-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.widget .widget-title {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* Widget Articles Récents avec Onglets */
.junkiro-posts-tabs-wrapper {
    background: var(--wp--preset--color--background);
    border-radius: 8px;
    overflow: hidden;
}

.junkiro-tabs-nav {
    display: flex;
    gap: 1px;
    background: var(--wp--preset--color--contrast-2);
    padding: 1px;
    border-radius: 8px 8px 0 0;
}

.junkiro-tab-button {
    flex: 1;
    padding: 0.75rem;
    border: none;
    background: var(--wp--preset--color--background);
    color: var(--wp--preset--color--contrast);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.junkiro-tab-button:first-child {
    border-radius: 8px 0 0 0;
}

.junkiro-tab-button:last-child {
    border-radius: 0 8px 0 0;
}

.junkiro-tab-button:hover {
    background: var(--wp--preset--color--contrast-3);
    color: var(--wp--preset--color--primary);
}

.junkiro-tab-button.active {
    background: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--background);
}

.junkiro-tabs-content {
    padding: 1rem;
}

.junkiro-tab-pane {
    display: none;
}

.junkiro-tab-pane.active {
    display: block;
}

.junkiro-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--wp--preset--color--contrast-2);
}

.junkiro-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.junkiro-post-item:first-child {
    padding-top: 0;
}

.post-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    flex: 1;
    min-width: 0;
}

.post-title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.post-title a {
    color: var(--wp--preset--color--contrast);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    padding-bottom: 2px;
}

.post-title a:hover {
    color: var(--wp--preset--color--primary);
    border-bottom: 1px solid var(--wp--preset--color--primary);
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--wp--preset--color--contrast-3);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-meta i {
    font-size: 0.9rem;
}

/* Utilisation du style commun pour les badges */
.post-meta .meta-stats {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.post-meta .meta-views,
.post-meta .meta-comments {
    display: flex;
    align-items: center;
    gap: 0.3em;
    white-space: nowrap;
    font-size: 0.85rem;
    color: #b0b0b0;
}

.post-meta .meta-views i,
.post-meta .meta-comments i {
    font-size: 1.08em;
    color: #fff !important;
    vertical-align: middle;
}

.post-views i {
    color: var(--wp--preset--color--primary);
}

.no-posts {
    text-align: center;
    color: var(--wp--preset--color--contrast-3);
    padding: 2rem 0;
}

/* Animation des onglets */
.junkiro-tab-pane {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.junkiro-tab-pane.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 480px) {
    .junkiro-tab-button {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .junkiro-tab-button i {
        font-size: 0.9rem;
    }

    .post-thumbnail {
        width: 60px;
        height: 60px;
    }

    .post-title {
        font-size: 0.9rem;
    }

    .post-meta {
        font-size: 0.75rem;
    }
}

/* Effet TV pour les miniatures */
.post-thumbnail.tv-effects {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: radial-gradient(circle at center, #444 0%, #111 100%);
    box-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        inset 0 0 15px rgba(0, 0, 0, 0.8);
}

.post-thumbnail.tv-effects img {
    position: relative;
    animation: flicker 1.5s infinite;
    opacity: 0.9;
    mix-blend-mode: screen;
}

.post-thumbnail.tv-effects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0) 80%,
        rgba(255, 255, 255, 0.1) 100%
    );
    pointer-events: none;
    z-index: 3;
}

.post-thumbnail.tv-effects .scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.04) 2px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 2;
    animation: scroll 5s linear infinite;
}

.post-thumbnail.tv-effects::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    z-index: 3;
}

@keyframes flicker {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.85; }
    55% { opacity: 0.8; }
    60% { opacity: 0.9; }
    65% { opacity: 0.95; }
    70% { opacity: 0.9; }
}

@keyframes scroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

/* Widget Grille de Catégories */
.junkiro-categories-grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns, 3), 1fr);
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    align-items: stretch; /* Force toutes les cartes à avoir la même hauteur */
}

.category-card {
    display: flex;
    flex-direction: column;
    background: #232425;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Force toutes les cartes à avoir la même hauteur */
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.category-card.hidden {
    display: none !important;
}

.category-card.hidden.visible {
    display: flex;
    flex-direction: column;
}

.category-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.category-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-thumbnail img {
    transform: scale(1.1);
}

.category-content {
    padding: 0.5rem 0.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem; /* Espacement légèrement augmenté entre les éléments */
    min-height: 0; /* Permet au contenu de se contracter si nécessaire */
}

.category-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.category-count {
    font-size: 0.85rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: #333;
    border-radius: 4px;
    width: fit-content;
    margin-top: -0.125rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    flex-shrink: 0; /* Empêche le compteur de rétrécir */
}

.category-description {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-description-wrapper {
    position: relative;
    width: 100%;
    max-height: 2.8em;
    overflow: hidden;
}

.category-description-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 2rem;
    height: 1.4em;
    background: linear-gradient(to right, transparent, #232425);
    pointer-events: none;
}

.no-categories {
    text-align: center;
    color: #666666;
    padding: 1.5rem;
    font-style: italic;
    font-size: 0.9375rem;
    background: #f8f8f8;
    border-radius: 12px;
    margin: 0.75rem 0;
}

/* Catégories supplémentaires */
.categories-more {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(var(--grid-columns, 3), 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.categories-more.visible {
    display: grid;
}

.toggle-categories {
    display: block;
    width: 100%;
    margin-top: 0.1rem;
    padding: 0.75rem;
    background: #191a1b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    grid-column: 1 / -1;
}

.toggle-categories:hover {
    background: #232323;
    color: #ffffff;
}

.toggle-categories[data-state="visible"] {
    background: #232323;
    color: #ffffff;
}

.toggle-categories[data-state="visible"]:hover {
    background: #191a1b;
    color: #ffffff;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .junkiro-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.375rem;
    }
    
    .categories-more {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .junkiro-categories-grid {
        grid-template-columns: 1fr;
        gap: 0.375rem;
    }
    
    .categories-more {
        grid-template-columns: 1fr;
    }
}

/* Masquer le bouton sur desktop */
.view-all-categories.mobile-only {
    display: none;
}

/* Gestion de l'affichage mobile */
@media screen and (max-width: 480px) {
    .junkiro-categories-grid {
        grid-template-columns: 1fr;
        gap: 0.375rem;
    }
    
    .category-card.mobile-hidden {
        display: none;
    }
    
    .view-all-categories.mobile-only {
        display: block;
        text-align: center;
        margin-top: 0.75rem;
        padding: 0.75rem;
        background: #f5f5f5;
        color: #333333;
        text-decoration: none;
        border-radius: 6px;
        font-size: 0.875rem;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .view-all-categories.mobile-only:hover {
        background: var(--wp--preset--color--primary);
        color: #ffffff;
    }
}

/* Masquer le bouton sur desktop */
.view-all-categories.mobile-only {
    display: none;
}

/* Gestion des catégories masquées */
.hidden-category {
    display: none;
}

.toggle-categories {
    display: block;
    width: 100%;
    margin-top: 0.1rem;
    padding: 0.75rem;
    background: #191a1b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    grid-column: 1 / -1;
}

.toggle-categories:hover {
    background: #232323;
    color: #ffffff;
}

.toggle-categories[data-state="visible"] {
    background: #232323;
    color: #ffffff;
}

.toggle-categories[data-state="visible"]:hover {
    background: #191a1b;
    color: #ffffff;
}

/* Catégories cachées */
.category-card.hidden {
    display: none;
}

.category-card.hidden.visible {
    display: flex;
}

.toggle-categories {
    display: block;
    width: 100%;
    margin-top: 0.1rem;
    padding: 0.75rem;
    background: #191a1b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .widget {
    background: none !important;
    box-shadow: none !important;
    padding: 0 0rem !important;
    margin: 0 0 2rem 0 !important;
    width: 100% !important;
  }

  .widget-title {
    color: #fff !important;
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
  }
}

.junkiro-total-views {
    margin-top: 1rem;
    padding: 0.5rem;
    background: #232425 !important;
    border-radius: 4px;
    text-align: center;
    font-size: 0.85em;
    font-family: var(--wp--preset--font-family--system-font);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.junkiro-total-views .total-views-text {
    font-weight: 500;
    margin-right: 0.5rem;
    color: #fff !important;
    letter-spacing: -0.01em;
}

.junkiro-total-views .total-views-count {
    font-weight: 600;
    color: #fff !important;
    letter-spacing: -0.01em;
}

/* Masquer les dates des widgets WordPress par défaut quand l'option est activée */
body.hide-widget-dates .widget_recent_entries .post-date,
body.hide-widget-dates .widget_recent_comments .comment-meta-time {
    display: none !important;
}

@media (min-width: 901px) {
  .single-article-content {
    padding: 0 2rem;
  }
} 