/* ==========================================================================
   SHOOTER / OWBasket section — FBK portal

   The portal's global stylesheet is written for a dark theme and styles bare
   tags aggressively: `p` is 55% white, `a` and most headings are pure white,
   and `ul` uses a background-clip gradient that renders its text transparent.
   Anything here that does not set its own colour inherits those rules, so every
   text element below is coloured explicitly and the `ul` hack is reset.
   ========================================================================== */

.shooter-page {
    --sh-bg: #0e0e0e;
    --sh-surface: #161719;
    --sh-surface-2: #1d1f22;
    --sh-surface-3: #24272b;
    --sh-line: #2c3035;
    --sh-line-soft: #23262a;
    --sh-text: #f2f4f6;
    --sh-text-dim: #a5adb6;
    --sh-text-faint: #6f7883;
    --sh-accent: #458cff;
    --sh-accent-soft: #458cff1f;
    --sh-live: #ff3d3d;
    --sh-win: #3ddc84;
    --sh-radius: 14px;
    --sh-radius-sm: 10px;

    background: var(--sh-bg);
    background-image:
        radial-gradient(900px 420px at 12% -8%, #458cff24, transparent 62%),
        radial-gradient(760px 380px at 92% 4%, #7d5cff1a, transparent 60%);
    color: var(--sh-text);
    font-family: "Inter Tight", "Inter", system-ui, sans-serif;
    min-height: 80vh;
    padding: 120px 20px 90px;
}

.shooter-shell {
    margin: 0 auto;
    max-width: 1240px;
}

/* Defensive typography reset — see file header. ---------------------------- */

.shooter-page p,
.shooter-page span,
.shooter-page dd,
.shooter-page dt,
.shooter-page td,
.shooter-page th,
.shooter-page li,
.shooter-page strong,
.shooter-page em,
.shooter-page small,
.shooter-page label,
.shooter-page figcaption {
    color: inherit;
    -webkit-text-fill-color: currentColor;
}

.shooter-page ul,
.shooter-page ol {
    background: none;
    color: inherit;
    -webkit-text-fill-color: currentColor;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
    row-gap: 0;
}

.shooter-page h1,
.shooter-page h2,
.shooter-page h3,
.shooter-page h4,
.shooter-page h5,
.shooter-page h6 {
    color: var(--sh-text);
    font-family: "Inter Tight", "Inter", system-ui, sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.shooter-page a {
    color: var(--sh-text);
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
}

/* Page header ------------------------------------------------------------- */

.shooter-kicker {
    align-items: center;
    color: var(--sh-accent);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    letter-spacing: .18em;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.shooter-title {
    color: #fff;
    font-size: clamp(38px, 5.6vw, 68px);
    font-weight: 600;
    margin: 0 0 18px;
}

.shooter-lead {
    color: var(--sh-text-dim);
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
    max-width: 780px;
}

/* Block-level so the kicker paragraph that follows starts on its own line —
   both are flex containers and would otherwise sit side by side. */
.shooter-back {
    align-items: center;
    color: var(--sh-text-dim) !important;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
    letter-spacing: .04em;
    margin-bottom: 26px;
    text-transform: uppercase;
    transition: color .18s ease;
    width: fit-content;
}

.shooter-back:hover {
    color: var(--sh-accent) !important;
}

/* padding rather than margin, so the spacing cannot collapse through the
   wrapping <section> element. */
.shooter-section-title {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 600;
    gap: 14px;
    margin: 0 0 22px;
    padding-top: 56px;
}

.shooter-section-title::after {
    background: linear-gradient(90deg, var(--sh-line), transparent);
    content: "";
    flex: 1;
    height: 1px;
}

/* Filter bar -------------------------------------------------------------- */

.shooter-toolbar {
    align-items: end;
    background: linear-gradient(180deg, var(--sh-surface-2), var(--sh-surface));
    border: 1px solid var(--sh-line);
    border-radius: var(--sh-radius);
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(140px, 1fr)) auto;
    margin: 34px 0;
    padding: 22px;
}

.shooter-field label {
    color: var(--sh-text-faint);
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 9px;
    text-transform: uppercase;
}

.shooter-field input,
.shooter-field select,
.shooter-rounds select {
    appearance: none;
    background: #101113;
    border: 1px solid var(--sh-line);
    border-radius: var(--sh-radius-sm);
    color: var(--sh-text);
    font-family: inherit;
    font-size: 15px;
    min-height: 46px;
    padding: 11px 14px;
    transition: border-color .18s ease, box-shadow .18s ease;
    width: 100%;
}

.shooter-field select,
.shooter-rounds select {
    background-image: linear-gradient(45deg, transparent 50%, var(--sh-text-dim) 50%),
                      linear-gradient(135deg, var(--sh-text-dim) 50%, transparent 50%);
    background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    padding-right: 38px;
}

.shooter-field input:focus,
.shooter-field select:focus,
.shooter-rounds select:focus {
    border-color: var(--sh-accent);
    box-shadow: 0 0 0 3px var(--sh-accent-soft);
    outline: none;
}

.shooter-field option,
.shooter-rounds option {
    background: #15171a;
    color: var(--sh-text);
}

.shooter-button {
    background: var(--sh-accent);
    border: 0;
    border-radius: var(--sh-radius-sm);
    color: #fff !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    min-height: 46px;
    padding: 13px 26px;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.shooter-button:hover {
    background: #5d9bff;
    box-shadow: 0 10px 26px -12px var(--sh-accent);
    transform: translateY(-1px);
}

.shooter-button-ghost {
    background: transparent;
    border: 1px solid var(--sh-line);
    color: var(--sh-text) !important;
}

.shooter-button-ghost:hover {
    background: var(--sh-surface-3);
    border-color: var(--sh-accent);
    box-shadow: none;
}

/* Cards ------------------------------------------------------------------- */

.shooter-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
}

.shooter-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.shooter-card {
    background: linear-gradient(180deg, var(--sh-surface-2), var(--sh-surface));
    border: 1px solid var(--sh-line-soft);
    border-radius: var(--sh-radius);
    color: var(--sh-text) !important;
    display: block;
    overflow: hidden;
    padding: 24px;
    position: relative;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.shooter-card h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 10px;
}

a.shooter-card::before {
    background: linear-gradient(90deg, var(--sh-accent), #7d5cff);
    content: "";
    height: 2px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity .22s ease;
    width: 100%;
}

a.shooter-card:hover {
    border-color: #33404f;
    box-shadow: 0 22px 44px -26px #000, 0 0 0 1px #ffffff08 inset;
    transform: translateY(-4px);
}

a.shooter-card:hover::before {
    opacity: 1;
}

.shooter-meta {
    color: var(--sh-text-faint);
    display: block;
    font-size: 13px;
    line-height: 1.5;
}

/* Chips ------------------------------------------------------------------- */

.shooter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 26px 0;
}

.shooter-chip {
    background: var(--sh-surface-2);
    border: 1px solid var(--sh-line);
    border-radius: 999px;
    color: var(--sh-text-dim) !important;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 17px;
    transition: all .18s ease;
    white-space: nowrap;
}

.shooter-chip:hover {
    border-color: #3d4c5e;
    color: #fff !important;
}

.shooter-chip.is-active {
    background: var(--sh-accent);
    border-color: var(--sh-accent);
    color: #fff !important;
}

/* Round navigation -------------------------------------------------------- */

.shooter-rounds {
    align-items: center;
    background: linear-gradient(180deg, var(--sh-surface-2), var(--sh-surface));
    border: 1px solid var(--sh-line);
    border-radius: var(--sh-radius);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px 18px;
}

.shooter-rounds select {
    flex: 1 1 240px;
    width: auto;
}

.shooter-round-nav {
    align-items: center;
    border: 1px solid var(--sh-line);
    border-radius: var(--sh-radius-sm);
    color: var(--sh-text-dim) !important;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    min-height: 46px;
    padding: 0 16px;
    text-transform: uppercase;
    transition: all .18s ease;
    white-space: nowrap;
}

.shooter-round-nav:hover {
    background: var(--sh-surface-3);
    border-color: var(--sh-accent);
    color: #fff !important;
}

.shooter-round-nav.is-disabled {
    color: #454c55 !important;
    pointer-events: none;
}

/* Match list -------------------------------------------------------------- */

.shooter-matches {
    border: 1px solid var(--sh-line-soft);
    border-radius: var(--sh-radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.shooter-match {
    align-items: center;
    background: var(--sh-surface);
    border-bottom: 1px solid var(--sh-line-soft);
    color: var(--sh-text) !important;
    display: grid;
    gap: 18px;
    grid-template-columns: 118px 1fr 210px;
    padding: 17px 22px;
    position: relative;
    transition: background .18s ease;
}

.shooter-match:last-child {
    border-bottom: 0;
}

.shooter-match::before {
    background: var(--sh-accent);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
    width: 3px;
}

.shooter-match:hover {
    background: var(--sh-surface-2);
}

.shooter-match:hover::before {
    transform: scaleX(1);
}

.shooter-match-when {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.shooter-match-date {
    color: var(--sh-text);
    font-size: 13px;
    font-weight: 700;
}

.shooter-match-time {
    color: var(--sh-text-faint);
    font-size: 13px;
}

.shooter-match-teams {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr auto 1fr;
}

.shooter-team-name {
    color: var(--sh-text);
    font-size: 15px;
    font-weight: 600;
    text-align: right;
}

.shooter-team-away {
    text-align: left;
}

.shooter-match-result {
    align-items: center;
    background: #101113;
    border: 1px solid var(--sh-line);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 18px;
    font-weight: 700;
    justify-content: center;
    min-width: 92px;
    padding: 7px 12px;
}

.shooter-match-result strong {
    color: #fff;
}

.shooter-sep {
    color: var(--sh-text-faint);
    padding: 0 7px;
}

.shooter-vs {
    color: var(--sh-text-faint);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.shooter-match-where {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    gap: 2px;
    text-align: right;
}

.shooter-match-where > span:first-child {
    color: var(--sh-text-dim);
}

.shooter-live {
    align-items: center;
    background: var(--sh-live);
    border-radius: 4px;
    color: #fff;
    display: inline-flex;
    font-size: 10px;
    font-weight: 800;
    gap: 5px;
    letter-spacing: .1em;
    padding: 3px 7px;
    width: fit-content;
}

.shooter-live::before {
    animation: shooter-pulse 1.4s infinite;
    background: #fff;
    border-radius: 50%;
    content: "";
    height: 5px;
    width: 5px;
}

@keyframes shooter-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .25; }
}

/* Scoreboard -------------------------------------------------------------- */

.shooter-scoreboard {
    align-items: center;
    background:
        radial-gradient(700px 220px at 50% 0%, #458cff26, transparent 70%),
        linear-gradient(180deg, var(--sh-surface-2), #101113);
    border: 1px solid var(--sh-line);
    border-radius: 20px;
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr auto 1fr;
    margin: 32px 0;
    padding: 44px 30px;
}

.shooter-scoreboard-team {
    text-align: center;
}

.shooter-scoreboard-team h2 {
    color: #fff;
    font-size: clamp(19px, 2.4vw, 27px);
    font-weight: 600;
    margin: 8px 0 0;
}

.shooter-scoreboard-team a {
    color: #fff !important;
    transition: color .18s ease;
}

.shooter-scoreboard-team a:hover {
    color: var(--sh-accent) !important;
}

.shooter-scoreboard-label {
    color: var(--sh-text-faint);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.shooter-scoreboard-score {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: clamp(34px, 6.5vw, 60px);
    font-weight: 700;
    gap: 10px;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
}

.shooter-scoreboard-score .shooter-sep {
    color: var(--sh-accent);
}

/* Tables ------------------------------------------------------------------ */

.shooter-table-wrap {
    background: var(--sh-surface);
    border: 1px solid var(--sh-line-soft);
    border-radius: var(--sh-radius);
    overflow-x: auto;
}

.shooter-table {
    border-collapse: collapse;
    min-width: 780px;
    width: 100%;
}

.shooter-table th {
    background: #101113;
    border-bottom: 1px solid var(--sh-line);
    color: var(--sh-text-faint);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 15px 16px;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.shooter-table td {
    border-bottom: 1px solid var(--sh-line-soft);
    color: var(--sh-text-dim);
    font-size: 15px;
    padding: 15px 16px;
}

.shooter-table tbody tr:last-child td {
    border-bottom: 0;
}

.shooter-table tbody tr {
    transition: background .16s ease;
}

.shooter-table tbody tr:hover {
    background: var(--sh-surface-2);
}

.shooter-table td strong,
.shooter-table td a {
    color: #fff;
    font-weight: 600;
}

.shooter-table td a:hover {
    color: var(--sh-accent);
}

.shooter-score {
    color: var(--sh-accent) !important;
    font-size: 17px;
    font-weight: 700;
}

/* Details list ------------------------------------------------------------ */

.shooter-details {
    display: grid;
    gap: 12px 22px;
    grid-template-columns: auto 1fr;
    margin: 0 0 20px;
}

.shooter-details dt {
    color: var(--sh-text-faint);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    padding-top: 3px;
    text-transform: uppercase;
}

.shooter-details dd {
    color: var(--sh-text);
    font-size: 15px;
    margin: 0;
}

.shooter-list li {
    align-items: baseline;
    border-bottom: 1px solid var(--sh-line-soft);
    color: var(--sh-text-dim);
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
    gap: 6px;
    padding: 13px 0;
}

.shooter-list li:last-child {
    border-bottom: 0;
}

.shooter-list strong {
    color: #fff;
    font-weight: 600;
}

/* Profile header (club / team) -------------------------------------------- */

.shooter-profile {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 8px;
}

.shooter-profile-badge {
    border-radius: 18px;
    flex: none;
    height: 104px;
    object-fit: cover;
    width: 104px;
}

/* Wins over the circular .shooter-avatar defaults when the two are combined. */
.shooter-profile-badge.shooter-avatar {
    border-radius: 20px;
    font-size: 34px;
    height: 104px;
    margin: 0;
    width: 104px;
}

.shooter-profile-body {
    flex: 1 1 320px;
    min-width: 0;
}

.shooter-profile-body .shooter-title {
    margin-bottom: 14px;
}

.shooter-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shooter-fact {
    background: var(--sh-surface-2);
    border: 1px solid var(--sh-line);
    border-radius: 999px;
    color: var(--sh-text-dim) !important;
    display: inline-flex;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 15px;
}

a.shooter-fact:hover {
    border-color: var(--sh-accent);
    color: #fff !important;
}

.shooter-club-card {
    align-items: center;
    display: flex;
    gap: 18px;
}

.shooter-club-card > div:last-child {
    min-width: 0;
}

.shooter-club-badge {
    align-items: center;
    background: linear-gradient(140deg, #1f2a3d, #14161a);
    border: 1px solid var(--sh-line);
    border-radius: 14px;
    color: var(--sh-accent);
    display: flex;
    flex: none;
    font-size: 25px;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    width: 60px;
}

.shooter-club-card h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

/* People ------------------------------------------------------------------ */

.shooter-person {
    text-align: center;
}

.shooter-person-photo,
.shooter-avatar {
    border-radius: 50%;
    height: 92px;
    margin: 0 auto 14px;
    object-fit: cover;
    width: 92px;
}

.shooter-avatar {
    align-items: center;
    background: linear-gradient(140deg, var(--sh-accent), #7d5cff);
    color: #fff;
    display: flex;
    font-size: 30px;
    font-weight: 700;
    justify-content: center;
}

/* News -------------------------------------------------------------------- */

.shooter-news-card {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.shooter-news-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 26px;
}

.shooter-news-body h3 {
    font-size: 18px;
    line-height: 1.35;
}

.shooter-thumb {
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    width: 100%;
}

.shooter-thumb-placeholder {
    align-items: center;
    background:
        radial-gradient(420px 200px at 30% 0%, #458cff33, transparent 70%),
        linear-gradient(140deg, #1c2230, #121418);
    border-bottom: 1px solid var(--sh-line-soft);
    color: #ffffff2e;
    display: flex;
    font-size: 46px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: -0.03em;
}

.shooter-article-cover {
    border: 1px solid var(--sh-line-soft);
    border-radius: var(--sh-radius);
    display: block;
    margin: 26px 0;
    max-height: 480px;
    object-fit: cover;
    width: 100%;
}

.shooter-gallery {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    margin-top: 22px;
}

.shooter-gallery img {
    border: 1px solid var(--sh-line-soft);
    border-radius: var(--sh-radius-sm);
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* Article body: CMS html, so bare tags are restyled here. ------------------ */

.shooter-article {
    background: var(--sh-surface);
    border: 1px solid var(--sh-line-soft);
    border-radius: var(--sh-radius);
    color: var(--sh-text-dim);
    font-size: 17px;
    line-height: 1.8;
    margin-top: 26px;
    padding: 34px 38px;
}

/* The CMS body is authored against the portal's global tag styles, where h2 is
   52px. Sizes are pinned here so an article heading — including the empty one
   the editor often leaves at the top — cannot blow the layout open. */
.shooter-article :is(h1, h2, h3, h4, h5, h6) {
    background: none !important;
    color: #fff !important;
    line-height: 1.3;
    margin: 30px 0 14px;
}

.shooter-article h1 { font-size: 29px; }
.shooter-article h2 { font-size: 25px; }
.shooter-article h3 { font-size: 21px; }
.shooter-article :is(h4, h5, h6) { font-size: 18px; }

.shooter-article > :first-child {
    margin-top: 0;
}

.shooter-article :is(p, span, div, li, td, strong, em, b, i, a, blockquote) {
    background-color: transparent !important;
    color: var(--sh-text-dim) !important;
    -webkit-text-fill-color: var(--sh-text-dim) !important;
    font-family: inherit !important;
    font-size: inherit !important;
}

.shooter-article :is(strong, b) {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-weight: 600;
}

.shooter-article a {
    color: var(--sh-accent) !important;
    -webkit-text-fill-color: var(--sh-accent) !important;
    text-decoration: underline;
}

.shooter-article p {
    margin: 0 0 18px;
}

.shooter-article :is(ul, ol) {
    list-style: revert;
    margin: 0 0 18px;
    padding-left: 24px;
}

.shooter-article li {
    margin-bottom: 8px;
}

.shooter-article img {
    border-radius: var(--sh-radius-sm);
    height: auto;
    margin: 12px 0;
    max-width: 100%;
}

.shooter-article :is(table, tbody, tr, td, th) {
    max-width: 100%;
}

/* Documents --------------------------------------------------------------- */

.shooter-documents {
    border: 1px solid var(--sh-line-soft);
    border-radius: var(--sh-radius);
    margin-top: 26px;
    overflow: hidden;
}

.shooter-documents li {
    align-items: center;
    background: var(--sh-surface);
    border-bottom: 1px solid var(--sh-line-soft);
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    padding: 18px 22px;
    transition: background .16s ease;
}

.shooter-documents li:last-child {
    border-bottom: 0;
}

.shooter-documents li:hover {
    background: var(--sh-surface-2);
}

.shooter-documents a {
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
}

.shooter-documents a:hover {
    color: var(--sh-accent) !important;
}

.shooter-doc-icon {
    align-items: center;
    background: var(--sh-accent-soft);
    border-radius: 8px;
    color: var(--sh-accent);
    display: inline-flex;
    flex: none;
    font-size: 11px;
    font-weight: 700;
    height: 34px;
    justify-content: center;
    letter-spacing: .04em;
    text-transform: uppercase;
    width: 34px;
}

/* States ------------------------------------------------------------------ */

.shooter-alert {
    align-items: flex-start;
    background: #2a1f14;
    border: 1px solid #5a4322;
    border-radius: var(--sh-radius);
    color: #f2c98a;
    display: flex;
    gap: 12px;
    margin: 26px 0;
    padding: 18px 22px;
}

.shooter-empty {
    background: linear-gradient(180deg, var(--sh-surface-2), var(--sh-surface));
    border: 1px dashed var(--sh-line);
    border-radius: var(--sh-radius);
    color: var(--sh-text-dim);
    font-size: 16px;
    margin: 26px 0;
    padding: 46px 30px;
    text-align: center;
}

.shooter-empty strong {
    color: #fff;
    display: block;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}

.shooter-empty .shooter-button,
.shooter-empty .shooter-button-ghost {
    margin-top: 20px;
}

.shooter-pager {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 44px;
}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 1000px) {
    .shooter-grid,
    .shooter-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .shooter-toolbar {
        grid-template-columns: repeat(2, 1fr);
    }

    .shooter-match {
        grid-template-columns: 104px 1fr;
    }

    .shooter-match-where {
        display: none;
    }
}

@media (max-width: 620px) {
    .shooter-page {
        padding: 100px 16px 70px;
    }

    .shooter-grid,
    .shooter-grid-2,
    .shooter-toolbar {
        grid-template-columns: 1fr;
    }

    .shooter-match {
        gap: 12px;
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .shooter-match-when {
        align-items: center;
        flex-direction: row;
        gap: 10px;
    }

    .shooter-match-teams {
        gap: 10px;
    }

    .shooter-team-name {
        font-size: 14px;
    }

    .shooter-scoreboard {
        gap: 16px;
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .shooter-article {
        padding: 24px 20px;
    }

    .shooter-details {
        grid-template-columns: 1fr;
        gap: 4px 0;
    }

    .shooter-details dd {
        margin-bottom: 12px;
    }
}
