.entry-point-card-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
}

.entry-point-card-container:after {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.0001) 49.88%,
        rgba(0, 0, 0, 0.9) 100%
    );
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 16px;
    content: "";
}

.visible {
    visibility: visible;
}

.entry-point-card-container {
    cursor: pointer;
    position: relative;
    margin: 24px 24px 0 24px;
    width: 240px;
    height: 400px;
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    transition: opacity 0.33s, transform 0.33s, visibility 0.33s;
}

.entry-point-card-container:hover {
    transform: scale(1.1);
}

.entry-point-card-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.background-cards {
    display: flex;
    align-items: center;
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transition: transform 0.2s;
    transform: translate3d(0px, 0px, 0px);
}

.entry-point-card-container:hover .background-cards {
    transform: translate3d(24px, 0px, 0px);
    z-index: 1000;
}

.background-card-1 {
    background: #000000;
    margin: 0px 2px;
    width: 10px;
    height: 368px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.background-card-2 {
    background: #4d4d4d;
    width: 10px;
    height: 336px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.author-container {
    position: absolute;
    display: flex;
    align-items: center;
    top: 24px;
    left: 24px;
}

.card-headline-container {
    position: absolute;
    bottom: 2px;
    text-align: left;
    padding: 24px;
    z-index: 1;
}

.entry-point-card-headline {
    color: #fff;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 26px;
}

.entry-point-card-subtitle {
    color: #fff;
    font-weight: 700;
    font-family: "Noto Sans", sans-serif;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    position: relative;
    margin-right: 10px;
}

.logo-ring {
    width: 46px;
    height: 46px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220' width='100%25' height='100%25' preserveAspectRatio='none'><defs><linearGradient id='gradient'><stop offset='0' style='stop-color:%232BAC95' /><stop offset='1' style='stop-color:%236EB6F9' /></linearGradient></defs><ellipse ry='100' rx='100' cy='110' cx='110' style='fill:none;stroke:url(%23gradient);stroke-width:6;' /></svg>");
    border-radius: 100%;
    position: absolute;
}

.entry-point-card-logo {
    border-radius: 100%;
    width: 38px;
    height: 38px;
    filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.25));
}

/* Mobile CSS rules here*/
@media only screen and (hover: none) and (pointer: coarse) {
    .entry-point-card-container {
        width: 180px;
        height: 300px;
    }

    .entry-point-card-container.hidden {
        transform: scale(1.2);
    }

    .author-container {
        top: 16px;
        left: 16px;
    }

    .logo-container,
    .entry-point-card-logo {
        width: 20px;
        height: 20px;
    }

    .logo-ring {
        width: 26px;
        height: 26px;
    }

    .entry-point-card-subtitle {
        font-size: 10px;
        line-height: 14px;
    }

    .entry-point-card-headline {
        font-size: 18px;
        line-height: 20px;
    }

    .card-headline-container {
        padding: 16px;
    }

    .background-cards {
        display: none;
    }
}
