.accent-top {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.accent-bottom {
    bottom: -15%;
    left: -46%;
    position: absolute;
    z-index: -1;
}

/* utils */
.utils-button {
    background-color: var(--accent-lighten);
    color: var(--white);
    font-family: 'Source Sans Pro', sans-serif;
    font-style: normal;
    transition: all .4s linear;
}

/* Aside */
aside {
    background-color: var(--white);
    border: 3px solid #7dad3f;
    border-radius: 5px;
    bottom: 20%;
    box-sizing: border-box;
    position: sticky;
    top: 20%;
}

.aside-scroll {
    height: 325px;
    overflow-y: scroll;
    width: 100%;
}

.aside-link {
    width: max-content;
}

/* Section */
.image-container {
    background-color: var(--white);
    border: 5px solid var(--secondary);
    border-radius: 5px;
    padding: 0.625rem;
}

.header-image {
    height: 370px;
    object-fit: cover;
    width: 100%;
}

.header-button {
    font-weight: normal;
    font-size: 1.2rem;
}

.items-image {
    border: 4px solid var(--secondary);
    border-radius: 5px;
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.items-header {
    display: -webkit-box;
    height: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
}

.items-description {
    display: -webkit-box;
    height: 104px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp:4;
    -webkit-box-orient: vertical;
}

.items-button {
    font-weight: bold;
    font-size: 1.0625rem;
}

/* Pagination */
.pagination .page-link {
    border: 0;
}

.page-item.active .page-link {
    background-color: transparent;
    color: var(--primary);
}

.pagination-icon {
    background-color: var(--primary);
    border-radius: 50% !important;
    color: var(--white);
}

.page-link {
    transition: 0.3s linear;
}


@media only screen and (max-width: 997.92px) {

    /* Section */
    .items-header {
        height: 70px;
    }

    .accent-bottom {
        bottom: -15%;
        left: -9%;
    }

}

@media only screen and (max-width: 767.92px) {

    /* Section */
    .items-header {
        height: 57px;
    }

    .accent-bottom {
        bottom: -7%;
    }

}

@media (hover: hover) and (pointer: fine) {
    .utils-button:hover {
        background-color: var(--accent-main);
        color: var(--white);
        transition: all .4s linear;
    }

    .page-link:hover {
        background-color: var(--primary);
        color: var(--white);
        transition: 0.3s linear;
    }

}
