/* Déclaration de la police si elle est stockée localement (Ajustez le chemin si nécessaire) */
@font-face {
    font-family: 'Akytson Hyperbolique';
    src: url('../fonts/Akytson-Hyperbolique.woff2') format('woff2'),
         url('../fonts/Akytson-Hyperbolique.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.featured-blog-posts {
    margin-top: 3rem;
}

/* Application de la typographie sur le titre principal de la section */
.featured-blog-posts .products-section-title {
    font-family: 'Akytson Hyperbolique', sans-serif;
    margin: 2rem auto;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    width: fit-content;
}

.featured-blog-posts .products-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4a574, transparent);
}

.blog-post-card {
    margin-bottom: 30px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.post-header{
    display: flex;
    flex-direction: column;
}

.blog-post-card .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-post-card .post-content {
    padding: 20px;
}

/* Style de la zone de date au-dessus du titre */
.blog-post-card .post-meta-top {
    margin-bottom: 6px;
}

.blog-post-card .post-date {
    font-size: 0.75rem; /* Rendu très petit */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999999;
}

/* Application de la typographie sur le titre de l'article */
.blog-post-card .post-title {
    font-family: 'Akytson Hyperbolique', sans-serif;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-post-card .post-title a {
    color: #232323;
    text-decoration: none;
}

.blog-post-card .post-title a:hover {
    color: #24b9d7;
}

.blog-post-card .post-short-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-post-card .read-more {
    font-weight: bold;
    text-decoration: underline;
    color: #232323;
    padding: 0;
}

.blog-post-card .read-more:hover {
    color: #24b9d7;
}