.brochures-page .top-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    min-height: 15rem;
    padding: var(--wp--custom--spacing--plus-2) 0 var(--wp--custom--spacing--plus-4);
    border-bottom: 1px solid var(--wp--preset--color--grey-tint-4);
}

.brochures-page .top-content .image {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 55%;
    height: 100%;
}

.brochures-page .top-content .image img {
    height: 100%;
    object-fit: contain;
}

.brochures-page .top-content .subtitle {
    margin-bottom: var(--wp--custom--spacing--plus-2);
    color: var(--wp--preset--color--light-blue);
}

.brochures-page .top-content .subtitle a {
    color: var(--wp--preset--color--light-blue);
}

.brochures-page .top-content .text {
    max-width: 50rem;
    font-size: var(--wp--preset--font-size--plus-1);
}

.brochures-page .top-content h1 {
    font-size: var(--wp--preset--font-size--plus-2);
}

.brochures-page .list {
    padding-bottom: 60px;
    margin-top: var(--wp--custom--spacing--plus-4);
}

.brochures-page .list ul {
    display: flex;
    flex-direction: column;
    gap: var(--wp--custom--spacing--plus-2);
    list-style: none;
}

.brochures-page .list ul li {
    position: relative;
    background-color: var(--wp--preset--color--grey-tint-2);
}

.brochures-page .list ul li .top {
    min-height: 1em;
    padding: .5em;
    background-color: var(--wp--preset--color--grey-tint-4);
}

.brochures-page .list ul li .content {
    position: relative;
    width: 100%;
    max-width: none;
    padding: 1em 3.5em 1em .5em;
    margin-left: auto;
    margin-right: auto;
}

.brochures-page .list ul li .content .title {
    text-decoration: none;
}

.brochures-page .list ul li .content .title:hover {
    opacity: .75;
}

.brochures-page .list ul li .content h3 {
    padding-right: 3rem;
    margin-bottom: 1em;
    font-size: var(--wp--preset--font-size--plus-1);
    color: var(--wp--preset--color--dark-blue);
}

.brochures-page .list ul li .content .text {
    max-width: 60rem;
    padding-right: 3rem;
}

.brochures-page .list ul li .content .more-btn {
    display: block;
    margin-top: var(--wp--custom--spacing--base);
    color: var(--wp--preset--color--orange);
}

.brochures-page .list ul li .pdf {
    position: absolute;
    bottom: 1em;
    right: .5em;
    display: block;
    height: 2em;
    width: 2em;
    color: var(--wp--preset--color--dark-grey);
}

.brochures-page .list ul li .pdf a {
    color: var(--wp--preset--color--dark-grey);
}

.brochures-page .pagination {
    display: flex;
    align-items: center;
    gap: .5em;
    padding-bottom: var(--wp--custom--spacing--plus-2);
}

.brochures-page .pagination span {
    position: relative;
    display: block;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 9999em;
    text-decoration: none;
    transition: background .2s;
    background: var(--wp--preset--color--light-green);
    color: var(--wp--preset--color--white);
}

.brochures-page .pagination span a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 9999em;
    text-decoration: none;
    color: #fff;
}

.brochures-page .pagination .switch-btn {
    display: flex;
    gap: .5em;
    margin-left: auto;
}

.pagination .switch-btn span:first-child::after,
.brochures-page .pagination .switch-btn span:last-child::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 1em;
    height: 1em;
    margin-left: auto;
    transform: translate(-45%, -50%) scaleX(1);
    background-image: url('../images/download.svg');
}

.brochures-page .pagination .switch-btn span:first-child::after {
    transform: translate(-45%, -50%) scaleX(1) rotate(180deg);
}