/*
 * New desktop-only elements.
 * Hidden from mobile.
 */

.roman-role-grid,
.roman-stat--desktop-only {
    display: none;
}
/*
 * =========================================================
 * D2C GAME
 * 06 ABOUT ROMAN
 *
 * DESKTOP ONLY
 * =========================================================
 */

@media (min-width: 1024px) {


    /* =====================================================
       SECTION
       ===================================================== */

    .roman-section {
        position: relative;

        padding:
            45px 0;

        overflow: hidden;

        background: #ffffff;
    }


    /*
     * IMPORTANT:
     * Width comes from desktop-layout.css.
     * Do NOT set .home-shell width here.
     */


    .roman-shell {
        position: relative;

        display: grid;

        grid-template-columns:
            46% 54%;

        grid-template-areas:
            "photo copy"
            "stats stats"
            "quote quote"
            "signature signature";

        width: 100%;

        overflow: hidden;

        border:
            1px solid
            #eceef2;

        background:

            linear-gradient(
                135deg,
                #ffffff 0%,
                #f7f8fa 72%,
                #f1f2f5 100%
            );

        box-shadow:
            0 7px 30px
            rgba(20, 29, 46, .035);
    }



    /* =====================================================
       SUBTLE GEOMETRIC BACKGROUND
       ===================================================== */

    .roman-shell::before {
        content: "";

        position: absolute;

        z-index: 0;

        top: -160px;
        right: -150px;

        width: 520px;
        height: 520px;

        transform:
            rotate(45deg);

        background:
            linear-gradient(
                135deg,
                rgba(232, 234, 239, .55),
                rgba(255,255,255,0)
            );

        pointer-events: none;
    }


    .roman-shell::after {
        content: "";

        position: absolute;

        z-index: 0;

        bottom: -250px;
        left: -240px;

        width: 500px;
        height: 500px;

        transform:
            rotate(45deg);

        background:
            linear-gradient(
                135deg,
                rgba(237,239,243,.5),
                transparent
            );

        pointer-events: none;
    }



    /* =====================================================
       IMAGE
       ===================================================== */

    .roman-media {
        position: relative;

        z-index: 2;

        grid-area: photo;

        min-width: 0;

        min-height: 520px;

        overflow: hidden;

        background: #11161c;
    }


    .roman-photo {
        display: block;

        width: 100%;
        height: 100%;
    }


    picture.roman-photo {
        display: block;
    }


    .roman-photo img,
    img.roman-photo {

        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position:
            center center;
    }



    /* =====================================================
       RIGHT COPY
       ===================================================== */

    .roman-copy {
        position: relative;

        z-index: 2;

        grid-area: copy;

        min-width: 0;

        padding:
            55px 55px
            34px
            54px;
    }


    .roman-copy .home-kicker {

        margin:
            0 0
            18px;

        color: #5b6678;

        font-size: 10px;
        line-height: 1;

        font-weight: 800;

        letter-spacing: .38em;

        text-transform: uppercase;
    }


    .roman-copy h2 {

        max-width: 650px;

        margin:
            0 0
            20px;

        color: #080a0e;

        font-size: 44px;
        line-height: .96;

        font-weight: 900;

        letter-spacing: -.055em;
    }


    .roman-copy > p:not(.home-kicker) {

        max-width: 680px;

        margin:
            0 0
            13px;

        color: #445065;

        font-size: 15px;
        line-height: 1.44;

        font-weight: 400;

        letter-spacing: -.01em;
    }



    /* =====================================================
       THREE ROLE ITEMS
       ===================================================== */

    .roman-role-grid {

        display: grid;

        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 0;

        margin-top: 28px;
    }


    .roman-role {

        position: relative;

        min-width: 0;

        padding:
            0 22px;

        border-left:
            1px solid
            #dfe2e8;
    }


    .roman-role:first-child {

        padding-left: 0;

        border-left: 0;
    }


    .roman-role:last-child {

        padding-right: 0;
    }


    /* icon */

    .roman-role__icon {

        display: grid;

        place-items: center;

        width: 50px;
        height: 50px;

        margin:
            0 0
            12px;

        border-radius: 12px;

        background:
            linear-gradient(
                145deg,
                #f3f1f9,
                #ffffff
            );

        color: #273349;

        box-shadow:
            0 4px 14px
            rgba(20,29,46,.04);
    }


    .roman-role__icon svg {

        width: 27px;
        height: 27px;
    }


    .roman-role strong {

        display: block;

        margin:
            0 0
            5px;

        color: #090b0f;

        font-size: 14px;
        line-height: 1;

        font-weight: 900;
    }


    .roman-role p {

        max-width: 170px;

        margin: 0;

        color: #566175;

        font-size: 11px;
        line-height: 1.34;
    }



    /* =====================================================
       STATISTICS
       ===================================================== */

    .roman-stats {

        position: relative;

        z-index: 3;

        grid-area: stats;

        display: grid;

        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            );

        margin: 0;

        padding:
            27px 38px;

        border-top:
            1px solid
            #e5e8ed;

        border-bottom:
            1px solid
            #e5e8ed;

        background:
            rgba(
                255,
                255,
                255,
                .64
            );
    }


    .roman-stat,
    .roman-stat--desktop-only {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        min-width: 0;

        padding:
            0 24px;

        text-align: center;

        border-left:
            1px solid
            #dfe2e7;
    }


    .roman-stat:first-child {

        border-left: 0;
    }


    .roman-stat strong {

        display: block;

        color: #090b0f;

        font-size: 30px;
        line-height: 1;

        font-weight: 900;

        letter-spacing: -.045em;
    }


    .roman-stat span {

        display: block;

        margin-top: 7px;

        color: #5d687b;

        font-size: 12px;
        line-height: 1.25;
    }



    /* =====================================================
       QUOTE
       ===================================================== */

    .roman-quote {

        position: relative;

        z-index: 3;

        grid-area: quote;

        max-width: 800px;

        margin:
            0 auto;

        padding:
            27px 30px
            8px;

        border: 0;

        color: #303b4d;

        text-align: center;

        font-size: 16px;
        line-height: 1.35;

        font-weight: 500;

        font-style: italic;
    }



    /* =====================================================
       SIGNATURE
       ===================================================== */

    .roman-signature {

        position: relative;

        z-index: 3;

        grid-area: signature;

        display: flex;

        align-items: center;
        justify-content: center;

        gap: 14px;

        margin: 0;

        padding:
            0 0
            34px;

        color: #5c6879;

        font-size: 9px;
        line-height: 1;

        font-weight: 800;

        letter-spacing: .36em;
    }


    .roman-signature span {

        display: block;

        width: 28px;
        height: 1px;

        background: #748095;
    }

}
@media
(
    min-width: 1024px
)
and
(
    max-width: 1500px
) {

    .roman-section {
        padding:
            72px 0;
    }


    .roman-media {
        min-height: 470px;
    }


    .roman-copy {
        padding:
            44px 42px
            28px;
    }


    .roman-copy h2 {
        font-size: 38px;
    }


    .roman-copy > p:not(.home-kicker) {
        font-size: 14px;
    }


    .roman-role {
        padding:
            0 16px;
    }


    .roman-stat strong {
        font-size: 27px;
    }

}