.detail-actualite {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0 80px;
}

.detail-actualite h1 {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

.detail-image {
    text-align: center;
    margin-bottom: 20px;
}

.detail-actualite .detail-date {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.detail-author {
    margin-top: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: gray;
}

.detail-image img {
    width: 100%;
	max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.detail-content p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .detail-actualite {
        max-width: 700px;
        padding: 40px 20px 60px;
    }

    .detail-actualite h1 {
        font-size: 24px;
    }
}

/* Tablet small - 768px */
@media (max-width: 768px) {
    .detail-actualite {
        max-width: 100%;
        padding: 30px 15px 50px;
    }

    .detail-actualite h1 {
        font-size: 22px;
    }

    .detail-content p {
        font-size: 15px;
    }

    .detail-image img {
        max-height: 350px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .detail-actualite {
        padding: 20px 10px 40px;
    }

    .detail-actualite h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .detail-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .detail-image img {
        max-height: 250px;
        border-radius: 8px;
    }

    .detail-meta {
        margin-bottom: 20px;
    }

    .back-link {
        margin-top: 20px;
    }
}
