.homepage-auctions-items {
    position: relative;
    font-family: Barlow, Arial, Helvetica, sans-serif;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 20px;
    row-gap: 30px;
}

.homepage-auctions-items.hidden {
    display: none;
}

.homepage-auctions-items .homepage-auctions-item {
    max-width: 700px;
}

.homepage-auctions-items .homepage-auctions-item .section-top {
    border-radius: 5px;
    overflow: hidden;
}

.homepage-auctions-items .homepage-auctions-item .section-top .top-ai-image {
}

.homepage-auctions-items .homepage-auctions-item .section-top .top-ai-image img {
    object-fit: cover;
    height: 200px;
}

.homepage-auctions-items .homepage-auctions-item .section-top .top-ai-date-price {
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
}

.homepage-auctions-items .homepage-auctions-item .section-top .top-ai-section-label {
    font-size: 13px;
    font-weight: 500;
}

.homepage-auctions-items .homepage-auctions-item .section-top .top-ai-date-price > div {
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    padding: 10px;
    text-transform: uppercase;
}

.homepage-auctions-items .homepage-auctions-item .section-top .top-ai-date-price .top-ai-date {
    background-color: #000000;
}

.homepage-auctions-items .homepage-auctions-item .section-top .top-ai-date-price .top-ai-price {
    background-color: #d29237;
}

.homepage-auctions-items .homepage-auctions-item .section-bottom {
    color: #000000;
    padding: 20px 0;
    line-height: 20px;
}

.homepage-auctions-items .homepage-auctions-item .section-bottom .bottom-ai-type {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid #ccc;
    display: inline-block;
    border-radius: 5px;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.homepage-auctions-items .homepage-auctions-item .section-bottom .bottom-ai-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.homepage-auctions-items .homepage-auctions-item .section-bottom .bottom-ai-title a {
    text-decoration: none !important;
}

#shortcode-homepage-auctions .slick-slide {
    margin: 0 15px;
}

#shortcode-homepage-auctions .slick-list {
    margin: 0 -15px;
}

#shortcode-homepage-auctions .slick-arrow::before {
    content: '';
    width: 50px;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

#shortcode-homepage-auctions .slick-arrow.slick-prev {
    width: 50px;
    height: 50px;
    transform: rotate(90deg);
    left: -65px;
    top: 100px;
}

#shortcode-homepage-auctions .slick-arrow.slick-next {
    width: 50px;
    height: 50px;
    transform: rotate(-90deg);
    right: -65px;
    top: 100px;
}

#shortcode-homepage-auctions .slick-arrow.slick-prev::before,
#shortcode-homepage-auctions .slick-arrow.slick-next::before {
    color: #d29237;
}

@media screen and (min-width: 768px) {
    .homepage-auctions-items {
        grid-template-columns: 1fr 1fr;
    }

    .homepage-auctions-items .homepage-auctions-item .section-bottom {
        padding: 20px 20px;
    }
}

@media screen and (min-width: 1024px) {
    .homepage-auctions-items {
        grid-template-columns: 1fr 1fr 1fr;
    }
}