/* CHARTE GRAPHIQUE & VARIABLES */
:root {
    --rouge: #DA291C;
    --noir: #000000;
    --blanc: #FFFFFF;
    --jaune: #FBE122;
    --gris-clair: #E6E6E6;
    --gris-texte: #666666;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--noir);
    background-color: var(--blanc);
    font-size: 18px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHIE */
h1 {
    font-size: clamp(48px, 8vw, 60px);
    font-weight: bold;
    color: var(--rouge);
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(32px, 5vw, 40px);
    font-weight: bold;
    color: var(--noir);
    margin-bottom: 15px;
}

h3 {
    font-size: clamp(24px, 4vw, 28px);
    font-weight: bold;
    color: var(--rouge);
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    font-weight: bold;
    color: var(--noir);
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--noir);
}

.caption {
    font-size: 14px;
    font-style: italic;
    color: var(--gris-texte);
    margin-top: 5px;
}

/* HEADER */
header {
    border-bottom: 4px solid var(--rouge);
}

.top-bar {
    background-color: var(--noir);
    color: var(--blanc);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area {
    padding: 30px 0;
    text-align: center;
}

.logo {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--noir);
}

.logo span {
    color: var(--rouge);
}

nav {
    background-color: var(--blanc);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

nav ul li a {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
}

nav ul li a:hover {
    color: var(--rouge);
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--gris-clair);
    padding: 5px 10px;
    border-radius: 20px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 5px;
}

/* HERO SECTION */
.hero {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
}

.hero-main {
    position: relative;
}

.badge {
    background-color: var(--rouge);
    color: var(--blanc);
    padding: 5px 15px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: var(--gris-clair);
    margin-bottom: 20px;
}

/* GRILLE D'ACTUALITÉS */
.news-grid-section {
    padding: 60px 0;
}

.section-title {
    border-left: 10px solid var(--rouge);
    padding-left: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    border-bottom: 1px solid var(--gris-clair);
    padding-bottom: 20px;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--gris-clair);
    margin-bottom: 15px;
}

/* ARTICLE DE DÉMONSTRATION */
.article-layout {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 50px;
    padding: 40px 0;
}

@media (max-width: 992px) {
    .article-layout { grid-template-columns: 1fr; }
}

.article-content img {
    margin: 30px 0 10px 0;
    width: 100%;
}

.meta-info {
    font-size: 14px;
    color: var(--gris-texte);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gris-clair);
    padding-bottom: 10px;
}

/* SIDEBAR / NEWSLETTER */
.sidebar {
    background-color: var(--gris-clair);
    padding: 30px;
    height: fit-content;
}

.newsletter-box h3 {
    color: var(--noir);
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--rouge);
    color: var(--blanc);
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.newsletter-form button:hover {
    background-color: var(--noir);
}

/* COMMENTAIRES */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--noir);
}

.comment-form {
    margin-bottom: 40px;
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid var(--gris-clair);
    min-height: 100px;
}

.comment-list .comment {
    background: #f4f4f4;
    padding: 20px;
    margin-bottom: 15px;
}

.comment-author {
    font-weight: bold;
    color: var(--rouge);
}

/* FOOTER */
footer {
    background-color: var(--noir);
    color: var(--blanc);
    padding: 60px 0 20px 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo span { color: var(--rouge); }

.footer-links h4 {
    color: var(--jaune);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--rouge);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
}

/* UTILS */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* SECTION D'ACCUEIL AJOUTÉE */
.section {
    padding: 40px 20px;
    text-align: center;
}/* CHARTE GRAPHIQUE & VARIABLES */
:root {
    --rouge: #DA291C;
    --noir: #000000;
    --blanc: #FFFFFF;
    --jaune: #FBE122;
    --gris-clair: #E6E6E6;
    --gris-texte: #666666;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--noir);
    background-color: var(--blanc);
    font-size: 18px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHIE */
h1 {
    font-size: clamp(48px, 8vw, 60px);
    font-weight: bold;
    color: var(--rouge);
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(32px, 5vw, 40px);
    font-weight: bold;
    color: var(--noir);
    margin-bottom: 15px;
}

h3 {
    font-size: clamp(24px, 4vw, 28px);
    font-weight: bold;
    color: var(--rouge);
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    font-weight: bold;
    color: var(--noir);
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--noir);
}

.caption {
    font-size: 14px;
    font-style: italic;
    color: var(--gris-texte);
    margin-top: 5px;
}

/* HEADER */
header {
    border-bottom: 4px solid var(--rouge);
}

.top-bar {
    background-color: var(--noir);
    color: var(--blanc);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area {
    padding: 30px 0;
    text-align: center;
}

.logo {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--noir);
}

.logo span {
    color: var(--rouge);
}

nav {
    background-color: var(--blanc);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

nav ul li a {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
}

nav ul li a:hover {
    color: var(--rouge);
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--gris-clair);
    padding: 5px 10px;
    border-radius: 20px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 5px;
}

/* HERO SECTION */
.hero {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
}

.hero-main {
    position: relative;
}

.badge {
    background-color: var(--rouge);
    color: var(--blanc);
    padding: 5px 15px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: var(--gris-clair);
    margin-bottom: 20px;
}

/* GRILLE D'ACTUALITÉS */
.news-grid-section {
    padding: 60px 0;
}

.section-title {
    border-left: 10px solid var(--rouge);
    padding-left: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    border-bottom: 1px solid var(--gris-clair);
    padding-bottom: 20px;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--gris-clair);
    margin-bottom: 15px;
}

/* ARTICLE DE DÉMONSTRATION */
.article-layout {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 50px;
    padding: 40px 0;
}

@media (max-width: 992px) {
    .article-layout { grid-template-columns: 1fr; }
}

.article-content img {
    margin: 30px 0 10px 0;
    width: 100%;
}

.meta-info {
    font-size: 14px;
    color: var(--gris-texte);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gris-clair);
    padding-bottom: 10px;
}

/* SIDEBAR / NEWSLETTER */
.sidebar {
    background-color: var(--gris-clair);
    padding: 30px;
    height: fit-content;
}

.newsletter-box h3 {
    color: var(--noir);
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--rouge);
    color: var(--blanc);
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.newsletter-form button:hover {
    background-color: var(--noir);
}

/* COMMENTAIRES */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--noir);
}

.comment-form {
    margin-bottom: 40px;
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid var(--gris-clair);
    min-height: 100px;
}

.comment-list .comment {
    background: #f4f4f4;
    padding: 20px;
    margin-bottom: 15px;
}

.comment-author {
    font-weight: bold;
    color: var(--rouge);
}

/* FOOTER */
footer {
    background-color: var(--noir);
    color: var(--blanc);
    padding: 60px 0 20px 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo span { color: var(--rouge); }

.footer-links h4 {
    color: var(--jaune);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--rouge);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
}

/* UTILS */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* SECTION D'ACCUEIL AJOUTÉE */
.section {
    padding: 40px 20px;
    text-align: center;
}/* CHARTE GRAPHIQUE & VARIABLES */
:root {
    --rouge: #DA291C;
    --noir: #000000;
    --blanc: #FFFFFF;
    --jaune: #FBE122;
    --gris-clair: #E6E6E6;
    --gris-texte: #666666;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--noir);
    background-color: var(--blanc);
    font-size: 18px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHIE */
h1 {
    font-size: clamp(48px, 8vw, 60px);
    font-weight: bold;
    color: var(--rouge);
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(32px, 5vw, 40px);
    font-weight: bold;
    color: var(--noir);
    margin-bottom: 15px;
}

h3 {
    font-size: clamp(24px, 4vw, 28px);
    font-weight: bold;
    color: var(--rouge);
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    font-weight: bold;
    color: var(--noir);
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--noir);
}

.caption {
    font-size: 14px;
    font-style: italic;
    color: var(--gris-texte);
    margin-top: 5px;
}

/* HEADER */
header {
    border-bottom: 4px solid var(--rouge);
}

.top-bar {
    background-color: var(--noir);
    color: var(--blanc);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area {
    padding: 30px 0;
    text-align: center;
}

.logo {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--noir);
}

.logo span {
    color: var(--rouge);
}

nav {
    background-color: var(--blanc);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

nav ul li a {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
}

nav ul li a:hover {
    color: var(--rouge);
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--gris-clair);
    padding: 5px 10px;
    border-radius: 20px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 5px;
}

/* HERO SECTION */
.hero {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
}

.hero-main {
    position: relative;
}

.badge {
    background-color: var(--rouge);
    color: var(--blanc);
    padding: 5px 15px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: var(--gris-clair);
    margin-bottom: 20px;
}

/* GRILLE D'ACTUALITÉS */
.news-grid-section {
    padding: 60px 0;
}

.section-title {
    border-left: 10px solid var(--rouge);
    padding-left: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    border-bottom: 1px solid var(--gris-clair);
    padding-bottom: 20px;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--gris-clair);
    margin-bottom: 15px;
}

/* ARTICLE DE DÉMONSTRATION */
.article-layout {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 50px;
    padding: 40px 0;
}

@media (max-width: 992px) {
    .article-layout { grid-template-columns: 1fr; }
}

.article-content img {
    margin: 30px 0 10px 0;
    width: 100%;
}

.meta-info {
    font-size: 14px;
    color: var(--gris-texte);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gris-clair);
    padding-bottom: 10px;
}

/* SIDEBAR / NEWSLETTER */
.sidebar {
    background-color: var(--gris-clair);
    padding: 30px;
    height: fit-content;
}

.newsletter-box h3 {
    color: var(--noir);
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--rouge);
    color: var(--blanc);
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.newsletter-form button:hover {
    background-color: var(--noir);
}

/* COMMENTAIRES */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--noir);
}

.comment-form {
    margin-bottom: 40px;
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid var(--gris-clair);
    min-height: 100px;
}

.comment-list .comment {
    background: #f4f4f4;
    padding: 20px;
    margin-bottom: 15px;
}

.comment-author {
    font-weight: bold;
    color: var(--rouge);
}

/* FOOTER */
footer {
    background-color: var(--noir);
    color: var(--blanc);
    padding: 60px 0 20px 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo span { color: var(--rouge); }

.footer-links h4 {
    color: var(--jaune);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--rouge);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
}

/* UTILS */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* SECTION D'ACCUEIL AJOUTÉE */
.section {
    padding: 40px 20px;
    text-align: center;
}/* CHARTE GRAPHIQUE & VARIABLES */
:root {
    --rouge: #DA291C;
    --noir: #000000;
    --blanc: #FFFFFF;
    --jaune: #FBE122;
    --gris-clair: #E6E6E6;
    --gris-texte: #666666;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--noir);
    background-color: var(--blanc);
    font-size: 18px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHIE */
h1 {
    font-size: clamp(48px, 8vw, 60px);
    font-weight: bold;
    color: var(--rouge);
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(32px, 5vw, 40px);
    font-weight: bold;
    color: var(--noir);
    margin-bottom: 15px;
}

h3 {
    font-size: clamp(24px, 4vw, 28px);
    font-weight: bold;
    color: var(--rouge);
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    font-weight: bold;
    color: var(--noir);
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--noir);
}

.caption {
    font-size: 14px;
    font-style: italic;
    color: var(--gris-texte);
    margin-top: 5px;
}

/* HEADER */
header {
    border-bottom: 4px solid var(--rouge);
}

.top-bar {
    background-color: var(--noir);
    color: var(--blanc);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area {
    padding: 30px 0;
    text-align: center;
}

.logo {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--noir);
}

.logo span {
    color: var(--rouge);
}

nav {
    background-color: var(--blanc);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

nav ul li a {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
}

nav ul li a:hover {
    color: var(--rouge);
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--gris-clair);
    padding: 5px 10px;
    border-radius: 20px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 5px;
}

/* HERO SECTION */
.hero {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
}

.hero-main {
    position: relative;
}

.badge {
    background-color: var(--rouge);
    color: var(--blanc);
    padding: 5px 15px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: var(--gris-clair);
    margin-bottom: 20px;
}

/* GRILLE D'ACTUALITÉS */
.news-grid-section {
    padding: 60px 0;
}

.section-title {
    border-left: 10px solid var(--rouge);
    padding-left: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    border-bottom: 1px solid var(--gris-clair);
    padding-bottom: 20px;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--gris-clair);
    margin-bottom: 15px;
}

/* ARTICLE DE DÉMONSTRATION */
.article-layout {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 50px;
    padding: 40px 0;
}

@media (max-width: 992px) {
    .article-layout { grid-template-columns: 1fr; }
}

.article-content img {
    margin: 30px 0 10px 0;
    width: 100%;
}

.meta-info {
    font-size: 14px;
    color: var(--gris-texte);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gris-clair);
    padding-bottom: 10px;
}

/* SIDEBAR / NEWSLETTER */
.sidebar {
    background-color: var(--gris-clair);
    padding: 30px;
    height: fit-content;
}

.newsletter-box h3 {
    color: var(--noir);
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--rouge);
    color: var(--blanc);
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.newsletter-form button:hover {
    background-color: var(--noir);
}

/* COMMENTAIRES */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--noir);
}

.comment-form {
    margin-bottom: 40px;
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid var(--gris-clair);
    min-height: 100px;
}

.comment-list .comment {
    background: #f4f4f4;
    padding: 20px;
    margin-bottom: 15px;
}

.comment-author {
    font-weight: bold;
    color: var(--rouge);
}

/* FOOTER */
footer {
    background-color: var(--noir);
    color: var(--blanc);
    padding: 60px 0 20px 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo span { color: var(--rouge); }

.footer-links h4 {
    color: var(--jaune);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--rouge);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
}

/* UTILS */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* SECTION D'ACCUEIL AJOUTÉE */
.section {
    padding: 40px 20px;
    text-align: center;
}