       /* Reset de base */
       * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: Arial, Helvetica, sans-serif;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    /* En-tête */
    header {
        padding: 10px 0;
        /*border-bottom: 1px solid #e2e2e2;*/
    }
    
    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 10px;
    }
    
    .date {
        font-size: 14px;
        color: #666;
    }
    
    .logo {
/*            font-family: "Old English Text MT", "Times New Roman", serif;*/
        font-size: 42px;
        text-align: center;
        font-weight: bold;
        padding: 10px 0;
    }
    a img {
        margin-top:50px;
        align-items:center;
    }
    
    nav {
        border-top: 1px solid #e2e2e2;
        border-bottom: 0px solid #e2e2e2;
        padding: 10px 0;
    }
    
    nav ul {
        display: flex;
        list-style: none;
        justify-content: center;
        flex-wrap: wrap;
    }

    
    nav li {
        margin: 0 15px;
    }
    
    nav a {
        text-decoration: none;
        color: #000;
        font-size: 16px;
        font-weight: 500;
    }
    
    nav li:hover {
        background-color: lightgray;
    }
    
    /* Section principale */
    .main-container {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .main-story {
        grid-column: 1 / 9;
        padding-right: 20px;
        border-right: 1px solid #e2e2e2;
    }
    
    .sidebar {
        grid-column: 9 / 13;
    }
    
    /* Articles */
    .headline {
        /*font-family: "Times New Roman", Times, serif;*/
        font-size: 36px;
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .subheadline {
        font-size: 20px;
        font-weight: blod;
        color: #666;
        margin-bottom: 20px;
    }
    
    .byline {
        font-size: 14px;
        margin-bottom: 20px;
        color: #666;
    }
    
    
    .article-content p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .article-content div {
        border-bottom: 1px solid #e2e2e2;
    }
    
    
    .article-image {
		grid-column:9;
        width: 30%;
        height: auto;
        margin: 20px 0;
    }
    
    .image-caption {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
    }
    
    /* Sidebar articles */
    .sidebar-armoirie {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e2e2e2;
    }

    .sidebar-article {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e2e2e2;
    }

    .sidebar-article:hover {
        background-color: lightgray;
    }
    
    .sidebar-headline {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    .sidebar-subheadline {
        font-size: 16px;
        color: #666;
        margin-bottom: 10px;
    }

    /* Footer */
    footer {
        margin-top: 50px;
        padding: 30px 0;
        border-top: 1px solid #e2e2e2;
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .footer-links a {
        margin: 0 10px;
        color: #333;
        text-decoration: none;
    }
    
    .footer-links a:hover {
        text-decoration: underline;
    }
    
    .copyright {
        font-size: 14px;
        color: #666;
    }
    
    /* Media Queries */
    @media (max-width: 768px) {
        .main-container {
            grid-template-columns: 1fr;
        }
        
        .main-story, .sidebar {
            grid-column: 1;
            padding-right: 0;
            border-right: none;
        }
        
        .headline {
            font-size: 28px;
        }
        
        .logo {
            font-size: 36px;
        }
    }
