.lektor {
    transition: transform 0.3s ease;
    width: 120px;
    position: relative;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    padding: 16px;
    border-radius: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    text-decoration: none;
    color: var(--dark-blue);

    img {
        width: 100%;
        aspect-ratio: 3/4;
        object-fit: cover;
        border-radius: 0.5em;
    }

    .text {
        text-align: center;
        font-size: 0.9em;
    }

    .only-online {
        color: var(--green);
        background-color: white;
        opacity: 0.9;
        border-radius: 2px;
        padding: 1px 4px;
        position: absolute;
        top: 0;
        right: 0;
        transform: rotate(25deg);
    }
}

.i {
    position: absolute;
    bottom: 5;
    right: 5;
    border-radius: 50%;
    height: 25px;
    width: 25px !important;
}