.ik-image-tile {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
}

.ik-image-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.219);
    z-index: 1;
}

.ik-image-tile--rounded {
    border-radius: 12px;
}

.ik-image-tile--rounded::before {
    border-radius: 12px;
}

.ik-image-tile--gradient::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.404) 0%, rgba(0, 0, 0, 0.39) 60%, var(--primary-color) 200%);
}

.ik-image-tile > * {
    position: relative;
    z-index: 2;
}

.ik-image-tile__text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 3;
    padding: 18px 30px;
}

.ik-image-tile__pre-title {
    font-size: 15px;
    font-weight: 400;
    line-height: 20.43px;
    text-align: left;
}

.ik-app--mobile .ik-image-tile__pre-title {
    font-size: 12px;
}

.ik-image-tile__pre-title--side {
    font-size: 15px;
    font-weight: 400;
    line-height: 20.43px;
    text-align: right;
    transform: translateY(40px);
}

.ik-image-tile__title {
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: left;
    word-break: break-word;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 36px;
}

.ik-app--mobile .ik-image-tile__title {
    font-size: 28px;
}

.ik-image-tile__description {
    font-weight: 400;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    height: 40px;
}

.ik-app--mobile .ik-image-tile__description {
    font-size: 12px;
    height: 36px;
}

.ik-image-tile__link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}