/*
Theme Name: CathoVoice
Theme URI: http://cathovoice.com
Author: CathoVoice Team
Description: Template minimaliste pour CathoVoice
Version: 1.0
*/

:root {
    --primary-color: #C80000;
    --secondary-color: #000000;
    --tertiary-color: #FFFFFF;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--tertiary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

article {
    font-family: 'Bitter', serif;
    color: #333;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: var(--primary-color);
}

/* Header Buttons */
.header-buttons {
    margin-left: auto;
    display: flex;
    gap: 1.5rem;
}

.header-buttons .btn {
    padding: 0.2rem 1rem;
    font-size: 0.9rem;
}

/* Styles des boutons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--tertiary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(200, 0, 0, 0.2);
}

/* Styles spécifiques pour les boutons du header */
.header-buttons .btn-primary {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    border: 2px solid var(--primary-color);
}

.header-buttons .btn-primary:hover {
    background-color: #9B0000; /* Version plus foncée de la couleur primaire */
    border-color: #9B0000;
    color: var(--tertiary-color);
    transform: translateY(-2px);
}

.header-buttons .btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.header-buttons .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger-menu {
    position: relative;
    z-index: 1001;
    flex: 0 0 auto;
    margin-left: 2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.hamburger-menu span {
    margin-right: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hamburger-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

/* Changer la couleur des lignes quand le menu est ouvert - pour la visibilité sur fond blanc */
.hamburger-toggle.active .hamburger-line {
    background-color: var(--primary-color);
}

/* Menu Fullscreen */
.menu-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    overflow-y: auto;
}

.menu-fullscreen.active {
    opacity: 1;
    visibility: visible;
}

.menu-fullscreen-inner {
    position: relative;
    min-height: 100vh;
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
}

/* Decorative background shapes */
.menu-decorative-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.menu-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.menu-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    right: -150px;
    animation: menuFloat 8s ease-in-out infinite;
}

.menu-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    bottom: 20%;
    left: -100px;
    animation: menuFloat 6s ease-in-out infinite reverse;
}

.menu-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    top: 60%;
    right: 10%;
    animation: menuFloat 10s ease-in-out infinite;
}

@keyframes menuFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Main content grid */
.menu-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    flex: 1;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Section titles */
.menu-section-title {
    margin-bottom: 2rem;
    position: relative;
}

.menu-section-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.menu-section-accent {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

/* Navigation section */
.menu-navigation-section {
    padding-top: 2rem;
}

.menu-fullscreen .main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-fullscreen .main-navigation ul li {
    margin-bottom: 1.5rem;
    transform: translateX(-20px);
    opacity: 0;
    animation: menuSlideIn 0.6s ease forwards;
}

.menu-fullscreen .main-navigation ul li:nth-child(1) { animation-delay: 0.1s; }
.menu-fullscreen .main-navigation ul li:nth-child(2) { animation-delay: 0.2s; }
.menu-fullscreen .main-navigation ul li:nth-child(3) { animation-delay: 0.3s; }
.menu-fullscreen .main-navigation ul li:nth-child(4) { animation-delay: 0.4s; }
.menu-fullscreen .main-navigation ul li:nth-child(5) { animation-delay: 0.5s; }

@keyframes menuSlideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.menu-fullscreen .main-navigation ul li a {
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Bitter', serif;
}

.menu-fullscreen .main-navigation ul li a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.menu-fullscreen .main-navigation ul li a::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.menu-fullscreen .main-navigation ul li a:hover::before {
    width: 20px;
}

/* Info section */
.menu-info-section {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.menu-brand-info {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-brand-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Bitter', serif;
}

.menu-brand-tagline {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

/* CTA section */
.menu-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.menu-cta-btn:hover::before {
    left: 100%;
}

.menu-cta-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(200, 0, 0, 0.3);
}

.menu-cta-primary:hover {
    background: #b00000;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(200, 0, 0, 0.4);
}

.menu-cta-secondary {
    background: white;
    color: var(--secondary-color);
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.menu-cta-secondary:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-cta-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.menu-cta-btn:hover i {
    transform: scale(1.1);
}

/* Social section */
.menu-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.menu-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 0, 0, 0.3);
}

.menu-social-link i {
    font-size: 1.3rem;
}

/* Footer */
.menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.menu-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.menu-footer-text {
    font-size: 0.9rem;
    color: #666;
}

.menu-footer-links {
    display: flex;
    gap: 2rem;
}

.menu-footer-links a {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-footer-links a:hover {
    color: var(--primary-color);
}

/* Active Hamburger Animation */
.hamburger-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Desktop Navigation */
.site-logo img {
    height: 40px;
    width: auto;
    display: inline-block;
}
.main-navigation ul {
    list-style: none;
    gap: 2rem;
}

.main-navigation ul li a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.main-navigation ul li a:hover {
    color: var(--primary-color);
}

.main-navigation ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navigation ul li a:hover:after {
    width: 100%;
}

/* Article styles */
.article-magazine {
    margin-bottom: 4rem;
    position: relative;
}

/* Barre de progression */
.article-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: var(--primary-color);
    width: 0;
    z-index: 1050;
    transition: width 0.1s ease;
}

/* En-tête de l'article */
.article-hero {
    position: relative;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.title-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.article-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.category-pills {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category-pill {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(200, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
}

.category-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.6s ease;
}

.category-pill:hover {
    background-color: #aa0000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(200, 0, 0, 0.3);
}

.category-pill:hover::before {
    left: 100%;
}

.article-date {
    font-family: 'Bitter', serif;
    font-size: 1rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 1.5rem 0;
    position: relative;
}

.article-date::before,
.article-date::after {
    content: '';
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    flex-grow: 1;
    max-width: 100px;
}

.article-date i, .reading-time i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.article-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

.featured-image-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Corps de l'article */
.article-body-container {
    padding: 2rem 0 4rem;
}

.article-grid {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Boutons de partage verticaux */
.article-share-vertical {
    position: sticky;
    top: 100px;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.share-label {
    transform: rotate(-90deg);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    white-space: nowrap;
    margin-bottom: 1.5rem;
}

.share-divider {
    width: 1px;
    height: 50px;
    background-color: var(--primary-color);
    margin-bottom: 1rem;
}

.share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.share-icon:hover {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    transform: translateY(-2px);
}

.copy-link {
    border: none;
    cursor: pointer;
}

.tooltip {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tooltip:before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-right: 5px solid var(--secondary-color);
    border-bottom: 5px solid transparent;
}

.copy-link:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Contenu de l'article */
.article-content {
    width: 100%;
}

.reading-info {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.reading-time i {
    margin-right: 0.5rem;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.page-template-default .article-text {
    max-width: 800px;
    margin: 0 auto;
}

.article-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    box-shadow: inset 0 -2px 0 rgba(200, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.article-text a:hover {
    color: var(--primary-color);
    box-shadow: inset 0 -2px 0 var(--primary-color);
}

.article-text p {
    margin-bottom: 1.5rem;
}

.article-text blockquote, blockquote {
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555;
}

.article-text h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.article-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
}

.article-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-text figure {
    margin: 2rem 0;
}

.article-text figcaption {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

/* Tags */
.article-tags {
    margin: 3rem 0;
    background: none;
    border-radius: 0;
    padding: 0;
    position: relative;
}

.article-tags .tags-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.article-tags .tags-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
}

.article-tags .tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.article-tags .tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background-color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.article-tags .tag::before {
    content: '#';
    margin-right: 5px;
    color: var(--primary-color);
    font-weight: 700;
}

.article-tags .tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.article-tags .tag:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.article-tags .tag:hover::after {
    transform: scaleX(1);
}

/* Section articles liés */
.related-articles-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title-accent {
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-article {
    background-color: var(--tertiary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-article-image {
    display: block;
    position: relative;
    height: 0;
    padding-bottom: 65%;
    overflow: hidden;
}

.related-article-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-article:hover .related-article-image img {
    transform: scale(1.05);
}

.related-article-content {
    padding: 1.5rem;
}

.related-article-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.related-article-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-article-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-article-title a:hover {
    color: var(--primary-color);
}

.related-article-date {
    font-size: 0.8rem;
    color: #888;
}

/* Style spécial pour le premier article en relation */
.related-article-1 {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.related-article-1 .related-article-image {
    height: 100%;
    padding-bottom: 0;
}

.related-article-1 .related-article-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-article-1:hover .related-article-image img {
    transform: scale(1.05);
}

.related-article-1 .related-article-title {
    font-size: 1.5rem;
}


/* Content */
.site-content {
    padding: 4rem 0;
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.entry-content {
    line-height: 1.8;
}


/* Footer */
.new-footer {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a0000 100%);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section marque */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    transition: transform 0.5s ease-out;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-tagline {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
    background: linear-gradient(to right, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-social a:hover {
    transform: translateY(-7px) scale(1.1);
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.1);
}

/* Page 404 */

/* Styles pour la page 404 */
.error-404 {
    padding: 5rem 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.error-animation {
    position: relative;
    width: 280px;
    height: 280px;
    margin-bottom: 2rem;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 2px 2px 0 #fff, 3px 3px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    font-family: 'Bitter', serif;
    letter-spacing: -2px;
}

.error-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.7;
    animation: twinkle 2s infinite alternate;
}

.star-1 { top: 10%; left: 15%; width: 6px; height: 6px; animation-delay: 0.1s; }
.star-2 { top: 20%; left: 85%; width: 5px; height: 5px; animation-delay: 0.3s; }
.star-3 { top: 40%; left: 70%; width: 7px; height: 7px; animation-delay: 0.5s; }
.star-4 { top: 65%; left: 20%; width: 4px; height: 4px; animation-delay: 0.7s; }
.star-5 { top: 80%; left: 80%; width: 6px; height: 6px; animation-delay: 0.9s; }
.star-6 { top: 30%; left: 30%; width: 5px; height: 5px; animation-delay: 1.1s; }
.star-7 { top: 90%; left: 40%; width: 4px; height: 4px; animation-delay: 1.3s; }
.star-8 { top: 50%; left: 90%; width: 7px; height: 7px; animation-delay: 1.5s; }
.star-9 { top: 25%; left: 55%; width: 5px; height: 5px; animation-delay: 1.7s; }
.star-10 { top: 60%; left: 50%; width: 6px; height: 6px; animation-delay: 1.9s; }
.star-11 { top: 35%; left: 10%; width: 4px; height: 4px; animation-delay: 2.1s; }
.star-12 { top: 70%; left: 65%; width: 5px; height: 5px; animation-delay: 2.3s; }

.cross-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.5;
    filter: blur(5px);
    animation: pulse 3s infinite;
}

.error-description {
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.search-suggestion {
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 500px;
}

.search-suggestion h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #555;
}

.error-search-form {
    width: 100%;
}

.search-form-group {
    position: relative;
    display: flex;
    width: 100%;
}

.search-field {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #eee;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.search-field:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(200, 0, 0, 0.1);
}

/* Styles pour les pages d'archive */
.archive-page {
    padding-bottom: 4rem;
}

.archive-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #990000 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    margin-bottom: 3rem;
}

.archive-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 5rem;
}

.archive-type {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.archive-title {
    color: white;
    position: relative;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 3.5rem;
    font-weight: 800;
}

.archive-description {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: white;
}

.archive-count {
    font-size: 0.9rem;
    color: white;
}


.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.archive-article {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.archive-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-article {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.archive-article-image {
    display: block;
    position: relative;
    height: 0;
    padding-bottom: 65%;
    overflow: hidden;
}

.featured-article .archive-article-image {
    height: 100%;
    padding-bottom: 0;
}

.archive-article-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.archive-article:hover .archive-article-image img {
    transform: scale(1.05);
}

.archive-article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.archive-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.archive-article-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.archive-article-date {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.archive-article-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.featured-article .archive-article-title {
    font-size: 1.8rem;
}

.archive-article-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-article-title a:hover {
    color: var(--primary-color);
}

.archive-article-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.archive-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: all 0.3s ease;
    position: relative;
}

.archive-read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.archive-read-more:hover {
    color: #aa0000;
}

.archive-read-more:hover::after {
    width: 100%;
}

.pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    margin: 0 0.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current {
    background-color: var(--primary-color);
    color: white;
}

.pagination .page-numbers:hover:not(.current) {
    background-color: #e0e0e0;
}

.pagination .next,
.pagination .prev {
    width: auto;
    padding: 0 1rem;
    border-radius: 20px;
}

.no-results {
    text-align: center;
    padding: 3rem 0;
}

.no-results h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.no-results p {
    color: #666;
    margin-bottom: 2rem;
}


/* Styles pour les filtres d'archive */
.archive-filter {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: #f9f9f9;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.filter-count {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.filter-options {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    background-color: white;
    color: #555;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.filter-button:hover {
    border-color: #ccc;
    color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-button.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-button.active:hover {
    background-color: #aa0000;
    border-color: #aa0000;
}

/* Section CTA */
.footer-cta-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
}

.left-cta {
    padding: 3.5rem;
    background: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.left-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.left-cta h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #222;
    position: relative;
    display: inline-block;
}

.left-cta h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.left-cta p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 80%;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.cta-button i {
    margin-right: 8px;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(200, 0, 0, 0.3);
}

.cta-button.primary:hover {
    background: #b00000;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(200, 0, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Newsletter section */
.right-newsletter {
    background: linear-gradient(135deg, #1a1a1a, #000);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.right-newsletter:hover {
    transform: translateY(-5px);
}

.right-newsletter::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(var(--primary-color-rgb), 0) 70%);
    top: -175px;
    right: -175px;
}

.right-newsletter::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.3);
    bottom: -100px;
    left: -100px;
}

.newsletter-card {
    position: relative;
    z-index: 1;
}

.newsletter-card h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.newsletter-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-form .form-group {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 1.2rem 4rem 1.2rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #b00000;
    transform: scale(1.1);
}

.newsletter-form button i {
    font-size: 1.2rem;
}

/* Menu et Contact Footer */
.footer-nav-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0 3rem;
}

.footer-heading {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-navigation:hover .footer-heading::after,
.footer-contact:hover .footer-heading::after {
    width: 70px;
}

/* Navigation rapide */
.footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
}

.footer-menu-list li {
    position: relative;
}

.footer-menu-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding-left: 1.2rem;
}

.footer-menu-list a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-menu-list a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-menu-list a:hover::before {
    color: var(--primary-color);
}

/* Contact */
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact-list i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    width: 20px;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.footer-contact-list li:hover i {
    color: white;
    transform: scale(1.1);
}

.footer-contact-list span,
.footer-contact-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.footer-contact-list a {
    text-decoration: none;
    position: relative;
}

.footer-contact-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.footer-contact-list a:hover {
    color: white;
}

.footer-contact-list a:hover::after {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: white;
}

.separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Front Page Styles */
/* Utilisation des classes existantes avec des modificateurs spécifiques */

/* Hero Section - basé sur les styles existants */
.hero-creative {
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-inner {
    max-width: 600px;
}

.tagline {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: rgba(200, 0, 0, 0.08);
    border-radius: 50px;
}

.tagline::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 60px;
    background-color: var(--primary-color);
    right: -70px;
    top: 50%;
}

.hero-title {
    font-family: 'Bitter', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.word-container {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 4.2rem;
    vertical-align: bottom;
    border: none;
    background: transparent;
}

.word-slide {
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.5s ease;
    z-index: 2; /* Assurer que les mots sont au-dessus de tout autre élément */
}

.word-slide div {
    height: 4.2rem;
    font-size: 3.5rem;
    color: var(--primary-color);
    display: block; /* Utiliser block au lieu de flex pour simplifier */
    line-height: 4.2rem;
    opacity: 1;
    visibility: visible;
    width: 100%;
    font-weight: 700; /* Rendre le texte plus visible */
}

/* Supprimer complètement la classe active qui n'est plus utilisée */

@keyframes wordSlide {
    0%, 16% { transform: translateY(0); }
    20%, 36% { transform: translateY(-4.2rem); }
    40%, 56% { transform: translateY(-8.4rem); }
    60%, 76% { transform: translateY(-12.6rem); }
    80%, 96% { transform: translateY(-16.8rem); }
    100% { transform: translateY(0); }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-cta:hover {
    background-color: #9B0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(200, 0, 0, 0.3);
}

.hero-secondary {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0.5rem 0;
}

.hero-secondary:hover {
    color: var(--primary-color);
}

.hero-secondary i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.hero-secondary:hover i {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
}

.hero-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    cursor: pointer;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #777;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(200, 0, 0, 0.1);
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background-color: rgba(200, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Bitter', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.title-part {
    display: inline-block;
    margin: 0 5px;
}

.title-part.highlight {
    color: var(--primary-color);
}

.section-title-accent {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.mission-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.mission-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}


.mission-quote blockquote {
    margin: 2rem 0;
    padding-left: 2rem;
    font-style: italic;
    color: #444;
}

.mission-quote cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    font-style: normal;
    color: var(--primary-color);
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    display: inline-block;
}

.stat-symbol {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: inline-block;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

/* Featured Media Section */
.featured-media-section {
    padding: 5rem 0;
    background-color: white;
}

.featured-media-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.featured-media {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.featured-media:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-media-visual {
    position: relative;
    overflow: hidden;
}

.featured-video-thumbnail,
.featured-media-image {
    display: block;
    position: relative;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 ratio */
    overflow: hidden;
}

.featured-media-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-media:hover .featured-media-visual img {
    transform: scale(1.05);
}

.featured-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(200, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

.media-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.media-badge.video {
    background-color: rgba(200, 0, 0, 0.8);
    color: white;
}

.media-badge.presse {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}

.media-badge.live {
    background-color: rgba(255, 0, 0, 0.8);
}

.youtube-live-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.featured-media .featured-media-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap:0;
}

.featured-media-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.featured-media-date,
.featured-media-source {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.featured-media-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--secondary-color);
}

.featured-media-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
    color: white;
    font-size: 3rem;
}

.view-all-media {
    text-align: center;
    margin-top: 3rem;
}

/* Icônes font-awesome */
[class^="icon-"], [class*=" icon-"] {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Suppression des correspondances spécifiques qui ne sont plus nécessaires puisque nous utilisons directement les classes FA */
/* Styles pour les boutons avec icônes */
.btn.with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn.with-icon i {
    transition: transform 0.3s ease;
}

.btn.with-icon:hover i {
    transform: translateX(5px);
}

/* Latest Posts Section */
.latest-posts-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.post-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-card-image {
    display: block;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.post-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-card-category {
    display: inline-block;
    background-color: rgba(200, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    text-decoration: none;
}

.post-card-category:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-card-date {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color: var(--primary-color);
}

.post-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-card-readmore {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-card-readmore i {
    transition: transform 0.3s ease;
}

.post-card-readmore:hover {
    color: #b00000;
}

.post-card-readmore:hover i {
    transform: translateX(3px);
}

.view-all-posts {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact-section {
    padding: 7rem 0;
    background: linear-gradient(to right, #fafafa, #f5f5f5);
    color: #333;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #f9f9f9;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 0, 0, 0.2), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    align-items: center;
    background:white;
    border-radius: 10px;
    transition: all 0.8s ease;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-title {
    margin-bottom: 1.5rem;
    color: #222;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.contact-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 90%;
    color: #555;
    font-weight: 300;
}

.media-types {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.media-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    width: auto;
    padding: 0;
    background: none;
    border-radius: 0;
    height: auto;
}

.media-type-item::before {
    display: none;
}

.media-type-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 0, 0, 0.15);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: white;
}

.media-type-item:hover i {
    transform: translateY(-5px);
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(200, 0, 0, 0.2);
}

.media-type-item span {
    font-weight: 400;
    font-size: 0.95rem;
    color: #666;
    letter-spacing: 0.5px;
}

.contact-actions {
    margin-top: 3rem;
}


.contact-actions .btn i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.contact-image {
    position: relative;
    z-index: 1;
}

.media-illustration {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.contact-wrapper:hover .media-illustration {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Animation pour l'apparition */
.contact-image {
    opacity: 1;
    transform: none;
    animation: none;
}

/* Responsive */

/* Tags sur la page d'archive */
.archive-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(200, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.archive-tag:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.archive-tag::before {
    content: '#';
    margin-right: 3px;
    opacity: 0.7;
}

/* Style spécifique pour la page d'archive des tags */
.tag-archive-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #990000 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.tag-archive-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.tag-archive-description {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.tag-archive-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive */
/* ====== max-width: 992px ====== */
@media (max-width: 992px) {
    .archive-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-article .archive-article-image {
        height: 0;
        padding-bottom: 56%;
    }

    .footer-cta-section {
        grid-template-columns: 1fr;
    }

    .footer-nav-contact {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-menu-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-image {
        order: -1;
        max-width: 80%;
        margin: 0 auto;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-description {
        max-width: 100%;
    }

    .media-types {
        justify-content: center;
    }

    .equipe-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .equipe-card {
        padding: 2rem 1.2rem 1.5rem;
    }

    .header-buttons {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .menu-fullscreen {
        display: block;
    }

    /* Menu responsive adjustments */
    .menu-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .menu-navigation-section {
        order: 1;
    }

    .menu-info-section {
        order: 2;
        gap: 2rem;
    }

    .menu-brand-info {
        padding: 1.5rem;
    }

    .menu-brand-title {
        font-size: 2rem;
    }

    .menu-fullscreen .main-navigation ul li a {
        font-size: 1.8rem;
    }

    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .related-article-1 {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }

    .related-article-1 .related-article-image {
        height: 0;
        padding-bottom: 66.67%; /* Ratio 3:2 pour un meilleur impact visuel */
    }

    .related-article-1 .related-article-image img {
        position: absolute;
        height: 100%;
    }
}


/* ====== max-width: 768px ====== */
@media (max-width: 768px) {

    .article-tags .tags-list {
        gap: 0.8rem;
    }

    .article-tags .tag {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .archive-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .tag-archive-title {
        font-size: 2rem;
    }

    .archive-header {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }

    .archive-title {
        font-size: 2rem;
    }

    .archive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .archive-filter {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .filter-options {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-buttons {
        width: 100%;
    }

    .filter-button {
        flex: 1;
        text-align: center;
    }

    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }

    .left-cta,
    .right-newsletter {
        padding: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .equipe-card {
        padding: 1.5rem 0.8rem 1.2rem;
    }
    .equipe-photo {
        width: 90px !important;
        height: 90px !important;
    }
    .equipe-nom {
        font-size: 1.1rem !important;
    }
    .equipe-role {
        font-size: 0.95rem !important;
    }
    .equipe-bio {
        font-size: 0.95rem !important;
    }

    .site-header {
        padding: 1rem 0;
    }

    .header-inner {
        padding: 0 1rem;
    }

    .site-logo img {
        height: 35px;
    }

    .hamburger-toggle {
        width: 25px;
        height: 18px;
    }

    /* Menu tablet adjustments */
    .menu-fullscreen-inner {
        padding: 3rem 1.5rem 1.5rem;
    }

    .menu-content-grid {
        gap: 2.5rem;
    }

    .menu-fullscreen .main-navigation ul li a {
        font-size: 1.6rem;
    }

    .menu-brand-title {
        font-size: 1.8rem;
    }

    .menu-brand-tagline {
        font-size: 1rem;
    }

    .menu-cta-buttons {
        gap: 0.8rem;
    }

    .menu-cta-btn {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .menu-social-link {
        width: 45px;
        height: 45px;
    }

    .menu-social-link i {
        font-size: 1.2rem;
    }

    .menu-footer-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .menu-footer-links {
        gap: 1.5rem;
    }

    .mission-content, .mission-stats, .featured-media-content, .posts-grid {
        display: block;
    }

    .stat-item, .featured-media, .post-card {
        margin-bottom: 1rem;
    }

    .article-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-share-vertical {
        position: relative;
        top: 0;
        flex-direction: row;
        justify-content: center;
        padding: 1.5rem 0;
        border-top: 1px solid rgba(0,0,0,0.1);
        border-bottom: 1px solid rgba(0,0,0,0.1);
        margin-bottom: 2rem;
    }

    .share-label {
        transform: none;
        margin-bottom: 0;
        margin-right: 1rem;
    }

    .share-divider {
        width: 1px;
        height: 30px;
        margin: 0 1rem;
    }

    .share-icon {
        margin-bottom: 0;
    }

    .tooltip {
        display: none;
    }

    .related-articles-section {
        padding: 3rem 0;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .related-article-1 {
        grid-column: span 1;
    }

    .related-article-title {
        font-size: 1.2rem;
    }

    .related-article-1 .related-article-title {
        font-size: 1.4rem;
    }

    .related-article-1 .related-article-image {
        padding-bottom: 75%; /* Ratio 4:3 pour mobile */
    }
}


/* ====== max-width: 576px ====== */
@media (max-width: 576px) {
    .archive-title {
        font-size: 1.7rem;
    }

    .archive-article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .filter-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .footer-menu-list {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .brand-tagline {
        font-size: 1.5rem;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .contact-image {
        max-width: 100%;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .media-types {
        gap: 1.5rem;
    }

    .media-type-item i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .equipe-section {
        padding: 2.5rem 0 !important;
    }
    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem !important;
    }
    .equipe-card {
        padding: 1rem 0.5rem 1rem !important;
        border-radius: 10px !important;
    }
    .equipe-photo {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 0.7rem !important;
    }
    .equipe-nom {
        font-size: 1rem !important;
    }
    .equipe-role {
        font-size: 0.85rem !important;
    }
    .equipe-bio {
        font-size: 0.9rem !important;
    }
    .footer-social {
        gap: 0.7rem !important;
    }

    .site-header {
        padding: 0.8rem 0;
    }

    .header-inner {
        padding: 0 0.8rem;
    }

    .site-logo img {
        height: 30px;
    }

    .hamburger-toggle {
        width: 22px;
        height: 16px;
    }

    /* Menu mobile adjustments */
    .menu-fullscreen-inner {
        padding: 2rem 1rem 1rem;
    }

    .menu-content-grid {
        gap: 2rem;
    }

    .menu-fullscreen .main-navigation ul li a {
        font-size: 1.4rem;
    }

    .menu-brand-info {
        padding: 1.2rem;
    }

    .menu-brand-title {
        font-size: 1.6rem;
    }

    .menu-brand-tagline {
        font-size: 0.95rem;
    }

    .menu-cta-btn {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .menu-social {
        gap: 0.8rem;
    }

    .menu-social-link {
        width: 40px;
        height: 40px;
    }

    .menu-social-link i {
        font-size: 1.1rem;
    }

    .menu-footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .menu-shape-1 {
        width: 200px;
        height: 200px;
        right: -100px;
    }

    .menu-shape-2 {
        width: 150px;
        height: 150px;
        left: -75px;
    }

    .menu-shape-3 {
        width: 100px;
        height: 100px;
    }

    .article-share-vertical {
        padding: 1rem 0;
        gap: 0.8rem;
    }

    .share-label {
        font-size: 0.8rem;
        margin-right: 0;
    }

    .share-divider {
        height: 25px;
        margin: 0;
    }

    .share-icon {
        width: 35px;
        height: 35px;
    }

    .share-icon i {
        font-size: 0.9rem;
    }

    .related-articles-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .related-article {
        border-radius: 6px;
    }

    .related-article-title {
        font-size: 1.1rem;
    }

    .related-article-1 .related-article-title {
        font-size: 1.3rem;
    }

    .related-article-category {
        font-size: 0.75rem;
    }

    .related-article-date {
        font-size: 0.75rem;
    }
}
