.at-gt {
    position: relative;
    --rowHeight: clamp(15vw, 15em, 20vh);
}

.at-gt:hover {
    z-index: +1
}

.at-gt__link {
    display: block;
    height: var(--rowHeight);
}

.at-gt__link::after {
    content: attr(title);
    position: absolute;
    display: table;
    padding: .5em;
    font-size: var(--small-font-size);
    line-height: 1.2;
    color: transparent;
    bottom: 0;
}

.at-gt__link:hover:after {
    color: var(--color-black);
    background: #fff;
}

.at-gt__image {
    display: block;
    border-width: .5px;
    border-color: #ffffff00 #00000059 #a3a3a3 #00000036;
    border-style: inset;
    border-radius: 2px;
}