.epk h1 {
    margin-bottom: 12px;
}

.epk h2 {
    text-align: center;
    font-size: 28px;
}

.epk p {
    font-size: 18px;
}

.epk a {
    color: #fff;
    text-decoration: none;
    transition: color var(--transition-time);
}

.epk a:hover {
    color: var(--dark-brand-color);
}

.epk img.band-photo {
    width: 45%;
    margin-bottom: 48px;
}

.epk .records-wrapper {
    display: flex;
    margin-bottom: 48px;
}

.epk .record-wrapper {
    display: flex;
    width: 100%;
}

.epk .record-image-wrapper {
    width: 50%;
    display: flex;
    align-items: start;
    justify-content: center;
}

.epk .record-image-anchor {
    width: 80%;
}

.epk img.record-image {
    width: 100%;
}

.epk .image-data-wrapper {
    width: 50%;
}

.epk .image-data-wrapper h3 {
    font-size: 20px;
    margin-top: 0;
}

.epk .record-track-list {
    list-style-type: lower-roman;
    font-size: 16px;
    padding: 1em;
}

@media (max-width: 1599px) {
    .epk .record-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .epk .record-image-wrapper {
        width: 100%;
    }

    .epk .image-data-wrapper {
        width: 100%;
    }

    .epk .image-data-wrapper h3 {
        text-align: center;
        margin-top: revert;
    }

    .epk .record-track-list {
        text-align: center;
        list-style-type: none;
        padding: 0;
    }
}

@media (max-width: 1279px) {
    .epk img.band-photo {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .epk img.band-photo {
        width: 100%;
    }

    .epk .records-wrapper {
        flex-direction: column;
    }

    .epk .record-wrapper {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2em;
    }

    .epk .record-image-wrapper {
        width: 50%;
    }
}


@media (max-width: 599px) {
    .epk .record-image-wrapper {
        width: 75%;
    }
}