/*
Theme Name: Twenty Seventeen Child
Template: twentyseventeen
Version: 1.0
*/

/* ===== PAGE CATÉGORIE - LISTE DES ARTICLES ===== */

.archive h1.page-title {
    text-align: left;
    font-size: 1.8rem;
    color: #b5726a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #f0c4bb;
    letter-spacing: 0.05em;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.category-list li {
    background: #fff8f6;
    border: 1px solid #f0c4bb;
    border-left: 4px solid #c9877e;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(181, 114, 106, 0.15);
}

.category-list li a {
    display: block;
    padding: 1rem 1.4rem;
    color: #7a3d38;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
}

.category-list li a:hover {
    color: #c9877e;
}
