/* ===== Cab Services — Blog listing (Astra) — Groupe Keïta design — v1.3.0 ===== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

/* ── 1. MASQUER images featured dans la liste blog ── */
.ast-article-inner .ast-blog-featured-section,
.ast-article-inner figure,
.ast-article-inner .post-thumb,
.ast-blog-featured-section { display: none !important; }

/* ── 2. MASQUER catégorie "Uncategorized" ── */
.ast-article-inner .entry-meta .category-style-simple,
.ast-article-inner .cat-links,
.entry-meta .posted-in { display: none !important; }

/* ── 3. MASQUER auteur et séparateur ── */
.ast-article-inner .posted-by,
.ast-article-inner .entry-meta > span:first-child { display: none !important; }

/* ── 3b. MASQUER le "/" pseudo-élément devant la date ── */
.ast-article-inner .entry-meta .posted-on::before,
.ast-article-inner .entry-meta > span.posted-on::before,
.ast-article-inner .entry-meta .sep {
    display: none !important;
    content: '' !important;
}

/* ── 4. GRILLE 4 COLONNES ── */
.ast-archive-description ~ .ast-row,
.blog .ast-row,
#content .ast-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;
}

/* Tablet : 2 colonnes */
@media (max-width: 1024px) {
    .ast-archive-description ~ .ast-row,
    .blog .ast-row,
    #content .ast-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile : 1 colonne */
@media (max-width: 600px) {
    .ast-archive-description ~ .ast-row,
    .blog .ast-row,
    #content .ast-row {
        grid-template-columns: 1fr !important;
    }
}

/* ── Card wrapper ── */
.ast-article-post {
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    margin-bottom: 0;
}
.ast-article-post:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.13);
    transform: translateY(-3px);
    z-index: 1;
    position: relative;
}

/* ── Gold top border (uniquement) ── */
.ast-article-inner {
    border-top: 3px solid #C9A84C !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    padding: 0;
}

/* ── Post content area ── */
.post-content.ast-grid-common-col {
    padding: 22px 24px 26px;
}

/* ── Post title ── */
.ast-article-post .entry-title,
.ast-article-post .entry-title a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 600;
    color: #1C1C1C;
    text-decoration: none;
    letter-spacing: 0.3px;
    line-height: 1.3;
}
.ast-article-post .entry-title a:hover {
    color: #C9A84C;
}

/* ── Post meta (date) ── */
.ast-article-post .entry-meta,
.ast-article-post .posted-on {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.ast-article-post .entry-meta a {
    color: #C9A84C;
    text-decoration: none;
}

/* ── Excerpt ── */
.ast-article-post .ast-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    margin: 8px 0 16px;
}

/* ── Read more CTA ── */
.ast-article-post .read-more,
.ast-article-post a.ast-read-more {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: #C9A84C;
    padding: 9px 20px;
    text-decoration: none;
    transition: background 0.25s ease;
    border: none;
}
.ast-article-post .read-more:hover,
.ast-article-post a.ast-read-more:hover {
    background: #b5933c;
    color: #fff;
}

/* ── Pagination ── */
.pagination .page-numbers.current {
    background: #C9A84C;
    color: #fff;
    border-color: #C9A84C;
}
/* ===== fin blog-custom.css v1.3.0 ===== */
