.real {
    padding: var(--section-space);
}

.real__item {
    position: relative;
    max-width: 100%;
}

.real__item:hover .real__item__overlay {
    transform: scale(1);
}

.real__item:hover .real__item__image {
    filter: blur(7px);
}

.real__list {
    padding: 40px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.real__item__image {
    width: 100%;
    max-width: 600px;
    transition: all 0.7s ease-out;
    transition-delay: 0.2s;
}

.real__item__overlay {
    z-index: 9999;
    display: flex;
    text-align: center;
    margin-top: auto;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-hsl);
    overflow: hidden;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: .6s ease-out;
}

.real__item__overlay__text {
    padding: 30px;
    color: var(--white);
    font-size: 20px;
    font-weight: var(--weight-3);
    text-shadow: 1px 1px black;
}

#real_viewport_info {
    display: none;
    padding: 15px 0;
    font-style: italic;
    font-size: 0.88rem
}

@media screen and (max-width: 950px) {
    #real_viewport_info {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .real__item__overlay__text {
        font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    .real__item__overlay__text {
        font-size: 14px;
    }
}

@media screen and (max-width: 400px) {
    .real__item__overlay__text {
        font-size: 11px;
    }
}

@media screen and (max-width: 360px) {
    .real__item__overlay__text {
        font-size: 8px;
    }
}