/* FS3 — Klubovi, timovi i profili
   Ovaj fajl se učitava posle prenetih FSGK stilova i menja samo direktorijum klubova/timova. */

:root {
    --fs3-club-navy: #071c34;
    --fs3-club-navy-2: #0d2947;
    --fs3-club-red: #f90808;
    --fs3-club-gold: #d9b44a;
    --fs3-club-paper: #f4f6f8;
    --fs3-club-border: #dfe5eb;
    --fs3-club-text: #536174;
}

/* Directory introduction */
.fs3-clubs-directory {
    background: var(--fs3-club-paper);
}

.fs3-clubs-directory .fsgk-directory-intro {
    position: relative;
    overflow: hidden;
    padding: 82px 0 72px;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(3, 17, 34, .98), rgba(10, 42, 72, .92)),
        url('../images/page_banner.png') center/cover no-repeat;
}

.fs3-clubs-directory .fsgk-directory-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, transparent 0 66%, rgba(249, 8, 8, .12) 66% 67%, transparent 67%),
        radial-gradient(circle at 88% 18%, rgba(217, 180, 74, .2), transparent 24%);
}

.fs3-clubs-directory .fsgk-directory-intro .container {
    position: relative;
    z-index: 1;
}

.fs3-clubs-directory .fsgk-directory-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: end;
    gap: 44px;
}

.fs3-clubs-directory .fsgk-section-kicker,
.fs3-profile-page .fsgk-section-kicker,
.fs3-entity-hero + .fsgk-profile-nav + .fs3-profile-page .fsgk-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: var(--fs3-club-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.fs3-clubs-directory .fsgk-section-kicker::before,
.fs3-profile-page .fsgk-section-kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    background: currentColor;
}

.fs3-clubs-directory .fsgk-directory-intro .fsgk-section-kicker {
    color: var(--fs3-club-gold);
}

.fs3-clubs-directory .fsgk-directory-intro h1 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 74px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: .98;
}

.fs3-clubs-directory .fsgk-directory-intro p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    line-height: 1.75;
}

.fs3-clubs-directory .fsgk-directory-switch {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 15px;
    min-height: 94px;
    padding: 18px 20px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 0;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.fs3-clubs-directory .fsgk-directory-switch:hover {
    color: #fff;
    border-color: var(--fs3-club-gold);
    background: rgba(255, 255, 255, .13);
    transform: translateY(-3px);
}

.fs3-clubs-directory .fsgk-directory-switch > i,
.fs3-clubs-directory .fsgk-directory-switch > b {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: var(--fs3-club-red);
}

.fs3-clubs-directory .fsgk-directory-switch > b {
    width: 42px;
    height: 42px;
    color: var(--fs3-club-navy);
    background: var(--fs3-club-gold);
}

.fs3-clubs-directory .fsgk-directory-switch small,
.fs3-clubs-directory .fsgk-directory-switch strong {
    display: block;
}

.fs3-clubs-directory .fsgk-directory-switch small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fs3-clubs-directory .fsgk-directory-switch strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
}

.fs3-clubs-directory .fsgk-directory-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 46px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(2, 16, 31, .42);
}

.fs3-clubs-directory .fsgk-directory-stats article {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 104px;
    padding: 20px 25px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.fs3-clubs-directory .fsgk-directory-stats article:last-child {
    border-right: 0;
}

.fs3-clubs-directory .fsgk-directory-stats i {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    color: #fff;
    background: var(--fs3-club-red);
}

.fs3-clubs-directory .fsgk-directory-stats b,
.fs3-clubs-directory .fsgk-directory-stats small {
    display: block;
}

.fs3-clubs-directory .fsgk-directory-stats b {
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.fs3-clubs-directory .fsgk-directory-stats small {
    margin-top: 6px;
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Filters and directory content */
.fs3-clubs-directory .fsgk-directory-content {
    padding: 78px 0 92px;
    background: var(--fs3-club-paper);
}

.fs3-clubs-directory .fsgk-directory-filter {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) minmax(155px, .7fr) minmax(205px, .95fr) auto auto;
    align-items: end;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--fs3-club-border);
    background: #fff;
    box-shadow: 0 16px 42px rgba(8, 26, 46, .07);
}

.fs3-clubs-directory .fsgk-directory-filter.is-teams {
    grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(145px, .72fr)) auto auto;
}

.fs3-clubs-directory .fsgk-directory-filter label {
    display: block;
    margin: 0;
}

.fs3-clubs-directory .fsgk-directory-filter label > span {
    display: block;
    margin: 0 0 8px;
    color: var(--fs3-club-navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fs3-clubs-directory .fsgk-directory-filter label > div {
    position: relative;
}

.fs3-clubs-directory .fsgk-directory-filter label > div i {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 1;
    color: var(--fs3-club-red);
    transform: translateY(-50%);
}

.fs3-clubs-directory .fsgk-directory-filter input,
.fs3-clubs-directory .fsgk-directory-filter select {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    color: var(--fs3-club-navy);
    border: 1px solid var(--fs3-club-border);
    border-radius: 0;
    outline: 0;
    background: #f8fafb;
    font-size: 13px;
}

.fs3-clubs-directory .fsgk-directory-filter .is-search input {
    padding-left: 46px;
}

.fs3-clubs-directory .fsgk-directory-filter input:focus,
.fs3-clubs-directory .fsgk-directory-filter select:focus {
    border-color: var(--fs3-club-red);
    background: #fff;
}

.fs3-clubs-directory .fsgk-filter-submit,
.fs3-clubs-directory .fsgk-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fs3-clubs-directory .fsgk-filter-submit {
    color: #fff;
    background: var(--fs3-club-red);
}

.fs3-clubs-directory .fsgk-filter-submit:hover {
    background: var(--fs3-club-navy);
}

.fs3-clubs-directory .fsgk-filter-reset {
    color: var(--fs3-club-navy);
    border: 1px solid var(--fs3-club-border);
    background: #fff;
}

.fs3-clubs-directory .fsgk-filter-reset:hover {
    color: #fff;
    border-color: var(--fs3-club-navy);
    background: var(--fs3-club-navy);
}

.fs3-clubs-directory .fsgk-directory-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin: 62px 0 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--fs3-club-border);
}

.fs3-clubs-directory .fsgk-directory-heading h2 {
    margin: 0;
    color: var(--fs3-club-navy);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -.03em;
}

.fs3-clubs-directory .fsgk-directory-heading p {
    margin: 11px 0 0;
    color: var(--fs3-club-text);
}

.fs3-clubs-directory .fsgk-directory-heading > strong {
    display: grid;
    place-items: center;
    flex: 0 0 106px;
    width: 106px;
    height: 96px;
    color: #fff;
    background: var(--fs3-club-navy);
    font-size: 34px;
    line-height: .9;
    text-align: center;
}

.fs3-clubs-directory .fsgk-directory-heading > strong small {
    display: block;
    margin-top: 7px;
    color: var(--fs3-club-gold);
    font-size: 9px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

/* Club cards */
.fs3-clubs-directory .fsgk-club-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.fs3-club-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border: 1px solid var(--fs3-club-border);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 18px 46px rgba(7, 28, 52, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fs3-club-card:hover {
    border-color: rgba(249, 8, 8, .48);
    box-shadow: 0 24px 54px rgba(7, 28, 52, .14);
    transform: translateY(-6px);
}

.fs3-club-card .fsgk-club-card__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 230px;
    padding: 34px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--club-secondary) 94%, #071c34), var(--fs3-club-navy-2));
}

.fs3-club-card .fsgk-club-card__visual::before,
.fs3-club-card .fsgk-club-card__visual::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.fs3-club-card .fsgk-club-card__visual::before {
    width: 230px;
    height: 230px;
    right: -82px;
    top: -95px;
    border: 34px solid color-mix(in srgb, var(--club-primary) 65%, transparent);
    border-radius: 50%;
    opacity: .45;
}

.fs3-club-card .fsgk-club-card__visual::after {
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--club-primary), var(--fs3-club-gold));
}

.fs3-club-card .fsgk-club-card__shape {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(30deg, transparent 48%, #fff 49% 51%, transparent 52%),
        linear-gradient(150deg, transparent 48%, #fff 49% 51%, transparent 52%);
    background-size: 44px 76px;
}

.fs3-club-card .fsgk-club-card__crest {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 132px;
    height: 132px;
    padding: 18px;
    border: 5px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.fs3-club-card .fsgk-club-card__crest img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fs3-club-card .fsgk-club-card__crest b {
    color: var(--fs3-club-navy);
    font-size: 28px;
}

.fs3-club-card .fsgk-club-card__location {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    color: #fff;
    background: rgba(0, 0, 0, .38);
    font-size: 10px;
    font-weight: 700;
}

.fs3-club-card .fsgk-club-card__location i {
    color: var(--fs3-club-gold);
}

.fs3-club-card .fsgk-club-card__content {
    padding: 26px;
}

.fs3-club-card .fsgk-card-kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--fs3-club-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.fs3-club-card h2 {
    margin: 0 0 18px;
    color: var(--fs3-club-navy);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.15;
}

.fs3-club-card h2 a {
    color: inherit;
}

.fs3-club-card h2 a:hover {
    color: var(--fs3-club-red);
}

.fs3-club-card .fsgk-club-card__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 18px;
    border-top: 1px solid var(--fs3-club-border);
    border-bottom: 1px solid var(--fs3-club-border);
}

.fs3-club-card .fsgk-club-card__facts span {
    padding: 14px 8px;
    border-right: 1px solid var(--fs3-club-border);
    text-align: center;
}

.fs3-club-card .fsgk-club-card__facts span:last-child {
    border-right: 0;
}

.fs3-club-card .fsgk-club-card__facts b,
.fs3-club-card .fsgk-club-card__facts small {
    display: block;
}

.fs3-club-card .fsgk-club-card__facts b {
    color: var(--fs3-club-navy);
    font-size: 20px;
}

.fs3-club-card .fsgk-club-card__facts small {
    margin-top: 3px;
    color: var(--fs3-club-text);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.fs3-club-card .fsgk-club-card__stadium {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 15px;
    color: var(--fs3-club-text);
    font-size: 12px;
}

.fs3-club-card .fsgk-club-card__stadium i {
    color: var(--fs3-club-red);
}

.fs3-club-card .fsgk-club-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 28px;
    margin-bottom: 20px;
}

.fs3-club-card .fsgk-club-card__tags span {
    padding: 6px 8px;
    color: var(--fs3-club-navy);
    background: #eef2f5;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.fs3-club-card .fsgk-card-link,
.fs3-team-card .fsgk-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    color: #fff;
    background: var(--fs3-club-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fs3-club-card .fsgk-card-link:hover,
.fs3-team-card .fsgk-card-link:hover {
    color: #fff;
    background: var(--fs3-club-navy);
}

/* Team cards */
.fs3-clubs-directory .fsgk-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.fs3-team-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--fs3-club-border);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 18px 46px rgba(7, 28, 52, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fs3-team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--club-primary), var(--fs3-club-gold));
}

.fs3-team-card:hover {
    border-color: rgba(249, 8, 8, .48);
    box-shadow: 0 24px 54px rgba(7, 28, 52, .14);
    transform: translateY(-6px);
}

.fs3-team-card .fsgk-team-card__top {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: center;
    gap: 17px;
}

.fs3-team-card .fsgk-team-card__crest {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    padding: 12px;
    border: 1px solid var(--fs3-club-border);
    border-radius: 50%;
    background: #f5f7f8;
}

.fs3-team-card .fsgk-team-card__crest img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fs3-team-card .fsgk-team-card__crest b {
    color: var(--fs3-club-navy);
    font-size: 22px;
}

.fs3-team-card .fsgk-team-card__top > div > span {
    color: var(--fs3-club-red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fs3-team-card h2 {
    margin: 5px 0 3px;
    color: var(--fs3-club-navy);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.15;
}

.fs3-team-card h2 a {
    color: inherit;
}

.fs3-team-card h2 a:hover {
    color: var(--fs3-club-red);
}

.fs3-team-card .fsgk-team-card__club {
    color: var(--fs3-club-text);
    font-size: 11px;
    font-weight: 700;
}

.fs3-team-card .fsgk-team-card__competition {
    min-height: 76px;
    margin: 22px -26px 0;
    padding: 15px 26px;
    color: #fff;
    background: var(--fs3-club-navy);
}

.fs3-team-card .fsgk-team-card__competition small,
.fs3-team-card .fsgk-team-card__competition strong {
    display: block;
}

.fs3-team-card .fsgk-team-card__competition small {
    margin-bottom: 4px;
    color: var(--fs3-club-gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.fs3-team-card .fsgk-team-card__competition strong {
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
}

.fs3-team-card .fsgk-team-card__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--fs3-club-border);
}

.fs3-team-card .fsgk-team-card__facts span {
    padding: 16px 7px;
    border-right: 1px solid var(--fs3-club-border);
    text-align: center;
}

.fs3-team-card .fsgk-team-card__facts span:last-child {
    border-right: 0;
}

.fs3-team-card .fsgk-team-card__facts b,
.fs3-team-card .fsgk-team-card__facts small {
    display: block;
}

.fs3-team-card .fsgk-team-card__facts b {
    color: var(--fs3-club-navy);
    font-size: 22px;
}

.fs3-team-card .fsgk-team-card__facts small {
    margin-top: 3px;
    color: var(--fs3-club-text);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.fs3-team-card .fsgk-team-card__facts .is-points {
    color: #fff;
    background: var(--fs3-club-red);
}

.fs3-team-card .fsgk-team-card__facts .is-points b,
.fs3-team-card .fsgk-team-card__facts .is-points small {
    color: #fff;
}

.fs3-team-card .fsgk-team-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 19px;
}

.fs3-team-card .fsgk-team-card__footer > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--fs3-club-text);
    font-size: 10px;
}

.fs3-team-card .fsgk-team-card__footer > span i {
    color: var(--fs3-club-red);
}

/* Entity/profile hero */
.fs3-entity-hero {
    position: relative;
    overflow: hidden;
    padding: 172px 0 0;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(2, 15, 30, .98), rgba(9, 42, 71, .88)),
        url('../images/page_banner.png') center/cover no-repeat;
}

.fs3-entity-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .26;
    background: radial-gradient(circle at 82% 12%, var(--entity-primary), transparent 30%);
}

.fs3-entity-hero .container {
    position: relative;
    z-index: 1;
}

.fs3-entity-hero .fsgk-entity-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    font-weight: 700;
}

.fs3-entity-hero .fsgk-entity-breadcrumb a,
.fs3-entity-hero .fsgk-entity-breadcrumb span {
    color: inherit;
}

.fs3-entity-hero .fsgk-entity-breadcrumb a:hover {
    color: var(--fs3-club-gold);
}

.fs3-entity-hero .fsgk-entity-breadcrumb i {
    color: var(--fs3-club-red);
    font-size: 8px;
}

.fs3-entity-hero .fsgk-entity-hero__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding-bottom: 42px;
}

.fs3-entity-hero .fsgk-entity-hero__identity {
    display: flex;
    align-items: center;
    gap: 28px;
    min-width: 0;
}

.fs3-entity-hero .fsgk-entity-hero__crest {
    display: grid;
    place-items: center;
    flex: 0 0 132px;
    width: 132px;
    height: 132px;
    padding: 18px;
    border: 5px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
}

.fs3-entity-hero .fsgk-entity-hero__crest img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fs3-entity-hero .fsgk-entity-hero__crest b {
    color: var(--fs3-club-navy);
    font-size: 30px;
}

.fs3-entity-hero .fsgk-entity-hero__identity small {
    display: block;
    margin-bottom: 7px;
    color: var(--fs3-club-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.fs3-entity-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: .96;
}

.fs3-entity-hero .fsgk-entity-hero__identity p {
    margin: 11px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
}

.fs3-entity-hero .fsgk-entity-hero__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .07);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fs3-entity-hero .fsgk-entity-hero__back:hover {
    color: #fff;
    border-color: var(--fs3-club-red);
    background: var(--fs3-club-red);
}

.fs3-entity-hero .fsgk-entity-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .14);
    background: rgba(2, 16, 31, .42);
}

.fs3-entity-hero .fsgk-entity-facts article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 92px;
    padding: 17px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.fs3-entity-hero .fsgk-entity-facts article:last-child {
    border-right: 0;
}

.fs3-entity-hero .fsgk-entity-facts i {
    color: var(--fs3-club-gold);
    font-size: 22px;
}

.fs3-entity-hero .fsgk-entity-facts small,
.fs3-entity-hero .fsgk-entity-facts strong {
    display: block;
}

.fs3-entity-hero .fsgk-entity-facts small {
    color: rgba(255, 255, 255, .56);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fs3-entity-hero .fsgk-entity-facts strong {
    margin-top: 4px;
    color: #fff;
    font-size: 13px;
}

/* Sticky profile navigation */
.fsgk-profile-nav {
    position: sticky;
    top: 0;
    z-index: 60;
    border: 0;
    box-shadow: 0 8px 26px rgba(7, 28, 52, .13);
    background: #fff;
}

.fsgk-profile-nav .container {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
}

.fsgk-profile-nav .container::-webkit-scrollbar {
    display: none;
}

.fsgk-profile-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: max-content;
    padding: 19px 24px;
    color: var(--fs3-club-navy);
    border-right: 1px solid var(--fs3-club-border);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.fsgk-profile-nav a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    background: transparent;
}

.fsgk-profile-nav a:hover,
.fsgk-profile-nav a.is-active {
    color: var(--fs3-club-red);
}

.fsgk-profile-nav a.is-active::after {
    background: var(--fs3-club-red);
}

.fsgk-profile-nav a i {
    color: var(--fs3-club-gold);
}

.fsgk-profile-nav a b {
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    color: #fff;
    border-radius: 50%;
    background: var(--fs3-club-navy);
    font-size: 8px;
}

/* Profile page panels */
.fs3-profile-page {
    padding: 72px 0 96px;
    background: var(--fs3-club-paper);
}

.fs3-profile-page .fsgk-profile-panel,
.fs3-profile-page .fsgk-sidebar-card {
    margin-bottom: 24px;
    padding: 28px;
    border: 1px solid var(--fs3-club-border);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 16px 42px rgba(7, 28, 52, .065);
}

.fs3-profile-page .fsgk-profile-panel > header,
.fs3-profile-page .fsgk-sidebar-card > header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--fs3-club-border);
}

.fs3-profile-page .fsgk-sidebar-card > header {
    display: block;
}

.fs3-profile-page .fsgk-profile-panel > header h2,
.fs3-profile-page .fsgk-sidebar-card > header h2 {
    margin: 0;
    color: var(--fs3-club-navy);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.025em;
}

.fs3-profile-page .fsgk-profile-panel > header > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fs3-club-red);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.fs3-profile-page .fsgk-profile-panel > header > strong {
    color: var(--fs3-club-navy);
    font-size: 28px;
    text-align: center;
}

.fs3-profile-page .fsgk-profile-panel > header > strong small {
    display: block;
    margin-top: 2px;
    color: var(--fs3-club-text);
    font-size: 8px;
    text-transform: uppercase;
}

.fs3-profile-page .fsgk-richtext {
    color: var(--fs3-club-text);
    font-size: 15px;
    line-height: 1.85;
}

.fs3-profile-page .fsgk-richtext h2,
.fs3-profile-page .fsgk-richtext h3,
.fs3-profile-page .fsgk-richtext h4 {
    color: var(--fs3-club-navy);
}

/* Club team list */
.fs3-profile-page .fsgk-club-team-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.fs3-profile-page .fsgk-club-team-list > a {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 13px;
    min-height: 86px;
    padding: 13px;
    color: var(--fs3-club-navy);
    border: 1px solid var(--fs3-club-border);
    background: #f8fafb;
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.fs3-profile-page .fsgk-club-team-list > a:hover {
    color: var(--fs3-club-navy);
    border-color: var(--fs3-club-red);
    background: #fff;
    transform: translateY(-2px);
}

.fs3-profile-page .fsgk-club-team-list > a > span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    padding: 8px;
    border-radius: 50%;
    background: #fff;
}

.fs3-profile-page .fsgk-club-team-list img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fs3-profile-page .fsgk-club-team-list strong,
.fs3-profile-page .fsgk-club-team-list small {
    display: block;
}

.fs3-profile-page .fsgk-club-team-list strong {
    color: var(--fs3-club-navy);
    font-size: 13px;
}

.fs3-profile-page .fsgk-club-team-list small {
    margin-top: 4px;
    color: var(--fs3-club-text);
    font-size: 9px;
}

.fs3-profile-page .fsgk-club-team-list > a > i {
    color: var(--fs3-club-red);
}

/* Sidebar information */
.fs3-profile-page .fsgk-info-list > div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid var(--fs3-club-border);
}

.fs3-profile-page .fsgk-info-list > div:last-child {
    border-bottom: 0;
}

.fs3-profile-page .fsgk-info-list > div > i {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: #fff;
    border-radius: 0;
    background: var(--fs3-club-red);
}

.fs3-profile-page .fsgk-info-list small,
.fs3-profile-page .fsgk-info-list strong,
.fs3-profile-page .fsgk-info-list a {
    display: block;
}

.fs3-profile-page .fsgk-info-list small {
    margin-bottom: 3px;
    color: var(--fs3-club-text);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.fs3-profile-page .fsgk-info-list strong,
.fs3-profile-page .fsgk-info-list a {
    color: var(--fs3-club-navy);
    font-size: 12px;
    font-weight: 800;
    word-break: break-word;
}

.fs3-profile-page .fsgk-info-list a:hover {
    color: var(--fs3-club-red);
}

.fs3-profile-page .fsgk-sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 0;
    color: var(--fs3-club-navy);
    border-bottom: 1px solid var(--fs3-club-border);
}

.fs3-profile-page .fsgk-sidebar-links a:last-child {
    border-bottom: 0;
}

.fs3-profile-page .fsgk-sidebar-links strong,
.fs3-profile-page .fsgk-sidebar-links small {
    display: block;
}

.fs3-profile-page .fsgk-sidebar-links strong {
    color: var(--fs3-club-navy);
    font-size: 12px;
}

.fs3-profile-page .fsgk-sidebar-links small {
    margin-top: 3px;
    color: var(--fs3-club-text);
    font-size: 9px;
}

.fs3-profile-page .fsgk-sidebar-links i {
    color: var(--fs3-club-red);
}

/* Team standings */
.fs3-profile-page .fsgk-team-standing-list > a {
    display: grid;
    grid-template-columns: minmax(210px, 1.7fr) repeat(5, minmax(52px, .35fr));
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    color: var(--fs3-club-navy);
    border-bottom: 1px solid var(--fs3-club-border);
}

.fs3-profile-page .fsgk-team-standing-list > a:last-child {
    border-bottom: 0;
}

.fs3-profile-page .fsgk-team-standing-list span {
    text-align: center;
}

.fs3-profile-page .fsgk-team-standing-list .is-name {
    text-align: left;
}

.fs3-profile-page .fsgk-team-standing-list small,
.fs3-profile-page .fsgk-team-standing-list strong,
.fs3-profile-page .fsgk-team-standing-list b {
    display: block;
}

.fs3-profile-page .fsgk-team-standing-list small {
    color: var(--fs3-club-text);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.fs3-profile-page .fsgk-team-standing-list strong {
    color: var(--fs3-club-navy);
    font-size: 12px;
}

.fs3-profile-page .fsgk-team-standing-list b {
    color: var(--fs3-club-navy);
    font-size: 22px;
}

.fs3-profile-page .fsgk-team-standing-list .is-points {
    padding: 9px 7px;
    color: #fff;
    border-radius: 0;
    background: var(--fs3-club-red);
}

.fs3-profile-page .fsgk-team-standing-list .is-points b,
.fs3-profile-page .fsgk-team-standing-list .is-points small {
    color: #fff;
}

/* Roster and people */
.fs3-profile-page .fsgk-roster-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.fs3-profile-page .fsgk-roster-player {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 91px;
    padding: 13px;
    border: 1px solid var(--fs3-club-border);
    border-radius: 0;
    background: #f8fafb;
}

.fs3-profile-page .fsgk-roster-player__photo {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
}

.fs3-profile-page .fsgk-roster-player__photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.fs3-profile-page .fsgk-roster-player__photo > em {
    position: absolute;
    right: -3px;
    bottom: -2px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--fs3-club-red);
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.fs3-profile-page .fsgk-roster-player strong,
.fs3-profile-page .fsgk-roster-player small {
    display: block;
}

.fs3-profile-page .fsgk-roster-player strong {
    color: var(--fs3-club-navy);
    font-size: 13px;
}

.fs3-profile-page .fsgk-roster-player small {
    margin-top: 4px;
    color: var(--fs3-club-text);
    font-size: 9px;
}

.fs3-profile-page .fsgk-person-list article {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--fs3-club-border);
}

.fs3-profile-page .fsgk-person-list article:last-child {
    border-bottom: 0;
}

.fs3-profile-page .fsgk-person-list article > span {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 50%;
    background: #eef2f5;
}

.fs3-profile-page .fsgk-person-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs3-profile-page .fsgk-person-list strong,
.fs3-profile-page .fsgk-person-list small {
    display: block;
}

.fs3-profile-page .fsgk-person-list strong {
    color: var(--fs3-club-navy);
    font-size: 12px;
}

.fs3-profile-page .fsgk-person-list small {
    margin-top: 3px;
    color: var(--fs3-club-text);
    font-size: 9px;
}

/* Match cards inside club/team profiles */
.fs3-profile-page .fsgk-profile-match-list {
    display: grid;
    gap: 15px;
}

.fs3-profile-match {
    overflow: hidden;
    border: 1px solid var(--fs3-club-border);
    border-radius: 0;
    background: #fff;
}

.fs3-profile-match .fsgk-profile-match__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #fff;
    background: var(--fs3-club-navy);
    font-size: 10px;
}

.fs3-profile-match .fsgk-profile-match__meta > span {
    color: #fff;
    font-weight: 800;
}

.fs3-profile-match .fsgk-profile-match__meta > small {
    margin-left: auto;
    color: rgba(255, 255, 255, .65);
}

.fs3-profile-match .fsgk-profile-match__meta > em {
    padding: 5px 8px;
    color: var(--fs3-club-navy);
    border-radius: 0;
    background: var(--fs3-club-gold);
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.fs3-profile-match .fsgk-profile-match__contest {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.fs3-profile-match .fsgk-profile-match__team {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--fs3-club-navy);
}

.fs3-profile-match .fsgk-profile-match__team.is-home {
    justify-content: flex-end;
    text-align: right;
}

.fs3-profile-match .fsgk-profile-match__team > span {
    display: grid;
    place-items: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    padding: 7px;
    border-radius: 50%;
    background: #eef2f5;
}

.fs3-profile-match .fsgk-profile-match__team img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fs3-profile-match .fsgk-profile-match__team strong {
    color: var(--fs3-club-navy);
    font-size: 12px;
    line-height: 1.3;
}

.fs3-profile-match .fsgk-profile-match__team.is-current strong {
    color: var(--fs3-club-red);
}

.fs3-profile-match .fsgk-profile-match__score {
    display: block;
    text-align: center;
}

.fs3-profile-match .fsgk-profile-match__score strong {
    display: block;
    color: var(--fs3-club-navy);
    font-size: 30px;
    line-height: 1;
}

.fs3-profile-match .fsgk-profile-match__score i {
    padding: 0 5px;
    color: var(--fs3-club-red);
    font-style: normal;
}

.fs3-profile-match .fsgk-profile-match__score small {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 8px;
    color: #fff;
    background: var(--fs3-club-red);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.fs3-profile-match.is-win .fsgk-profile-match__score small {
    background: #18864b;
}

.fs3-profile-match.is-draw .fsgk-profile-match__score small {
    background: #d59b17;
}

.fs3-profile-match.is-loss .fsgk-profile-match__score small {
    background: #b9232a;
}

.fs3-profile-match .fsgk-profile-match__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 11px 16px;
    color: var(--fs3-club-text);
    border-top: 1px solid var(--fs3-club-border);
    font-size: 9px;
}

.fs3-profile-match .fsgk-profile-match__footer i {
    margin-right: 5px;
    color: var(--fs3-club-red);
}

.fs3-profile-match .fsgk-profile-match__footer a {
    color: var(--fs3-club-navy);
    font-weight: 800;
    text-transform: uppercase;
}

.fs3-profile-match .fsgk-profile-match__footer a:hover {
    color: var(--fs3-club-red);
}

/* Pagination */
.fs3-clubs-directory .fsgk-directory-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 38px;
}

.fs3-clubs-directory .fsgk-directory-pagination a,
.fs3-clubs-directory .fsgk-directory-pagination span {
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 11px;
    color: var(--fs3-club-navy);
    border: 1px solid var(--fs3-club-border);
    background: #fff;
    font-size: 11px;
    font-weight: 800;
}

.fs3-clubs-directory .fsgk-directory-pagination a:hover,
.fs3-clubs-directory .fsgk-directory-pagination .is-active {
    color: #fff;
    border-color: var(--fs3-club-red);
    background: var(--fs3-club-red);
}

/* Responsive */
@media (max-width: 1199px) {
    .fs3-clubs-directory .fsgk-directory-intro__grid {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

    .fs3-clubs-directory .fsgk-directory-filter,
    .fs3-clubs-directory .fsgk-directory-filter.is-teams {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fs3-clubs-directory .fsgk-directory-filter .is-search {
        grid-column: 1 / -1;
    }

    .fs3-clubs-directory .fsgk-club-grid,
    .fs3-clubs-directory .fsgk-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .fs3-clubs-directory .fsgk-directory-intro {
        padding-top: 68px;
    }

    .fs3-clubs-directory .fsgk-directory-intro__grid {
        grid-template-columns: 1fr;
    }

    .fs3-clubs-directory .fsgk-directory-switch {
        max-width: 440px;
    }

    .fs3-clubs-directory .fsgk-directory-stats,
    .fs3-entity-hero .fsgk-entity-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fs3-clubs-directory .fsgk-directory-stats article:nth-child(2),
    .fs3-entity-hero .fsgk-entity-facts article:nth-child(2) {
        border-right: 0;
    }

    .fs3-clubs-directory .fsgk-directory-stats article:nth-child(-n+2),
    .fs3-entity-hero .fsgk-entity-facts article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .fs3-entity-hero {
        padding-top: 128px;
    }

    .fs3-entity-hero .fsgk-entity-hero__main {
        align-items: flex-start;
    }

    .fs3-entity-hero .fsgk-entity-hero__back {
        margin-top: 10px;
    }

    .fs3-profile-page {
        padding-top: 58px;
    }
}

@media (max-width: 767px) {
    .fs3-clubs-directory .fsgk-directory-intro {
        padding: 58px 0 52px;
    }

    .fs3-clubs-directory .fsgk-directory-intro p {
        font-size: 15px;
    }

    .fs3-clubs-directory .fsgk-directory-content {
        padding: 58px 0 72px;
    }

    .fs3-clubs-directory .fsgk-directory-filter,
    .fs3-clubs-directory .fsgk-directory-filter.is-teams {
        grid-template-columns: 1fr;
    }

    .fs3-clubs-directory .fsgk-directory-filter .is-search {
        grid-column: auto;
    }

    .fs3-clubs-directory .fsgk-directory-heading {
        display: block;
        margin-top: 48px;
    }

    .fs3-clubs-directory .fsgk-directory-heading > strong {
        margin-top: 20px;
    }

    .fs3-clubs-directory .fsgk-club-grid,
    .fs3-clubs-directory .fsgk-team-grid {
        grid-template-columns: 1fr;
    }

    .fs3-entity-hero {
        padding-top: 112px;
    }

    .fs3-entity-hero .fsgk-entity-hero__main,
    .fs3-entity-hero .fsgk-entity-hero__identity {
        display: block;
    }

    .fs3-entity-hero .fsgk-entity-hero__crest {
        width: 104px;
        height: 104px;
        margin-bottom: 18px;
    }

    .fs3-entity-hero .fsgk-entity-hero__back {
        margin-top: 24px;
    }

    .fs3-profile-page .fsgk-profile-panel,
    .fs3-profile-page .fsgk-sidebar-card {
        padding: 20px;
    }

    .fs3-profile-page .fsgk-profile-panel > header,
    .fs3-profile-page .fsgk-sidebar-card > header {
        display: block;
    }

    .fs3-profile-page .fsgk-profile-panel > header > a,
    .fs3-profile-page .fsgk-profile-panel > header > strong {
        display: inline-flex;
        margin-top: 13px;
    }

    .fs3-profile-page .fsgk-club-team-list,
    .fs3-profile-page .fsgk-roster-grid {
        grid-template-columns: 1fr;
    }

    .fs3-profile-page .fsgk-team-standing-list > a {
        grid-template-columns: minmax(145px, 1.3fr) repeat(3, 46px);
    }

    .fs3-profile-page .fsgk-team-standing-list > a span:nth-child(4),
    .fs3-profile-page .fsgk-team-standing-list > a span:nth-child(5) {
        display: none;
    }

    .fs3-profile-match .fsgk-profile-match__contest {
        grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
        gap: 8px;
        padding: 16px 10px;
    }

    .fs3-profile-match .fsgk-profile-match__team {
        display: block;
        text-align: center !important;
    }

    .fs3-profile-match .fsgk-profile-match__team.is-home {
        display: flex;
        flex-direction: column-reverse;
    }

    .fs3-profile-match .fsgk-profile-match__team > span {
        margin: 0 auto 5px;
    }

    .fs3-profile-match .fsgk-profile-match__score strong {
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .fs3-clubs-directory .fsgk-directory-stats,
    .fs3-entity-hero .fsgk-entity-facts {
        grid-template-columns: 1fr;
    }

    .fs3-clubs-directory .fsgk-directory-stats article,
    .fs3-entity-hero .fsgk-entity-facts article {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
    }

    .fs3-clubs-directory .fsgk-directory-stats article:last-child,
    .fs3-entity-hero .fsgk-entity-facts article:last-child {
        border-bottom: 0 !important;
    }

    .fs3-team-card .fsgk-team-card__footer {
        display: block;
    }

    .fs3-team-card .fsgk-team-card__footer .fsgk-card-link {
        width: 100%;
        margin-top: 14px;
    }

    .fsgk-profile-nav a {
        padding: 16px 14px;
    }

    .fsgk-profile-nav a i {
        display: none;
    }

    .fs3-profile-match .fsgk-profile-match__meta {
        flex-wrap: wrap;
    }

    .fs3-profile-match .fsgk-profile-match__meta > small {
        margin-left: 0;
    }

    .fs3-profile-match .fsgk-profile-match__contest {
        grid-template-columns: 1fr;
    }

    .fs3-profile-match .fsgk-profile-match__score {
        order: -1;
    }

    .fs3-profile-match .fsgk-profile-match__team,
    .fs3-profile-match .fsgk-profile-match__team.is-home {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left !important;
    }

    .fs3-profile-match .fsgk-profile-match__team > span {
        margin: 0;
    }

    .fs3-profile-match .fsgk-profile-match__footer {
        display: block;
    }

    .fs3-profile-match .fsgk-profile-match__footer a {
        display: inline-block;
        margin-top: 9px;
    }
}
