/* =========================================================
   COOL SITES
   ========================================================= */

.sites-content {
    padding-bottom: 30px;
}

/* =========================
   INTRO
   ========================= */

.sites-intro {
    text-align: center;
    margin-bottom: 25px;
}

.sites-intro h2 {
    margin-bottom: 5px;
}

.sites-status {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 9px;
    font-family: "Courier New", monospace;
    font-size: 9px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #075b78;
    background: linear-gradient(
        to bottom,
        #ffffff,
        #d8f6fc
    );
    border: 1px dotted #4ca8be;
}

/* =========================
   CATEGORY
   ========================= */

.site-category {
    margin-top: 25px;
}

.site-category-title {
    margin-bottom: 10px;
    padding: 6px 9px;
    font-family: "Courier New", monospace;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #075b78;
    background: linear-gradient(
        to right,
        #b9eff8,
        #eaffff,
        transparent
    );
    border-bottom: 1px solid #4ca8be;
}

/* =========================
   GRID
   ========================= */

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
    gap: 14px;
}

/* =========================
   SITE CARD
   ========================= */

.site-card {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 135px;
    height: 75px;

    padding: 8px;
    box-sizing: border-box;

    text-decoration: none;

    background: linear-gradient(
        to bottom,
        #ffffff,
        #e8fbff 55%,
        #bcecf5
    );

    border: 2px solid #075b78;

    outline: 1px solid rgba(255,255,255,.9);

    box-shadow:
        3px 4px 0 #075b78,
        5px 6px 0 rgba(0,80,100,.25);

    border-radius: 5px;

    transition:
        transform .12s steps(2),
        filter .12s;
}

.site-card:hover {
    transform: translate(-2px, -2px);
    filter: brightness(1.06);
}

.site-card:active {
    transform: translate(2px, 2px);

    box-shadow:
        1px 2px 0 #075b78;
}

/* =========================
   REAL 88x31 BUTTON
   ========================= */

.site-card img {
    display: block;

    width: 88px;
    height: 31px;

    max-width: 100%;

    object-fit: contain;

    image-rendering: pixelated;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 600px) {

    .sites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .site-card {
        width: 135px;
        height: 75px;
        justify-self: center;
    }
}

@media (max-width: 350px) {

    .sites-grid {
        grid-template-columns: 1fr;
    }

    .site-card {
        justify-self: center;
    }
}