/* ==========================================================================
   BLOG — Design Moderne AGM PRO
   ========================================================================== */

/* --- Breadcrumb --- */
.blog-breadcrumb {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: #6b7280;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}
.blog-breadcrumb a {
    color: #143730;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-breadcrumb a:hover { color: #E8972C; }
.blog-breadcrumb__sep { margin: 0 0.5rem; color: #d1d5db; }

/* --- Hero Banner --- */
.blog-hero {
    background: linear-gradient(135deg, #143730 0%, #1B6B3A 50%, #143730 100%);
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(232, 151, 44, 0.08);
    pointer-events: none;
}
.blog-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}
.blog-hero__content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}
.blog-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 151, 44, 0.15);
    color: #E8972C;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.blog-hero__title {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem;
}
.blog-hero__subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Filtres de catégories --- */
.blog-filters {
    background: #fff;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 70px;
    z-index: 90;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.blog-filters__wrapper {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}
.blog-filters__wrapper::-webkit-scrollbar { display: none; }

.blog-filter__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 50px;
    background: #fff;
    color: #4b5563;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    text-decoration: none;
    font-family: inherit;
}
.blog-filter__btn:hover {
    border-color: #143730;
    color: #143730;
    background: #f0fdf4;
}
.blog-filter__btn.active {
    background: #143730;
    color: #fff;
    border-color: #143730;
}
.blog-filter__btn.active .blog-filter__count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.blog-filter__btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.blog-filter__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 50px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 600;
}

/* --- Section Grille --- */
.blog-grid-section {
    padding: 3rem 0 2rem;
    background: #f9fafb;
    min-height: 400px;
}

/* --- Article Featured (mis en avant) --- */
.blog-card--featured {
    margin-bottom: 2.5rem;
}
.blog-card--featured .blog-card__link {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    text-decoration: none;
    color: inherit;
}
.blog-card--featured .blog-card__link:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}
.blog-card--featured .blog-card__image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}
.blog-card--featured .blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card--featured .blog-card__link:hover .blog-card__image {
    transform: scale(1.05);
}
.blog-card--featured .blog-card__body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-card--featured .blog-card__title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0.75rem 0;
}
.blog-card--featured .blog-card__excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0 0 1.5rem;
}

/* --- Grille d'articles --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.blog-grid--full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* --- Article Card --- */
.blog-card {
    opacity: 1;
}
.blog-card .blog-card__link {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.blog-card .blog-card__link:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Image wrapper */
.blog-card__image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card .blog-card__link:hover .blog-card__image {
    transform: scale(1.06);
}

/* Image placeholder */
.blog-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #143730 0%, #1B6B3A 60%, #0f2b25 100%);
    color: rgba(255, 255, 255, 0.25);
}

/* Badge catégorie sur l'image */
.blog-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #E8972C;
    color: #fff;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(232, 151, 44, 0.3);
}

/* Body de la card */
.blog-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Meta (date + temps de lecture) */
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.blog-card__meta time {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.blog-card__meta svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.7;
}
.blog-card__dot {
    color: #d1d5db;
    font-weight: 700;
}
.blog-card__reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Titre */
.blog-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    color: #143730;
    margin: 0.25rem 0 0.6rem;
    transition: color 0.2s;
}
.blog-card .blog-card__link:hover .blog-card__title {
    color: #E8972C;
}

/* Extrait */
.blog-card__excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 1rem;
    flex: 1;
}

/* CTA */
.blog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #143730;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.25s ease;
    margin-top: auto;
}
.blog-card__cta svg {
    transition: transform 0.25s ease;
}
.blog-card .blog-card__link:hover .blog-card__cta {
    color: #E8972C;
}
.blog-card .blog-card__link:hover .blog-card__cta svg {
    transform: translateX(4px);
}

/* --- Pagination --- */
.blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}
.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.2s ease;
}
.blog-pagination .page-numbers:hover {
    border-color: #143730;
    color: #143730;
    background: #f0fdf4;
}
.blog-pagination .page-numbers.current {
    background: #143730;
    color: #fff;
    border-color: #143730;
}
.blog-pagination .prev,
.blog-pagination .next {
    gap: 0.3rem;
    font-weight: 600;
}

/* --- État vide --- */
.blog-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: #6b7280;
}
.blog-empty svg {
    margin-bottom: 1.5rem;
}
.blog-empty h2 {
    color: #143730;
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}
.blog-empty p {
    font-size: 1.05rem;
    margin: 0 0 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* --- CTA Devis --- */
.blog-cta {
    padding: 2rem 0 4rem;
    background: #f9fafb;
}
.blog-cta__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, #143730 0%, #1B6B3A 100%);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.blog-cta__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(232, 151, 44, 0.1);
    pointer-events: none;
}
.blog-cta__content {
    position: relative;
    z-index: 1;
}
.blog-cta__title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.blog-cta__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}
.blog-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #E8972C;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(232, 151, 44, 0.3);
}
.blog-cta__btn:hover {
    background: #d4841f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 151, 44, 0.4);
}

/* --- ARTICLE SINGLE --- */

/* Article Hero */
.article-hero {
    padding: 60px 0 32px;
    background: linear-gradient(135deg, rgba(27,107,58,0.04) 0%, rgba(245,166,35,0.04) 100%);
}
.article-hero__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #8a9e82;
    margin-bottom: 16px;
}
.article-hero__category {
    display: inline-block;
    padding: 4px 12px;
    background: #1B6B3A;
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.article-hero__category:hover {
    background: #145A2F;
}
.article-hero__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #1a2e1a;
    line-height: 1.2;
    margin-bottom: 16px;
}
.article-hero__excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: #4a6741;
    max-width: 700px;
}

/* Featured Image */
.article-featured-image {
    padding: 0 0 40px;
    background: linear-gradient(135deg, rgba(27,107,58,0.04) 0%, rgba(245,166,35,0.04) 100%);
}
.article-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(27,107,58,0.12);
}

/* Article Body */
.article-body {
    min-width: 0;
}
.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: #4a6741;
}

/* Blog Content (single layout) */
.blog-content {
    padding: 60px 0 80px;
}
.blog-content .blog-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* Sidebar Search */
.blog-sidebar__search {
    display: flex;
    gap: 0;
}
.blog-sidebar__search-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(27,107,58,0.15);
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.blog-sidebar__search-input:focus {
    border-color: #1B6B3A;
}
.blog-sidebar__search-btn {
    padding: 10px 14px;
    background: #143730;
    color: #fff;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    transition: background 0.2s;
}
.blog-sidebar__search-btn:hover {
    background: #1B6B3A;
}

/* Sidebar Recent Posts */
.blog-sidebar__recent {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.blog-sidebar__recent-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.blog-sidebar__recent-item:hover {
    opacity: 0.8;
}
.blog-sidebar__recent-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.blog-sidebar__recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-sidebar__recent-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.blog-sidebar__recent-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a2e1a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-sidebar__recent-date {
    font-size: 12px;
    color: #8a9e82;
    margin-top: 4px;
}

/* Sidebar Tags */
.blog-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-sidebar__tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(27,107,58,0.06);
    color: #143730;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.blog-sidebar__tag:hover {
    background: #143730;
    color: #fff;
}

/* Article Content Typography */
.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2e1a;
    margin: 2rem 0 1rem;
    line-height: 1.3;
}
.article-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2e1a;
    margin: 1.75rem 0 0.75rem;
}
.article-content p {
    margin-bottom: 1.25rem;
}
.article-content ul, .article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #4a6741;
}
.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.article-content a {
    color: #1B6B3A;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.article-content a:hover {
    color: #E8972C;
}
.article-content blockquote {
    border-left: 4px solid #E8972C;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(232,151,44,0.05);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #4a6741;
}
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.article-content th, .article-content td {
    padding: 12px 16px;
    border: 1px solid rgba(27,107,58,0.1);
    text-align: left;
}
.article-content th {
    background: #143730;
    color: #fff;
    font-weight: 600;
}

/* Article Tags */
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(27,107,58,0.1);
    margin-top: 2rem;
}
.article-tags__label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2e1a;
}
.article-tags__tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(27,107,58,0.06);
    color: #143730;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.article-tags__tag:hover {
    background: #143730;
    color: #fff;
}

/* Article Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.25rem 0;
}
.article-share__label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2e1a;
}
.article-share__links {
    display: flex;
    gap: 8px;
}
.article-share__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(27,107,58,0.06);
    color: #143730;
    transition: all 0.2s;
}
.article-share__link:hover {
    background: #143730;
    color: #fff;
}

/* Article Author Box */
.article-author {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 24px;
    background: rgba(27,107,58,0.04);
    border-radius: 16px;
    margin: 2rem 0;
}
.article-author__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.article-author__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-author__name {
    font-size: 15px;
    font-weight: 700;
    color: #1a2e1a;
}
.article-author__bio {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    margin: 4px 0 0;
}

/* Article Navigation */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(27,107,58,0.1);
}
.article-nav__link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid rgba(27,107,58,0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}
.article-nav__link:hover {
    border-color: #1B6B3A;
    box-shadow: 0 4px 12px rgba(27,107,58,0.08);
}
.article-nav__link--next {
    text-align: right;
}
.article-nav__label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #8a9e82;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.article-nav__title {
    font-size: 14px;
    font-weight: 600;
    color: #1a2e1a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}
.blog-sidebar__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(27,107,58,0.1);
    margin-bottom: 24px;
}
.blog-sidebar__title {
    font-size: 16px;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1B6B3A;
}
.blog-sidebar__categories {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-sidebar__categories li {
    border-bottom: 1px solid rgba(27,107,58,0.08);
}
.blog-sidebar__categories li:last-child {
    border-bottom: none;
}
.blog-sidebar__categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #4a6741;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.blog-sidebar__categories a:hover {
    color: #1B6B3A;
}
.blog-sidebar__count {
    background: rgba(27,107,58,0.08);
    color: #1B6B3A;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
}
.blog-sidebar__card--cta {
    background: linear-gradient(135deg, #1B6B3A, #145A2F);
    border-color: transparent;
    text-align: center;
}
.blog-sidebar__cta-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.blog-sidebar__cta-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 20px;
}
.blog-sidebar__cta-btn {
    display: block;
    padding: 14px 24px;
    background: #E8972C;
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 12px;
}
.blog-sidebar__cta-btn:hover {
    background: #d4841f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,151,44,0.3);
}
.blog-sidebar__cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}
.blog-sidebar__cta-phone:hover {
    color: #fff;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .blog-content .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid,
    .blog-grid--full {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-card--featured .blog-card__link {
        grid-template-columns: 1fr;
    }
    .blog-card--featured .blog-card__image-wrapper {
        min-height: 250px;
        aspect-ratio: 16/9;
    }
    .blog-card--featured .blog-card__body {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 3rem 0 2.5rem;
    }
    .blog-hero__title {
        font-size: 1.6rem;
    }
    .blog-filters {
        top: 60px;
    }
    .blog-grid,
    .blog-grid--full {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .blog-card--featured .blog-card__image-wrapper {
        min-height: 200px;
    }
    .blog-card--featured .blog-card__body {
        padding: 1.5rem;
    }
    .blog-card--featured .blog-card__title {
        font-size: 1.25rem;
    }
    .article-nav {
        grid-template-columns: 1fr;
    }
    .article-nav__link--next {
        text-align: left;
    }
    .blog-cta__card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .blog-cta__text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 2rem 0;
    }
    .blog-hero__subtitle {
        font-size: 0.95rem;
    }
    .blog-card__body {
        padding: 1.25rem;
    }
    .blog-card__title {
        font-size: 1.05rem;
    }
}
