main#ssfd {


    .nominee-wrapper {
        display: grid;
        grid-template-columns: 0.75fr 1fr;
        gap: 2rem;
        max-width: 1470px;
        margin: 0rem auto 8rem;
        padding: 2rem 1rem 0;


        h1 {
            font-size: clamp(18px, 2.3vw, 25px);
            text-transform: uppercase;
        }

        h2 {
            font-size: clamp(16px, 2vw, 22px);
            font-weight: 400;
            line-height: 1.4;
            padding-bottom: 1rem;
        }
    }


    .nominee-related {
        h2 {
            font-size: clamp(22px, 3.4vw, 45px) !important;
        }
    }


    .image_wrapper {

        .images {
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

    }

    .images {
        aspect-ratio: 3 / 2;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }


    .images figure {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        z-index: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .images figure.active {
        opacity: 1;
        z-index: 1;
    }


    .backlink {
        display: inline-block;
    }
    .backlink > div {
        align-items: center;
        gap: .5rem;
        color: var(--color);
        font-size: clamp(16px, 1.4vw, 20px);
        font-weight: 400;
        text-transform: uppercase;
        transition: color .3s var(--transition-timing);
    }

    .backlink:hover > div {
        color: var(--color-primary);
    }

}

@media (max-width: 750px) {

    main#ssfd {

        .nominee-wrapper {
            grid-template-columns: 1fr;
        }

        .images {
            aspect-ratio: 5 / 3;
        }

    }

}


main#ssfd[data-theme="vision"] {

    .nominee-wrapper {



        h1 {
            font-weight: 400;
            letter-spacing: 0.1em !important;
        }

        h2 {

            letter-spacing: 0.1em !important;
        }

}
