.blog-hero {
    background: linear-gradient(180deg, #f9fdf7 0%, #ffffff 100%);
    padding: 6rem 0 6rem;
}

.blog-hero__title {
    font-weight: 700;
    line-height: 1.2;
}

.blog-hero__subtitle {
    font-size: 1.05rem;
    color: #5f6368;
    max-width: 36rem;
}

.blog-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.blog-hero__panel {
    border-radius: var(--radius);
    background: #fff;
}

.blog-hero__panel-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-video__player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
}

.blog-video__player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-video__caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.blog-filters {
    background: #ffffff;
    padding: 2.5rem 0;
    border-top: 1px solid #e9ecef;
}

.blog-filters__label {
    display: block;
    font-weight: 600;
    color: var(--darkGray);
    margin-bottom: 0.5rem;
}

.blog-filters .search-wrapper,
.blog-filters .select-wrapper {
    width: 100%;
}

.blog-filters .search-input,
.blog-filters .select-input {
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border-color: #d5d9df;
}

.blog-filters .search-input:focus,
.blog-filters .select-input:focus {
    border-color: var(--bleuAgglo);
    box-shadow: 0 0 0 0.2rem rgba(0, 159, 203, 0.15);
}

.blog-list {
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
    padding: 3rem 0 4rem;
}

.blog-list__header {
    margin-bottom: 2rem;
}

.blog-list__title {
    font-weight: 700;
}

.blog-empty {
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem;
}

/* Blog cards (reuse home styles) */
.home-blog__grid {
    width: 100%;
}

.home-blog__card {
    border: 0;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(16, 16, 16, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-blog__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px rgba(16, 16, 16, 0.12);
}

.home-blog__image-wrapper {
    position: relative;
    overflow: hidden;
}

.home-blog__image {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-blog__card:hover .home-blog__image {
    transform: scale(1.05);
}

.home-blog__tag {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

.home-blog__meta {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.65rem;
    gap: 1rem;
}

.home-blog__title {
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.home-blog__title a {
    color: inherit;
}

.home-blog__title a:hover {
    text-decoration: none;
    color: var(--bleuAgglo);
}

.home-blog__excerpt {
    color: #5f6368;
    margin-bottom: 0;
}

.home-blog__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bleuAgglo);
}

.home-blog__link .fa {
    font-size: 0.85rem;
    margin-left: 0.35rem;
    transition: transform 0.3s ease;
}

.home-blog__card:hover .home-blog__link .fa {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .blog-hero {
        padding-bottom: 2.5rem;
    }
}

/* Article page */
.blog-article-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4rem 0 4rem;
    color: #fff;
}

.blog-article-hero--noimage {
    background: linear-gradient(180deg, var(--darkGray) 0%, #1f2224 100%);
}

.blog-article-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.65) 0%, rgba(16, 16, 16, 0.85) 100%);
}

.blog-article-hero__content {
    position: relative;
    max-width: 700px;
}

.blog-article-hero__back {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

.blog-article-hero__back i {
    margin-right: 0.5rem;
}

.blog-article-hero__back:hover,
.blog-article-hero__back:focus {
    text-decoration: none;
    color: #fff;
}

.blog-article-hero__category {
    display: inline-flex;
    padding: 0.4rem 0.9rem;
    background: rgba(0, 159, 203, 0.85);
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 1rem 0 1.5rem;
}

.blog-article-hero__title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.blog-article-hero__meta {
    gap: 1.25rem;
    font-size: 0.95rem;
    padding: 0;
    margin: 0;
}

.blog-article-hero__meta li {
    display: inline-flex;
    align-items: center;
    opacity: 0.85;
}

.blog-article-hero__meta i {
    margin-right: 0.5rem;
}

.blog-article {
    background: #ffffff;
    padding: 3.5rem 0 4rem;
}

.blog-article__lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #4a4f54;
    margin-bottom: 2rem;
}

.blog-article__content {
    font-size: 1rem;
    line-height: 1.7;
    color: #343a40;
}

.blog-article__content h2,
.blog-article__content h3,
.blog-article__content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.blog-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.blog-article__content blockquote {
    border-left: 4px solid var(--bleuAgglo);
    padding-left: 1.5rem;
    color: #5f6368;
    font-style: italic;
    margin: 2rem 0;
}

.blog-article__footer {
    margin-top: 3rem;
    gap: 1rem;
}

.blog-article__share {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #6c757d;
}

.blog-article__share-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 159, 203, 0.12);
    color: var(--bleuAgglo);
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-article__share-link:hover,
.blog-article__share-link:focus {
    background: var(--bleuAgglo);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 575.98px) {
    .blog-hero__panel {
        margin-top: 1.5rem;
    }

    .blog-list__header {
        margin-bottom: 1.5rem;
    }

    .home-blog__image {
        height: 200px;
    }
}
