/* Global */
.article-excerpt, .article-content {
    font-size: 1.1rem;
}

.article-title {
    background: linear-gradient(135deg, #D0B134, #AB7D25);
    -webkit-background-clip: text;   /* Pour Safari et autres WebKit */
    background-clip: text;           /* Standard pour les autres navigateurs modernes */
    -webkit-text-fill-color: transparent;
}

/* Page des articles */
.article-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 95%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    padding: 20px;
    min-height: 100%;
    height: 100%;
    position: relative;
}

.article-image {
    height: 200px;
    width: auto;
}

.article-btn {
    width: fit-content;
    margin: 0 auto;
}

/* Page d'un article */
.blog-article-image {
    max-height: 400px;
    width: auto;
}

.article-blog-title {
    font-size: 1.9rem;
}

/* Boutons */
.btn-category {
    padding: 5px 10px;
    border: 2px solid #D0B134;
    border-radius: 25px;
    color: #D0B134;
    background: white;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    display: flex;
    justify-content: center;
    font-size: 12px;
}

.btn-category:hover {
    background: #D0B134;
    color: white;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .btn-category {
        font-size: 14px;
    }
}