.gl-info-cards {
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-template-columns: 1fr;
    row-gap: 1rem;
    column-gap: 1rem;

    grid-row-start: 2;
    grid-row-end: span 1;
    grid-column-start: 2;
    grid-column-end: -2;

    margin: 4rem 0;

    z-index: 20;
}

.gl-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 2rem;

    background-color: var(--gl-info-card-bg);
    border-radius: 16px;
    border-style: solid;
    border-color: var(--gl-info-card-border);
    border-width: 2px;
    backdrop-filter: blur(3px);
}

.gl-info-card:nth-child(n+5) {
    display: none;
}

.gl-info-card-icon {
    stroke: #3ddc84ff;

    width: 3rem;
    height: 3rem;
}

.gl-info-card > h2 {
    color: var(--gl-info-card-title);
    text-align: center;
    font-size: 1.25rem;

    margin: 1.2rem 0;
}

.gl-info-card > p {
    color: var(--gl-info-card-description);
    text-align: center;

    margin: 0;
}

/* WIDTH BREAKPOINTS ------------------------------------------------------------------------------------------------ */
/* sm */
@media (min-width: 640px) {
    .gl-info-cards {
        grid-template-rows: repeat(2, auto);
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1rem;
        column-gap: 1rem;
    }
}

/* md */
@media (min-width: 768px) {
}

/* lg */
@media (min-width: 1024px) {
    .gl-info-cards {
        grid-template-rows: repeat(2, auto);
        grid-template-columns: repeat(3, 1fr);
        row-gap: 1rem;
        column-gap: 1rem;
    }

    .gl-info-card:nth-child(-n+6) {
        display: flex;
    }
}

/* xl */
@media (min-width: 1280px) {
}

/* 2xl */
@media (min-width: 1536px) {
    .gl-info-cards {
        grid-template-rows: repeat(2, auto);
        grid-template-columns: repeat(4, 1fr);
        row-gap: 1rem;
        column-gap: 1rem;
    }

    .gl-info-card:nth-child(-n+12) {
        display: flex;
    }

    .gl-info-card {
        padding: 2rem 1rem;
    }

    .gl-info-card-icon {
        width: 2rem;
        height: 2rem;
    }

    .gl-info-card > h2 {
        font-size: 1.10rem;
        margin: 1rem 0;
    }
}

/* 3xl */
@media (min-width: 1800px) {
}

/* 4xl */
@media (min-width: 2200px) {
}

/* HEIGHT BREAKPOINTS ----------------------------------------------------------------------------------------------- */
/* Average height */
@media (min-height: 700px) {
}

/* Tall screens */
@media (min-height: 800px) {
}

/* Very tall screens */
@media (min-height: 900px) {
}

/* Extra tall */
@media (min-height: 1000px) {
}

/* Ultra tall */
@media (min-height: 1200px) {
}
