.clubs-page {
    width: 100%;
}

/* PAGE TITLE */

.clubs-heading {
    min-height: 58px;

    padding: 0 16px;

    display: flex;
    align-items: center;

    background: #0b1728;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.clubs-heading h1 {
    margin: 0;

    color: #ffffff;

    font-size: 25px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.02em;
}

/* DIVISION SELECTOR */

.division-selector {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    background: #081321;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.division-selector__item {
    position: relative;

    min-width: 0;
    height: 195px;

    padding: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    appearance: none;

    background: transparent;
    border: 0;

    color: #9eabba;

    font: inherit;

    cursor: pointer;
}

.division-selector__item:hover {
    background: transparent;

    color: #ffffff;
}

.division-selector__item::after {
    content: "";

    position: absolute;

    right: 30px;
    bottom: 0;
    left: 30px;

    height: 3px;

    background: transparent;
}

.division-selector__item--selected {
    background: transparent;

    color: #ffffff;
}

.division-selector__item--selected::after {
    background: var(--ffo-gold);
}

.division-selector__logo-wrap {
    width: 170px;
    height: 170px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.division-selector__logo {
    width: 170px;
    height: 170px;

    display: block;

    object-fit: contain;
}

.division-selector__name {
    display: none;
}

/* SELECTED DIVISION */

.clubs-division {
    width: 100%;
}

.clubs-division__bar {
    min-height: 70px;

    padding: 0 18px;

    display: flex;
    align-items: center;

    background: #0d1a2c;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.clubs-division__title {
    margin: 0;

    color: var(--ffo-gold);

    font-size: 21px;
    font-weight: 700;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* CLUB GRID */

.club-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 14px 10px;

    padding: 12px 10px 16px;

    background: #07111f;
}

.club-card {
    position: relative;

    min-width: 0;
    height: 260px;

    padding: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: 0;

    color: #ffffff;

    text-decoration: none;

    overflow: hidden;
}

.club-card:hover {
    background: transparent;
}

.club-card::after {
    content: "";

    position: absolute;

    right: 28px;
    bottom: 0;
    left: 28px;

    height: 3px;

    background: transparent;
}

.club-card:hover::after {
    background: var(--ffo-gold);
}

.club-card__logo-wrap {
    width: 170px;
    height: 175px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 170px;
}

.club-card__logo {
    width: 170px;
    height: 175px;

    display: block;

    object-fit: contain;

    transition: transform 140ms ease;
}

.club-card:hover .club-card__logo {
    transform: scale(1.04);
}

.club-card__logo-wrap--missing {
    background: transparent;
    border: 0;

    color: var(--ffo-gold);

    font-size: 20px;
    font-weight: 700;
}

/* PRESS FEEDBACK */

.division-selector__item:active,
.club-card:active {
    background: transparent;
}