@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
body {
    --secondary-beige: #F2EBE3;
}

.page-ctn {
    color: #000;
}

.page-ctn p {
    font-size: 14px;
    text-align: justify;
}

.page-ctn h1, .page-ctn h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.page-ctn h1, .page-ctn h2, .page-ctn h3 {
    margin: 0;
    word-break: break-word;
}

.page-ctn h1 {
    font-size: 48px;
    padding-bottom: 25px !important;
}

.page-ctn h2 {
    font-size: 36px;
    padding-bottom: 0;
    color: #d3bca1;
}

.page-ctn h3 {
    font-size: 18px;
    font-weight: bold;
    padding: 0 0 10px;
}

.page-ctn .panel-group h1 {
    padding-right: 45px;
}

.page-bloc {
    margin: 0;
    padding: 25px 40px;
}

.page-bloc ul li span {
    font-size: 14px;
}

.page-basic {
    background: transparent;
}

.page-basic--secondary {
    background-color: var(--secondary-beige);
}

.page-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page-cards__card {
    color: #000;
    display: flex;
    flex-direction: column;
    margin: 10px;
    max-width: 360px;
    overflow: hidden;
}

.page-cards__card img {
    display: block;
    height: auto;
    max-height: 191px;
    max-width: 450px;
    object-fit: cover;
    width: 360px;
}

.page-cards__card:hover h3 {
    text-decoration: underline;
}

.page-lists-appellations {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}

.page-lists-appellations ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-lists-appellations ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}

.page-bloc a:hover {
    text-decoration: underline !important;
}

.page-split {
    display: flex;
}

.page-split div:first-child {
    margin-right: 15px;
}

.page-split div:last-child {
    margin-left: 15px;
}

.page-split__text {
    width: 60%;
}

.page-split__img {
    width: 40%;
}

.page-split img {
    object-fit: cover;
    width: 100%;
}

@media screen and (max-width: 845px) {
    .page-split {
        flex-wrap: wrap;
    }
    .page-split div {
        margin: 0 !important;
        width: 100%;
    }
    .page-split__text {
        order: 2;
    }
    .page-split__img {
        order: 1;
    }
    .page-split img {
        max-height: 350px;
    }
    .page-ctn h1 {
        font-size: 28px;
    }
    .page-ctn h2 {
        font-size: 26px;
    }
    .page-ctn h3 {
        font-size: 16px;
    }
    .page-bloc {
        padding: 15px;
    }
}