
@media (min-width: 1024px) {

    /* =====================================================
       MATCH THE WIDTH OF THE AUSTRALIA STATS SECTION
    ===================================================== */

    .am-worlds {
        width: calc(100% - 60px) !important;
        max-width: none !important;

        margin:
            22px
            30px
            34px !important;
    }


    .am-worlds__inner {
        grid-template-columns:
            minmax(0, 1fr)
            220px !important;

        min-height: 250px !important;

        border-radius: 26px !important;

        overflow: hidden !important;

        background: #fff !important;

        border: 1px solid rgba(0,0,0,.05) !important;

        box-shadow:
            0 12px 34px rgba(0,0,0,.07),
            0 2px 8px rgba(0,0,0,.035) !important;
    }


    /* =====================================================
       IMAGE STRIP
    ===================================================== */

    .am-worlds__strip {
        height: 250px !important;

        padding-left: 0 !important;

        background: transparent !important;

        overflow: hidden !important;
    }


    .am-world-card {
        margin-left: -6px !important;

        clip-path:
            polygon(
                11% 0,
                100% 0,
                89% 100%,
                0 100%
            ) !important;
    }


    /* First image starts cleanly at left edge */
    .am-world-card:first-child {
        margin-left: 0 !important;

        clip-path:
            polygon(
                0 0,
                100% 0,
                89% 100%,
                0 100%
            ) !important;
    }


    /* Last image finishes cleanly against copy panel */
    .am-world-card:last-child {
        clip-path:
            polygon(
                11% 0,
                100% 0,
                100% 100%,
                0 100%
            ) !important;
    }


    .am-world-card img {
        transform: scale(1.04) !important;

        object-fit: cover !important;
        object-position: center !important;
    }


    .am-world-card:hover img {
        transform: scale(1.09) !important;
    }


    /* =====================================================
       DARK / GREEN OVERLAY
    ===================================================== */

    .am-world-card__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.58) 0%,
                rgba(0,0,0,.18) 35%,
                rgba(0,0,0,.02) 65%,
                rgba(0,0,0,.16) 100%
            ) !important;
    }


    .am-world-card:hover .am-world-card__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,185,96,.72) 0%,
                rgba(0,185,96,.30) 35%,
                rgba(0,185,96,.05) 68%,
                rgba(0,120,62,.20) 100%
            ) !important;
    }


    /* =====================================================
       IMAGE LABELS
    ===================================================== */

    .am-world-card__label {
        top: 16px !important;

        font-size: 14px !important;
        line-height: 1.05 !important;

        width: 86% !important;
    }


    /* =====================================================
       RIGHT COPY PANEL
    ===================================================== */

    .am-worlds__copy {
        padding:
            28px
            22px
            28px
            28px !important;

        background:
            linear-gradient(
                135deg,
                #fff 0%,
                #faf8f4 60%,
                #f4eee6 100%
            ) !important;
    }


    .am-worlds__copy h2 {
        font-size: 23px !important;
        line-height: .96 !important;

        letter-spacing: -.5px !important;

        max-width: 175px !important;
    }


    .am-worlds__copy p {
        margin-top: 18px !important;

        max-width: 170px !important;

        font-size: 12px !important;
        line-height: 1.45 !important;
    }


    /* small accent line like reference */
    .am-worlds__copy::before {
        left: 0 !important;
        top: 24px !important;
        bottom: 24px !important;

        width: 1px !important;
    }

}


/* =========================================================
   BIG DESKTOP
========================================================= */

@media (min-width: 1500px) {

    .am-worlds {
        width: calc(100% - 60px) !important;
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .am-worlds__inner {
        grid-template-columns:
            minmax(0, 1fr)
            235px !important;
    }

    .am-worlds__copy h2 {
        font-size: 24px !important;
    }

}


/* =========================================================
   SMALL LAPTOP
========================================================= */

@media (min-width: 1024px) and (max-width: 1450px) {

    .am-worlds {
        width: calc(100% - 40px) !important;
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .am-worlds__inner {
        grid-template-columns:
            minmax(0,1fr)
            190px !important;

        min-height: 220px !important;
    }

    .am-worlds__strip {
        height: 220px !important;
    }

    .am-worlds__copy {
        padding:
            22px
            18px
            22px
            22px !important;
    }

    .am-worlds__copy h2 {
        font-size: 20px !important;
        max-width: 155px !important;
    }

    .am-worlds__copy p {
        font-size: 11px !important;
        max-width: 150px !important;
    }

}

