<!-- Nastavení zobrazení textu značek -->

<style>
.brand-page {
    max-width: 1200px;
    margin: 0 auto 35px;
    text-align: center;
}

.brand-page h1 {
    margin-bottom: 20px;
}

.brand-page__intro {
    max-width: 900px;
    margin: 0 auto 25px;
}

.brand-page__intro p,
.brand-page__content p {
    line-height: 1.7;
}

.brand-page__banner {
    margin: 25px auto;
    text-align: center;
}

.brand-page__banner img {
    display: block;
    width: 100%;
    max-width: 1600px;
    height: auto;
    margin: 0 auto;
    border-radius: 4px;
}

.brand-page__details {
    margin-top: 20px;
}

.brand-page__details summary {
    display: inline-block;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: #b64c4c;
    padding: 10px 20px;
    border: 1px solid #b64c4c;
    border-radius: 4px;
    transition: 0.2s ease;
}

.brand-page__details summary::-webkit-details-marker {
    display: none;
}

.brand-page__details summary:hover {
    color: #fff;
    background: #b64c4c;
}

.brand-page__show-less {
    display: none;
}

.brand-page__details[open] .brand-page__show-more {
    display: none;
}

.brand-page__details[open] .brand-page__show-less {
    display: inline;
}

.brand-page__content {
    max-width: 900px;
    margin: 30px auto 0;
}

.brand-page__content h2 {
    margin: 28px 0 10px;
    font-size: 20px;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .brand-page {
        margin-bottom: 25px;
    }

    .brand-page__intro,
    .brand-page__content {
        padding: 0 5px;
    }

    .brand-page__banner {
        margin: 20px auto;
    }

    .brand-page__content h2 {
        font-size: 18px;
    }
}

</style>
<!-- / Nastavení zobrazení textu značek -->
