/* ==== hero ==== */
    
.hero__image {
    background-image: url(../images/about/top-banner-piano.png);
    background-position: left;
}

/* ==== about ==== */

.about__title {
    margin-top: 42px;
    border-bottom: 2px #006072 solid;
    font: 600 36px Quicksand, sans-serif;
}
.about__content {
    display: flex;
    gap: 36px;
    padding: 38px 0 100px 18px;
}
.about__text {
    margin-bottom: 18px;
}
.about__text--last-line {
    font: var(--h3);
}
.about__text span {
    color: var(--app-teal);
}
.about__text span:hover {
    text-decoration: underline;
}

/* ==== info ==== */

.about__info {
    width: 313px;
    flex: none;
}
.about__info-contact-details p,
.about__info h3,
.about__info-contact-details h5 {
    padding-left: 21px;
}
.about__info-committee li,
.about__info-committee p {
    margin-left: 41px;
}
.about__info span {
    font: var(--h4);
}
.about__info-header {
    padding-top: 12px;
    padding-bottom: 11px;
    margin-bottom: 10px;
    border-top: 1px var(--app-teal) solid;
    border-bottom: 1px var(--app-teal) solid;
    color: var(--app-teal);
}
.about__info-charity {
    /* margin-top: 10px; */
    margin-bottom: 8px;
}

/* ==== history ==== */

.history {
    width: 100%;
    margin-bottom: 44px;
}
.history button {
    width: 100%;
    margin-bottom: 18px;
    font: 600 36px Quicksand, sans-serif;
    color: var(--app-teal);
    border: none;
    cursor: pointer;
    position: relative;
    text-align: start;
    background-color: var(--app-background);
}
.history button::after {
    content: '+';
    width: 40px;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 10px;
}
.history button.expanded::after {
    content: '-';
    font-size: 40px;
}
.history__title {
    text-decoration: none;
    color: black;
    position: relative;
    margin-bottom: 35px;
    border-bottom: 2px #006072 solid;
    font: 600 36px Quicksand, sans-serif;
    cursor: pointer;
}
.history .year {
    margin-bottom: 10px;
    margin-left: 16px;
}
.history li {
    margin-left: 42px;
    margin-bottom: 20px;
}
.history span {
    font: var(--h4);
}

/* ==== tablets ==== */

@media(max-width: 1024px) {
    .about__title {
        margin-top: 25px;
    }
    .about__content {
        display: block;
    }
    .about__info {
        width: 100%;
        display: flex;
        gap: 26px;
    }
    .about__info-contact-details,
    .about__info-committee {
        flex: 1 50%;
    }
    .about__info span {
        font-size: 16px;
    }
}

/* ==== phones ==== */

@media(max-width: 640px) {
    .hero {
        display: none;
    }
    .about__title {
        margin-top: 18px;
    }
    .about__title,
    .history__title {
        font-size: 24px;
    }
    .about__info {
        display: block;
    }
}