.best-paper-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.best-paper-item iframe {
    width: 100%;
    max-width: 1000px;
    height: auto;
    aspect-ratio: 1000 / 1200;
}

.best-paper-description {
    padding: 1rem;
    text-align: center;
}

.best-paper-description h2 {
    margin-bottom: 1rem;
}

.best-paper-description p {
    margin-top: 0;
}

.best-papers {
    background-color:white;
    padding-bottom: 2rem;
}

.best-papers-title {
    text-align: center;
}

.best-papers-title h1 {
    margin-bottom: 0;
}

.best-papers-carousel {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-initialized .slick-slide {
    display: flex;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1c1c1c;
    border: 2px solid #e7e7e7;
    color: #e7e7e7;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 24px;
    font-family: 'Didact Gothic', sans-serif;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #e7e7e7;
    color: #1c1c1c;
}

.slick-prev:focus,
.slick-next:focus {
    outline-offset: 2px;
}

.slick-disabled {
    opacity: 0.5;
    cursor: default;
}

/* Responsive iframes */
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width: 950px) {
    .best-paper-item iframe {
        max-width: 100%;
    }

    .slick-prev,
    .slick-next {
        top: 6rem;
    }

    .best-paper-description {
        width: 80%;
    }
}

@media only screen and (max-width: 720px) {
    .best-paper-item iframe {
        max-width: 100%;
        aspect-ratio: 1000 / 1200;
    }
}

@media only screen and (max-width: 500px) {
    .best-paper-item iframe {
        max-width: 100%;
        aspect-ratio: 1000 / 1200;
    }

    .best-paper-description p {
        display: none;
    }

    .best-paper-description h6 {
        height: 100vh !important;
        overflow: auto;
    }

    .slick-prev,
    .slick-next {
        top: 4rem;
    }
}

