.titres-pouilles {
    text-align: center;
    margin: 3rem 0 2rem 0;
    position: relative;
}

.titres-pouilles::before {
    content: "";
    width: 160px;
    height: 2px;
    background-color: var(--champagne);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -1.5rem;
    border-radius: 2px;
}

.titres-pouilles h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    letter-spacing: 2px;
    color: var(--rouge-profond);
    margin-bottom: 0.5rem;
}

.titres-pouilles h2 {
    font-family: "Lora", serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 0.5rem;
    color: var(--rouge-profond);
}

.text {
    max-width: 850px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: justify;
    position: relative;
}

.text:last-of-type::after {
    content: "❧";
    display: block;
    text-align: center;
    font-size: 2rem;
    color: var(--champagne);
    margin-top: 2rem;
}

.container-pouilles {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 3rem;
    position: relative;
    margin-top: 4rem;
}

.text + section .container-pouilles::before {
    content: "❧";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3rem;
    font-size: 2rem;
    color: var(--champagne);
}

.container-pouilles::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2rem;
    width: 180px;
    height: 2px;
    background-color: var(--champagne);
    border-radius: 2px;
}

.card-pouilles {
    text-align: center;
    flex: 1 1 300px;
}

.card-pouilles h3 {
    margin-bottom: 0.625rem;
    font-size: 1rem;
}

.card-pouilles img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
}

.img-end {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 30px;
    display: block;
    margin: 2rem auto;
}

.text + div::after {
    content: "";
    display: block;
    width: 180px;
    height: 2px;
    background-color: var(--champagne);
    border-radius: 2px;
    margin: 2rem auto 0 auto;
}

.text + div::before {
    content: "❧";
    display: block;
    text-align: center;
    font-size: 2rem;
    color: var(--champagne);
    margin: 2rem auto;
}

.text ul {
    list-style: none;
    padding-left: 0;
    margin: 2rem auto;
    max-width: 850px;
}

.text ul li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.8rem;
    text-align: justify;
    line-height: 1.6;
}

.text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    color: var(--champagne);
}

.incontournables-titre {
    font-family: "Great Vibes", cursive;
    font-size: 2.4rem;
    color: var(--rouge-profond);
    text-align: center;
    margin: 1rem 0 0.5rem 0;
}


@media screen and (max-width: 768px) {
    .titres-pouilles {
        text-align: center;
        margin-left: 0;
    }

    .titres-pouilles h1 {
        font-size: 2rem;
    }

    .titres-pouilles h2 {
        font-size: 1rem;
        padding-left: 0;
    }

    .card-pouilles img {
        height: auto;
    }

    .text {
        width: 100%;
        font-size: 1rem;
        line-height: 1.6;
    }

    .img-end {
        width: 100%;
        height: auto;
    }
}

.defi {
    font-weight: bold;
    color: var(--rouge-profond);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Lora", serif;
  color: var(--rouge-profond);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.link:hover {
  color: var(--champagne);
  transform: translateY(-1px);
}