/* =========================================================
   LANDS
   ========================================================= */

.landsSection {
    background:
        radial-gradient(
            circle at center,
            rgba(73, 88, 68, 0.12),
            transparent 65%
        );
}


.landGrid {
    gap: 32px;
    max-width: 1100px;
}


/* Land banner */

.landBanner {
    position: relative;

    height: 155px;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding-top: 18px;

    overflow: hidden;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.12),
            rgba(0, 0, 0, 0.5)
        ),
        var(--land-color);
}


.landBanner img,
.landBannerFallback {
    width: 90px;
    height: 115px;

    object-fit: cover;

    clip-path:
        polygon(
            0 0,
            100% 0,
            100% 82%,
            50% 100%,
            0 82%
        );

    filter:
        drop-shadow(
            0 6px 7px rgba(0, 0, 0, 0.5)
        );
}


.landBannerFallback {
    background: var(--land-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


/* Text */

.landCardContent {
    padding: 22px;
}


.landDemonym {
    margin-bottom: 6px;

    color: var(--gold);

    font-size: 0.68rem;
    font-weight: bold;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.landCard h3 {
    margin-bottom: 12px;

    font-size: 1.55rem;
    font-weight: normal;
}


/* =========================================================
   LAND MODAL
   ========================================================= */

.landModalBanner {
    --land-color: #666666;

    width: 100%;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.45)
        ),
        var(--land-color);
}


.landModalBanner img,
.landModalFlagFallback {
    width: 90px;
    height: 115px;

    object-fit: cover;

    clip-path:
        polygon(
            0 0,
            100% 0,
            100% 82%,
            50% 100%,
            0 82%
        );
}


.landModalFlagFallback {
    background: var(--land-color);
}



