#hubTab {
    background: #050606f5;
    padding: 10px;
    border-radius: 12px;
}


section.hero-section, #cards, .sites-section, .hub-top, .featured-links {
    margin-bottom: 60px;
}

/* ===================== */
/* HERO */
/* ===================== */
.hero-section{
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.logo img{
    opacity:.95;
    border-radius: 100%;
}

.siteinfo{
    font-size:1.2rem;
    margin-top:10px;
    color:#aaa;
    display: flex;
    flex-flow: column;
}

.siteinfo .title{
    font-size:1.4rem;
    color: var(--primary-color);
}

.siteinfo .short-description{
    font-size:1rem;
}


.sites-section #tab-content {
    min-height: 100px;
}

/* pager container */
.hub-category-pagination{
    display:flex;
    justify-content:center;
    gap:10px;
    margin:30px 0 10px;
    flex-wrap:wrap;
}

/* buttons */
.hub-cat-page-btn{
    padding:8px 14px;
    border-radius:8px;
    border:none;
    cursor:pointer;

    font-size:14px;
    font-weight:600;

    color:#003a32;
    background:linear-gradient(135deg,#00ffcc,#02ab89);

    transition:all .25s ease;
    box-shadow:
        0 2px 6px rgba(0,0,0,.15),
        0 0 8px rgba(0,255,204,.35);
}

/* hover */
.hub-cat-page-btn:hover{
    transform:translateY(-2px);
    box-shadow:
        0 4px 12px rgba(0,0,0,.25),
        0 0 14px rgba(0,255,204,.6);
}

/* active */
.hub-cat-page-btn.active{
    color:#fff;
    background:linear-gradient(135deg,#00e6b8,#019f7f);
    box-shadow:
        0 0 0 2px rgba(255,255,255,.25) inset,
        0 0 18px rgba(0,255,204,.8);
}

main.container {
    margin: auto;
}

@media (max-width: 992px) {
    .sites-section .row {
        flex-flow: column-reverse;
        gap: 10px;
    }

    #hubTab {
        padding: 5px;
    }

    .siteinfo .short-description {
        font-size: 0.7rem;
    }

    .hero-section {
        justify-content: space-around;
    }
}