.smartpageThumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding-bottom: 30px;
    text-decoration: none !important;
}
    .smartpageThumbnail > div {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding-bottom: 56.25%;
    }
        .smartpageThumbnail img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            transition: transform .5s;
        }
        .smartpageThumbnail:hover img {
            transform: scale(1.1);
        }
    .smartpageThumbnail span {
        display: block;
        text-align: left;
        font-family: "FontFaceBold", sans-serif;
        font-size: 20px;
        line-height: 1.2;
        padding: 20px 20px 10px 20px;
        flex-basis: 100%;
    }
    .smartpageThumbnail:not([target])::after {
        content: '>';
        display: inline-block;
        font-family: "FontFaceBold", sans-serif;
        color: #ffed00;
        font-size: 26px;
        line-height: 26px;
        height: 30px;
        margin: 0 auto;
    }
    .smartpageThumbnail:not([target]):hover::after {
        color: #212121;
    }
    .smartpageThumbnail[target] svg {
        transform: scale(1.4) translateY(-60%);
        transition: transform .5s;
    }
    .smartpageThumbnail[target]:hover svg {
        transform: scale(1.7) translateY(-50%);
    }