.showcase-area{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.showcase-area * {
    min-width: 0;
    min-height: 0;
}

.showcase-area > .arrow {
    height: calc(0.8750000000000001vw + 27.2px);
    width: calc(0.8750000000000001vw + 27.2px);
    text-align: center;
    border-style: none;
    border-radius: 50%;
    background-color: rgba(98, 98, 98, 0.8);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.showcase-area > .arrow:hover {
    transform: scale(1.2);
}

.showcase-area > .arrow i.fa {
    color: #fff;
    font-size: calc(17.6px + 0.75vw);
}

.showcase-content-list {
    width: 100%;
}

.showcase-content-list .slick-track {
    display: flex;
}

.showcase-content-list .slick-slide {
    display: flex;
    flex-direction: column;
    height: auto;
}

.showcase-content-item {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    margin: 10px;
    background-color: #f3f3f3;
    height: fit-content;
    text-decoration: none;
}

.showcase-content-item:hover {
    text-decoration: none;
}

.showcase-content-item .showcase-thumbnail {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
}

.showcase-content-item .showcase-thumbnail .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: box-shadow 0.2s ease-out;
    box-shadow: inset 0px -65px 60px 25px rgba(0, 0, 0, 0.6);
}

.showcase-content-item:hover .showcase-thumbnail .mask {
    box-shadow: inset 0px -40px 80px 65px rgba(0, 0, 0, 0.54);
}

.showcase-content-item .showcase-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-content-item .showcase-title-container {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 20px;
    width: 100%;
}

.showcase-content-item .showcase-title {
    color: #fff;
    font-size: calc(0.25vw + 17.2px);
    line-height: 1.2;
    font-weight: bold;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.showcase-content-item .showcase-author-info {
    flex: 1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-content-item .showcase-author-photo {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.showcase-content-item .showcase-author-profiles {
    flex: 1;
    color: #595959;
}

.showcase-content-item .showcase-author-profiles .showcase-author-name {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
}

.showcase-content-item .showcase-author-profiles .showcase-author-position {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: normal;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}