.glaib-block {
    max-width: 1120px;
    margin: 2rem auto 3rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Bande d'intro */
.glaib-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: #f5f0e8;
    padding: 2.5rem 2.25rem;
    margin-bottom: 2.5rem;
}

.glaib-intro__text {
    flex: 1 1 auto;
}

.glaib-intro__title {
    font-size: 2.6rem;
    line-height: 1.05;
    margin: 0 0 1rem;
    font-weight: 500;
}

.glaib-intro__paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    color: #222;
}

.glaib-intro__image-wrapper {
    flex: 0 0 180px;
    display: flex;
    justify-content: center;
}

.glaib-intro__image {
    max-width: 180px;
    height: auto;
    border-radius: 999px;
}

/* Liste d'articles */
.glaib-posts {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.glaib-post {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
}

.glaib-post__image-wrapper {
    flex: 0 0 260px;
    display: block;
}

.glaib-post__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.glaib-post__content {
    flex: 1 1 auto;
}

.glaib-post__meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.3rem;
}

.glaib-post__cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #b10000;
}

.glaib-post__date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777;
}

.glaib-post__title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.glaib-post__title a {
    color: #111;
    text-decoration: none;
}

.glaib-post__title a:hover {
    text-decoration: underline;
}

.glaib-post__excerpt {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0.4rem;
}

.glaib-post__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.glaib-post__tag {
    font-size: 0.78rem;
    background: #f0f0f0;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    color: #333;
}

/* Pagination style noir */
.glaib-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.glaib-page {
    min-width: 42px;
    height: 42px;
    padding: 0 0.75rem;
    border-radius: 6px;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.glaib-page--current {
    background: #333;
    cursor: default;
}

.glaib-page--nav {
    font-size: 1.1rem;
}

.glaib-page:hover {
    background: #222;
}

/* Responsive */
@media (max-width: 900px) {
    .glaib-intro {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }

    .glaib-intro__title {
        font-size: 2.1rem;
    }

    .glaib-block {
        margin: 1.5rem 1rem 2.5rem;
    }

    .glaib-post {
        flex-direction: column;
    }

    .glaib-post__image-wrapper {
        flex: 0 0 auto;
    }
}
