.image-holder {
    position: relative;
    z-index: 100; 
    display: inline-block;
}

.image-holder > img {
    border-radius: var(--image-border-radius);
}

/* Rating pad */
.image-holder .image-text {
    background: var(--image-text-background);
    color: var(--image-text-color);
    border-radius: var(--image-border-radius);
    padding: 15px;
    max-width: 80%;
    height: auto;
    display: inline-block;
    position: absolute;
}

.image-holder .image-text .text {
    font-size: 14px;
    line-height: 1.33;
    font-weight: 400;
    display: inline-block;
}

.image-holder .image-text .title {
    color: var(--image-text-title-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    margin-bottom: 5px;
}

.image-holder .image-text .author {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    font-weight: 700;
    align-items: center;
    color: var(--image-text-title-color)
}

.image-holder .image-text .author .image {
    width: 40px;
    height: 40px;
}

.image-holder .image-text .author .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* positions */
.image-holder.top-right {
    padding-right: 30px;
    padding-top: 50px;
}

.image-holder.top-right .image-text  {
    top: 0;
    right: 0;
}

.image-holder.top-left {
    padding-left: 30px;
    padding-top: 50px;
}

.image-holder.top-left .image-text  {
    top: 0;
    left: 0;
}

.image-holder.bottom-right {
    padding-right: 30px;
    padding-bottom: 50px;
}

.image-holder.bottom-right .image-text  {
    bottom: 0;
    right: 0;
}

.image-holder.bottom-left {
    padding-left: 30px;
    padding-bottom: 50px;
}

.image-holder.bottom-left .image-text  {
    bottom: 0;
    left: 0;
}

/* secondary */

.section--secondary .image-holder .image-text {
    background: var(--image-text-background-on-secondary);
    color: var(--image-text-color-on-secondary);
}

.section--secondary .image-holder .image-text .title,
.section--secondary .image-holder .image-text .author {
    color: var(--image-text-title-color-on-secondary);
}

@media only screen and (max-width: 767px) {

    .image-holder .image-text {
        max-width: 95%;
    }

    .section .image-holder .image-text .author {
        display: none;
    }

    .image-holder .image-text-box {
        padding: 15px;
        font-size: 13px;
    }

    .image-holder .image-text-box .title {
        font-size: 15px;
    }
}