/* Conteneur principal */
.balade-express-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: Georgia, serif;
    line-height: 1.8;
    color: #333;
}

/* En-tête */
.balade-header {
    text-align: center;
    margin-bottom: 30px;
}

.balade-titre {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: normal;
}

.balade-auteur {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
}

/* Introduction */
.balade-introduction {
    text-align: justify;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Sections */
.balade-section {
    margin: 40px 0;
    clear: both;
    overflow: hidden;
}

.balade-image-left {
    float: left;
    margin: 0 30px 20px 0;
}

.balade-image-right {
    float: right;
    margin: 0 0 20px 30px;
}

.balade-image-none {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
}

.balade-image-container {
    max-width: 350px;
}

.balade-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.balade-texte {
    overflow: hidden;
    text-align: justify;
}

/* Signature */
.balade-signature {
    text-align: right;
    font-style: italic;
    margin-top: 40px;
    color: #666;
    font-size: 1.1rem;
}

/* Liens */
.balade-liens {
    margin-top: 40px;
    text-align: center;
    font-size: 1rem;
}

.balade-lien {
    color: #0073aa;
    text-decoration: none;
    margin: 0 5px;
}

.balade-lien:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .balade-image-left,
    .balade-image-right {
        float: none;
        margin: 0 0 20px 0;
        max-width: 100%;
    }
    .balade-image-container {
        max-width: 100%;
    }
    .balade-titre {
        font-size: 2rem;
    }
}