/* =============================================
   CMC Blog - Styles additionnels
   Ces styles complètent styles.css de la landing
============================================= */

/* =============================================
   Blog Hero - Premium Design
============================================= */
.blog-hero {
    position: relative;
    background: #e94f1d;
    color: white;
    padding: calc(170px + 30px) 0 70px;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.blog-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 79, 29, 0.92) 0%, rgba(255, 107, 61, 0.88) 100%);
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 3;
}

.blog-hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero .section-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.blog-hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    color: white;
    letter-spacing: -0.5px;
}

.blog-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 500px;
    margin: 0 auto;
    color: white;
}

.blog-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2;
}

.blog-hero-wave svg {
    width: 100%;
    height: 50px;
}

@media (max-width: 1024px) {
    .blog-hero {
        padding-top: calc(140px + 25px);
        padding-bottom: 60px;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding-top: calc(70px + 25px);
        padding-bottom: 50px;
    }

    .blog-hero h1 {
        font-size: 1.6rem;
    }

    .blog-hero-subtitle {
        font-size: 1rem;
    }

    .blog-hero-wave svg {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 1.4rem;
    }

    .blog-hero-subtitle {
        font-size: 0.95rem;
    }
}

/* =============================================
   Container
============================================= */
.blog-hero .container,
.blog-main .container,
.blog-filters .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   Filters - Premium Design
============================================= */
.blog-filters {
    background: #fff9f5;
    padding: 30px 0;
    position: relative;
}

.filters-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filters-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filters-label svg {
    width: 18px;
    height: 18px;
    color: #e94f1d;
}

.filter-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

#category-filters {
    display: contents;
}

.filter-btn {
    position: relative;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    background: white;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e94f1d 0%, #ff6b3d 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.filter-btn-text {
    position: relative;
    z-index: 1;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 79, 29, 0.15), 0 0 0 1px rgba(233, 79, 29, 0.1);
    color: #e94f1d;
}

.filter-btn.active {
    color: white;
    box-shadow: 0 6px 25px rgba(233, 79, 29, 0.3), 0 0 0 1px transparent;
    transform: translateY(-1px);
}

.filter-btn.active::before {
    opacity: 1;
}

.filter-btn.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 79, 29, 0.35);
}

@media (max-width: 768px) {
    .blog-filters {
        padding: 20px 0;
    }

    .filters-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .filter-wrapper {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .filter-wrapper::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .filters-label {
        font-size: 0.8rem;
    }

    .filter-btn {
        padding: 9px 16px;
        font-size: 0.85rem;
    }
}

/* =============================================
   Articles Grid
============================================= */
.blog-main {
    background: #fff9f5;
    padding: 50px 0;
    min-height: 60vh;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.article-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #2aa3a3 0%, #1a7f7f 100%);
}

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

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

.article-card-image .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--orange, #e94f1d);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-date {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.article-card-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3748;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.article-card:hover .article-card-title {
    color: var(--orange, #e94f1d);
}

.article-card-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal, #1a7f7f);
    font-weight: 600;
}

.article-card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card-link svg {
    transform: translateX(5px);
}

/* =============================================
   Loading & Empty State
============================================= */
.loading {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top-color: var(--orange, #e94f1d);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading p {
    color: #64748b;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state svg {
    width: 80px;
    height: 80px;
    color: #a0aec0;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2d3748;
}

.empty-state p {
    color: #64748b;
}

/* =============================================
   Pagination
============================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination button {
    width: 40px;
    height: 40px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination button:hover:not(:disabled) {
    border-color: var(--teal, #1a7f7f);
    color: var(--teal, #1a7f7f);
}

.pagination button.active {
    background: var(--teal, #1a7f7f);
    border-color: var(--teal, #1a7f7f);
    color: white;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* =============================================
   Article Page - Premium Design
============================================= */

/* Loading State */
.loading-fullpage {
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff9f5;
    padding-top: 170px;
}

.loading-content {
    text-align: center;
}

.spinner-large {
    width: 60px;
    height: 60px;
    border: 4px solid #e2e8f0;
    border-top-color: #e94f1d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-content p {
    color: #64748b;
    font-size: 1rem;
}

/* Article Hero */
.article-hero {
    position: relative;
    background: linear-gradient(135deg, #1a7f7f 0%, #2aa3a3 100%);
    color: white;
    padding: calc(170px + 50px) 0 100px;
    margin-top: 0;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.article-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 127, 127, 0.92) 0%, rgba(42, 163, 163, 0.85) 100%);
    z-index: 1;
}

.article-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-hero-content {
    text-align: center;
}

/* Breadcrumb in Hero */
.article-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.article-breadcrumb a:hover {
    color: white;
}

.article-breadcrumb svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.article-breadcrumb span {
    color: white;
    font-weight: 600;
}

/* Hero Meta */
.article-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.article-hero-category {
    background: #e94f1d;
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.article-hero-category:hover {
    background: #c4421a;
    transform: translateY(-2px);
}

.article-hero-date {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hero Title */
.article-hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.5px;
}

.article-hero-excerpt {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

.article-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2;
}

.article-hero-wave svg {
    width: 100%;
    height: 60px;
}

/* Article Page Layout */
.article-page {
    background: #fff9f5;
    padding: 50px 0 80px;
    min-height: 50vh;
}

.article-page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* Main Content */
.article-main-content {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.article-body {
    padding: 50px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #2d3748;
}

.article-body h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    margin: 45px 0 20px;
    color: #1a7f7f;
    position: relative;
    padding-left: 20px;
}

.article-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: linear-gradient(180deg, #e94f1d 0%, #ff6b3d 100%);
    border-radius: 2px;
}

.article-body h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 35px 0 15px;
    color: #2d3748;
}

.article-body p {
    margin-bottom: 22px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}

.article-body ul li,
.article-body ol li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #e94f1d;
    border-radius: 50%;
}

.article-body ol {
    counter-reset: list-counter;
}

.article-body ol li {
    counter-increment: list-counter;
}

.article-body ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1a7f7f 0%, #2aa3a3 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-body img {
    border-radius: 16px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.article-body blockquote {
    border-left: none;
    padding: 30px 35px;
    margin: 35px 0;
    background: linear-gradient(135deg, #fff9f5 0%, #fef3ed 100%);
    border-radius: 16px;
    font-style: italic;
    color: #64748b;
    font-size: 1.15rem;
    position: relative;
}

.article-body blockquote::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: #e94f1d;
    opacity: 0.3;
    line-height: 1;
}

.article-body a {
    color: #1a7f7f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(26, 127, 127, 0.3);
    transition: all 0.3s ease;
}

.article-body a:hover {
    color: #e94f1d;
    border-bottom-color: #e94f1d;
}

.article-body strong {
    color: #1a7f7f;
    font-weight: 700;
}

/* Article Footer */
.article-footer {
    padding: 30px 50px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
    background: #fafafa;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a7f7f 0%, #2aa3a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar svg {
    width: 26px;
    height: 26px;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-name {
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

/* Share Buttons */
.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #64748b;
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn:hover {
    border-color: #e94f1d;
    color: #e94f1d;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(233, 79, 29, 0.2);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 190px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Sidebar CTA */
.sidebar-cta {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #e94f1d 0%, #ff6b3d 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.sidebar-cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e94f1d 0%, #ff6b3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sidebar-cta-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.sidebar-cta h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 10px;
}

.sidebar-cta p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #e94f1d 0%, #ff6b3d 100%);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.sidebar-cta-btn svg {
    width: 20px;
    height: 20px;
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 79, 29, 0.3);
}

.sidebar-cta-link {
    display: inline-block;
    color: #1a7f7f;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-cta-link:hover {
    color: #e94f1d;
}

/* Sidebar Related */
.sidebar-related {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.sidebar-related h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.related-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    padding: 10px;
    margin: -10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.related-item:hover {
    background: #f8fafc;
}

.related-item-image {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a7f7f 0%, #2aa3a3 100%);
}

.related-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.related-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #2d3748;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-item:hover .related-item-title {
    color: #e94f1d;
}

.related-item-date {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 5px;
}

/* Not Found Page */
.not-found-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff9f5;
    padding: 170px 20px 80px;
}

.not-found-content {
    text-align: center;
    max-width: 500px;
}

.not-found-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.not-found-icon svg {
    width: 60px;
    height: 60px;
    color: #94a3b8;
}

.not-found-page h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 15px;
}

.not-found-page p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.not-found-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #e94f1d 0%, #ff6b3d 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.not-found-btn svg {
    width: 20px;
    height: 20px;
}

.not-found-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 79, 29, 0.3);
}

/* Responsive Article Page */
@media (max-width: 1024px) {
    .article-hero {
        padding-top: calc(140px + 40px);
        padding-bottom: 80px;
    }

    .article-hero h1 {
        font-size: 2.2rem;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .loading-fullpage {
        padding-top: 140px;
    }
}

@media (max-width: 768px) {
    .article-hero {
        padding-top: calc(70px + 35px);
        padding-bottom: 70px;
    }

    .article-hero h1 {
        font-size: 1.7rem;
    }

    .article-hero-excerpt {
        font-size: 1rem;
    }

    .article-hero-wave svg {
        height: 40px;
    }

    .article-breadcrumb {
        display: none;
    }

    .article-body {
        padding: 30px 25px;
        font-size: 1rem;
    }

    .article-body h2 {
        font-size: 1.4rem;
    }

    .article-footer {
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .loading-fullpage {
        padding-top: 70px;
    }

    .not-found-page {
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .article-hero h1 {
        font-size: 1.5rem;
    }

    .article-hero-meta {
        flex-direction: column;
        gap: 10px;
    }

    .article-body {
        padding: 25px 20px;
    }

    .article-body h2 {
        font-size: 1.25rem;
    }

    .share-buttons {
        width: 100%;
        justify-content: center;
    }

    .sidebar-cta {
        padding: 25px 20px;
    }
}

/* =============================================
   Responsive
============================================= */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .filter-wrapper {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-header {
        padding: 25px;
    }

    .article-header h1 {
        font-size: 1.6rem;
    }

    .article-body {
        padding: 25px;
    }

    .article-share {
        padding: 20px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .share-buttons {
        width: 100%;
    }

    .share-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}
