/* Primer 5 — pojedinačna utakmica */

.primer5-match-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 22%, rgba(190, 47, 67, .28), transparent 28%),
        radial-gradient(circle at 15% 85%, rgba(21, 95, 145, .45), transparent 32%),
        linear-gradient(120deg, var(--p5-navy-950), var(--p5-navy-900) 58%, #084b79);
}

.primer5-match-hero__grid {
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
}

.primer5-match-hero__orb {
    position: absolute;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.primer5-match-hero__orb--one { width: 370px; height: 370px; right: -120px; top: -170px; }
.primer5-match-hero__orb--two { width: 240px; height: 240px; left: -100px; bottom: -130px; background: rgba(255,255,255,.025); }

.primer5-match-hero__inner {
    position: relative;
    z-index: 2;
    padding-top: 52px;
    padding-bottom: 54px;
}

.primer5-match-hero__meta {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.primer5-match-hero__meta > span,
.primer5-match-hero__meta > strong {
    min-height: 30px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.76);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.primer5-match-hero__meta > strong { color: #fff; background: rgba(255,255,255,.12); }
.primer5-match-hero__meta > strong.is-live { background: #16865c; border-color: #16865c; }
.primer5-match-hero__meta > strong.is-finished { background: var(--p5-red-600); border-color: var(--p5-red-600); }
.primer5-match-hero__meta > strong.is-warning { color: #2d2300; background: #ffd95a; border-color: #ffd95a; }
.primer5-match-hero__meta > strong.is-cancelled { background: #6d7680; border-color: #6d7680; }

.primer5-scoreboard {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px minmax(0, 1fr);
    align-items: center;
    gap: 34px;
}

.primer5-scoreboard__team {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 22px;
    color: #fff;
    transition: transform var(--p5-transition), opacity var(--p5-transition);
}

.primer5-scoreboard__team:hover { color: #fff; transform: translateY(-4px); }
.primer5-scoreboard__team--away { flex-direction: row-reverse; text-align: right; }

.primer5-scoreboard__crest {
    width: 126px;
    height: 126px;
    flex: 0 0 126px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--p5-navy-900);
    background: #fff;
    border: 8px solid rgba(255,255,255,.11);
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(0,0,0,.2);
}

.primer5-scoreboard__crest img { width: 100%; height: 100%; padding: 15px; object-fit: contain; }
.primer5-scoreboard__crest b { font-size: 25px; font-weight: 900; }

.primer5-scoreboard__copy { min-width: 0; display: flex; flex-direction: column; }
.primer5-scoreboard__copy small { margin-bottom: 4px; color: rgba(255,255,255,.56); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.primer5-scoreboard__copy strong { color: #fff; font-size: clamp(25px, 3vw, 42px); line-height: 1.02; font-weight: 900; letter-spacing: -.04em; overflow-wrap: anywhere; }
.primer5-scoreboard__copy em { margin-top: 8px; color: rgba(255,255,255,.54); font-size: 11px; font-style: normal; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

.primer5-scoreboard__center { text-align: center; }
.primer5-scoreboard__center > span { color: rgba(255,255,255,.58); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.primer5-scoreboard__center > small { display: block; margin-top: 8px; color: rgba(255,255,255,.66); font-size: 13px; font-weight: 700; }

.primer5-scoreboard__score {
    margin: 5px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.primer5-scoreboard__score b { color: #fff; font-size: clamp(58px, 7vw, 92px); line-height: .95; font-weight: 950; letter-spacing: -.06em; }
.primer5-scoreboard__score i { color: var(--p5-red-500); font-size: 48px; line-height: 1; font-style: normal; font-weight: 900; }
.primer5-scoreboard__time { margin: 8px 0 2px; color: #fff; font-size: clamp(52px, 7vw, 82px); line-height: 1; font-weight: 950; letter-spacing: -.055em; }

.primer5-match-hero__facts {
    max-width: 880px;
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    backdrop-filter: blur(9px);
}

.primer5-match-hero__facts > span {
    min-width: 0;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.primer5-match-hero__facts > span:last-child { border-right: 0; }
.primer5-match-hero__facts svg { grid-row: 1 / 3; margin-top: 3px; color: var(--p5-red-500); }
.primer5-match-hero__facts b,
.primer5-match-hero__facts small { min-width: 0; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.primer5-match-hero__facts b { color: #fff; font-size: 13px; font-weight: 850; }
.primer5-match-hero__facts small { color: rgba(255,255,255,.57); font-size: 11px; }

.primer5-match-main { background: var(--p5-surface-soft); }

.primer5-match-score-details {
    background: #fff;
    border-bottom: 1px solid var(--p5-line);
    box-shadow: 0 10px 26px rgba(0,55,100,.04);
}

.primer5-match-score-details__inner {
    min-height: 86px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
}
.primer5-match-score-details__inner::-webkit-scrollbar { display: none; }
.primer5-match-score-details__inner > span { min-width: 175px; padding: 18px 26px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid var(--p5-line); }
.primer5-match-score-details__inner > span:first-child { border-left: 1px solid var(--p5-line); }
.primer5-match-score-details__inner small { color: var(--p5-ink-500); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.primer5-match-score-details__inner strong { margin-top: 2px; color: var(--p5-navy-900); font-size: 19px; font-weight: 900; }
.primer5-match-score-details__inner .is-official strong { color: var(--p5-red-600); }
.primer5-match-score-details__reason { margin: -1px 0 18px; padding: 12px 16px; display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--p5-ink-700); background: var(--p5-red-100); border-radius: 10px; font-size: 13px; }
.primer5-match-score-details__reason svg { color: var(--p5-red-600); }

.primer5-match-content { padding-top: 78px; padding-bottom: 96px; }
.primer5-match-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; align-items: start; gap: 28px; }
.primer5-match-layout__main,
.primer5-match-sidebar { min-width: 0; display: grid; gap: 24px; }

.primer5-match-panel,
.primer5-sidebar-card {
    background: #fff;
    border: 1px solid var(--p5-line);
    border-radius: var(--p5-radius-md);
    box-shadow: var(--p5-shadow-sm);
}

.primer5-match-panel { padding: 30px; }
.primer5-match-panel__header { margin-bottom: 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.primer5-match-panel__header span,
.primer5-sidebar-card > header > span { display: block; margin-bottom: 5px; color: var(--p5-red-600); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.primer5-match-panel__header h2,
.primer5-sidebar-card > header h2 { margin: 0; color: var(--p5-navy-900); font-size: 25px; line-height: 1.12; font-weight: 900; letter-spacing: -.025em; }
.primer5-panel-count { color: var(--p5-navy-900); font-size: 27px; line-height: .9; text-align: right; }
.primer5-panel-count small { display: block; margin-top: 5px; color: var(--p5-ink-500); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.primer5-match-timeline { position: relative; display: grid; gap: 12px; }
.primer5-match-timeline::before { content: ""; position: absolute; left: 48px; top: 18px; bottom: 18px; width: 2px; background: var(--p5-line); }
.primer5-match-event { position: relative; z-index: 1; min-height: 76px; padding: 12px 14px 12px 0; display: grid; grid-template-columns: 35px 44px minmax(0, 1fr) auto; align-items: center; gap: 12px; background: var(--p5-surface-soft); border: 1px solid transparent; border-radius: 14px; }
.primer5-match-event time { color: var(--p5-navy-900); font-size: 13px; font-weight: 900; text-align: right; }
.primer5-match-event__icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--p5-navy-900); background: #fff; border: 1px solid var(--p5-line); border-radius: 50%; }
.primer5-match-event.is-goal .primer5-match-event__icon { color: #fff; background: var(--p5-red-600); border-color: var(--p5-red-600); }
.primer5-match-event.is-yellow-card .primer5-match-event__icon { color: #352a00; background: #ffd95a; border-color: #ffd95a; }
.primer5-match-event.is-red-card .primer5-match-event__icon { color: #fff; background: #c52f3f; border-color: #c52f3f; }
.primer5-match-event.is-substitution .primer5-match-event__icon { color: #fff; background: var(--p5-success); border-color: var(--p5-success); }
.primer5-match-event__copy { min-width: 0; }
.primer5-match-event__copy small { display: block; color: var(--p5-ink-500); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.primer5-match-event__copy strong { display: block; color: var(--p5-navy-900); font-size: 15px; font-weight: 850; }
.primer5-match-event__copy p { margin: 1px 0 0; color: var(--p5-ink-500); font-size: 13px; }
.primer5-match-event__score { min-width: 58px; padding: 7px 9px; color: #fff; background: var(--p5-navy-900); border-radius: 9px; font-size: 14px; text-align: center; }

.primer5-match-stats__teams,
.primer5-match-stat-row { display: grid; grid-template-columns: 82px minmax(0, 1fr) 82px; align-items: center; gap: 16px; }
.primer5-match-stats__teams { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--p5-line); }
.primer5-match-stats__teams strong { color: var(--p5-navy-900); font-size: 12px; font-weight: 850; text-align: center; overflow-wrap: anywhere; }
.primer5-match-stats__teams span { color: var(--p5-ink-500); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.primer5-match-stat-row { min-height: 66px; border-bottom: 1px solid var(--p5-line); }
.primer5-match-stat-row:last-child { border-bottom: 0; }
.primer5-match-stat-row > strong { color: var(--p5-navy-900); font-size: 19px; font-weight: 900; text-align: center; }
.primer5-match-stat-row > div { min-width: 0; text-align: center; }
.primer5-match-stat-row > div > span { display: block; margin-bottom: 8px; color: var(--p5-ink-700); font-size: 12px; font-weight: 800; }
.primer5-match-stat-row i { height: 7px; display: flex; overflow: hidden; background: var(--p5-line); border-radius: 999px; }
.primer5-match-stat-row i b { height: 100%; background: var(--p5-red-600); }
.primer5-match-stat-row i em { height: 100%; background: var(--p5-navy-700); }

.primer5-lineups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.primer5-lineup-card { overflow: hidden; background: var(--p5-surface-soft); border: 1px solid var(--p5-line); border-radius: 16px; }
.primer5-lineup-card > header { min-height: 82px; padding: 14px 18px; display: flex; align-items: center; gap: 13px; color: #fff; background: var(--p5-navy-900); }
.primer5-lineup-card > header > span { width: 52px; height: 52px; flex: 0 0 52px; display: grid; place-items: center; overflow: hidden; color: var(--p5-navy-900); background: #fff; border-radius: 12px; }
.primer5-lineup-card > header img { width: 100%; height: 100%; padding: 6px; object-fit: contain; }
.primer5-lineup-card > header b { font-size: 14px; font-weight: 900; }
.primer5-lineup-card > header small { display: block; color: rgba(255,255,255,.57); font-size: 9px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.primer5-lineup-card > header h3 { margin: 1px 0 0; color: #fff; font-size: 18px; font-weight: 900; }
.primer5-lineup-card > section { padding: 17px; }
.primer5-lineup-card > section + section { border-top: 1px solid var(--p5-line); }
.primer5-lineup-card h4 { margin: 0 0 10px; color: var(--p5-red-600); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.primer5-lineup-list { display: grid; gap: 7px; }
.primer5-lineup-player { min-height: 54px; padding: 7px 8px; display: grid; grid-template-columns: 30px 38px minmax(0, 1fr) auto; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--p5-line); border-radius: 11px; }
.primer5-lineup-player__number { color: var(--p5-navy-900); font-size: 15px; font-weight: 900; text-align: center; }
.primer5-lineup-player__photo { width: 38px; height: 38px; display: grid; place-items: center; overflow: hidden; color: #fff; background: var(--p5-navy-700); border-radius: 50%; }
.primer5-lineup-player__photo img { width: 100%; height: 100%; object-fit: cover; }
.primer5-lineup-player__photo b { font-size: 10px; }
.primer5-lineup-player > div { min-width: 0; }
.primer5-lineup-player > div strong,
.primer5-lineup-player > div small { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.primer5-lineup-player > div strong { color: var(--p5-navy-900); font-size: 13px; font-weight: 850; }
.primer5-lineup-player > div small { color: var(--p5-ink-500); font-size: 10px; }
.primer5-lineup-player > em { color: var(--p5-red-600); font-size: 9px; font-style: normal; font-weight: 900; }

.primer5-match-report__lead { margin: -8px 0 24px; padding: 16px 18px; color: var(--p5-ink-700); background: var(--p5-surface-soft); border-left: 4px solid var(--p5-red-600); border-radius: 0 12px 12px 0; font-size: 17px; font-weight: 700; }
.primer5-richtext { color: var(--p5-ink-700); }
.primer5-richtext > :first-child { margin-top: 0; }
.primer5-richtext > :last-child { margin-bottom: 0; }
.primer5-richtext h2,
.primer5-richtext h3 { color: var(--p5-navy-900); font-weight: 900; }
.primer5-richtext img { height: auto; border-radius: 14px; }

.primer5-match-note { display: flex; align-items: flex-start; gap: 16px; }
.primer5-match-note > span { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; color: var(--p5-red-600); background: var(--p5-red-100); border-radius: 13px; }
.primer5-match-note small { display: block; color: var(--p5-red-600); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.primer5-match-note p { margin: 4px 0 0; color: var(--p5-ink-700); }

.primer5-sidebar-card { padding: 25px; }
.primer5-sidebar-card > header { margin-bottom: 19px; }
.primer5-info-list { display: grid; }
.primer5-info-list > div { min-height: 65px; padding: 12px 0; display: flex; align-items: flex-start; gap: 12px; border-bottom: 1px solid var(--p5-line); }
.primer5-info-list > div:last-child { border-bottom: 0; }
.primer5-info-list > div > span { width: 39px; height: 39px; flex: 0 0 39px; display: grid; place-items: center; color: var(--p5-red-600); background: var(--p5-red-100); border-radius: 11px; }
.primer5-info-list > div > div { min-width: 0; }
.primer5-info-list small,
.primer5-info-list strong,
.primer5-info-list a,
.primer5-info-list em { display: block; }
.primer5-info-list small { color: var(--p5-ink-500); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.primer5-info-list strong,
.primer5-info-list a { color: var(--p5-navy-900); font-size: 13px; line-height: 1.35; font-weight: 850; overflow-wrap: anywhere; }
.primer5-info-list a:hover { color: var(--p5-red-600); }
.primer5-info-list em { color: var(--p5-ink-500); font-size: 11px; font-style: normal; }

.primer5-match-officials { display: grid; gap: 9px; }
.primer5-match-officials article { min-height: 62px; padding: 8px; display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: 11px; background: var(--p5-surface-soft); border-radius: 12px; }
.primer5-match-officials article > span { width: 44px; height: 44px; display: grid; place-items: center; overflow: hidden; color: #fff; background: var(--p5-navy-700); border-radius: 50%; }
.primer5-match-officials article img { width: 100%; height: 100%; object-fit: cover; }
.primer5-match-officials article b { font-size: 10px; }
.primer5-match-officials article > div { min-width: 0; }
.primer5-match-officials article strong,
.primer5-match-officials article small { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.primer5-match-officials article strong { color: var(--p5-navy-900); font-size: 13px; font-weight: 850; }
.primer5-match-officials article small { color: var(--p5-ink-500); font-size: 10px; }
.primer5-match-officials article em { color: var(--p5-red-600); font-size: 8px; font-style: normal; font-weight: 900; text-transform: uppercase; }

.primer5-sidebar-links { display: grid; }
.primer5-sidebar-links a { min-height: 66px; padding: 11px 0; display: flex; align-items: center; justify-content: space-between; gap: 13px; border-bottom: 1px solid var(--p5-line); transition: color var(--p5-transition), padding var(--p5-transition); }
.primer5-sidebar-links a:last-child { border-bottom: 0; }
.primer5-sidebar-links a:hover { color: var(--p5-red-600); padding-left: 5px; }
.primer5-sidebar-links a span { min-width: 0; }
.primer5-sidebar-links strong,
.primer5-sidebar-links small { display: block; }
.primer5-sidebar-links strong { color: var(--p5-navy-900); font-size: 13px; font-weight: 850; }
.primer5-sidebar-links a:hover strong { color: var(--p5-red-600); }
.primer5-sidebar-links small { color: var(--p5-ink-500); font-size: 10px; }

@media (max-width: 1199.98px) {
    .primer5-scoreboard { grid-template-columns: minmax(0, 1fr) 210px minmax(0, 1fr); gap: 22px; }
    .primer5-scoreboard__crest { width: 104px; height: 104px; flex-basis: 104px; border-radius: 23px; }
    .primer5-match-layout { grid-template-columns: minmax(0, 1fr) 330px; }
    .primer5-lineups { grid-template-columns: 1fr; }
}

@media (max-width: 991.98px) {
    .primer5-match-hero__inner { padding-top: 42px; }
    .primer5-scoreboard { grid-template-columns: 1fr 170px 1fr; gap: 14px; }
    .primer5-scoreboard__team { gap: 13px; }
    .primer5-scoreboard__crest { width: 82px; height: 82px; flex-basis: 82px; border-width: 5px; border-radius: 19px; }
    .primer5-scoreboard__copy strong { font-size: 25px; }
    .primer5-scoreboard__score b { font-size: 58px; }
    .primer5-scoreboard__score i { font-size: 35px; }
    .primer5-scoreboard__time { font-size: 52px; }
    .primer5-match-hero__facts { margin-top: 34px; }
    .primer5-match-layout { grid-template-columns: 1fr; }
    .primer5-match-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .primer5-match-sidebar > section:last-child { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
    .primer5-match-hero__inner { padding-top: 30px; padding-bottom: 36px; }
    .primer5-match-hero .primer5-breadcrumb { margin-bottom: 25px; }
    .primer5-match-hero__meta { justify-content: flex-start; margin-bottom: 24px; }
    .primer5-scoreboard { grid-template-columns: 1fr 95px 1fr; align-items: start; gap: 8px; }
    .primer5-scoreboard__team { flex-direction: column; gap: 9px; text-align: center; }
    .primer5-scoreboard__team--away { flex-direction: column; text-align: center; }
    .primer5-scoreboard__crest { width: 72px; height: 72px; flex-basis: 72px; border-radius: 17px; }
    .primer5-scoreboard__copy small,
    .primer5-scoreboard__copy em { display: none; }
    .primer5-scoreboard__copy strong { font-size: 17px; line-height: 1.1; }
    .primer5-scoreboard__center { padding-top: 16px; }
    .primer5-scoreboard__center > span { font-size: 8px; }
    .primer5-scoreboard__score { gap: 6px; }
    .primer5-scoreboard__score b { font-size: 42px; }
    .primer5-scoreboard__score i { font-size: 27px; }
    .primer5-scoreboard__time { font-size: 37px; }
    .primer5-scoreboard__center > small { margin-top: 4px; font-size: 10px; }
    .primer5-match-hero__facts { grid-template-columns: 1fr; }
    .primer5-match-hero__facts > span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .primer5-match-hero__facts > span:last-child { border-bottom: 0; }
    .primer5-match-score-details__inner { justify-content: flex-start; }
    .primer5-match-content { padding-top: 52px; padding-bottom: 70px; }
    .primer5-match-panel { padding: 21px; }
    .primer5-match-panel__header { align-items: flex-start; }
    .primer5-match-panel__header h2,
    .primer5-sidebar-card > header h2 { font-size: 21px; }
    .primer5-match-event { grid-template-columns: 31px 40px minmax(0, 1fr); }
    .primer5-match-event__score { grid-column: 3; justify-self: start; }
    .primer5-match-stats__teams,
    .primer5-match-stat-row { grid-template-columns: 60px minmax(0, 1fr) 60px; gap: 8px; }
    .primer5-match-sidebar { grid-template-columns: 1fr; }
    .primer5-match-sidebar > section:last-child { grid-column: auto; }
}

@media (max-width: 479.98px) {
    .primer5-match-hero__meta > span:nth-child(n+3) { display: none; }
    .primer5-scoreboard { grid-template-columns: minmax(0, 1fr) 82px minmax(0, 1fr); }
    .primer5-scoreboard__crest { width: 62px; height: 62px; flex-basis: 62px; padding: 0; }
    .primer5-scoreboard__crest img { padding: 8px; }
    .primer5-scoreboard__copy strong { font-size: 14px; }
    .primer5-scoreboard__score b { font-size: 36px; }
    .primer5-scoreboard__time { font-size: 32px; }
    .primer5-match-panel { padding: 17px; border-radius: 15px; }
    .primer5-match-event { padding-right: 9px; gap: 8px; }
    .primer5-match-event__copy strong { font-size: 13px; }
    .primer5-match-event__copy p { font-size: 11px; }
    .primer5-lineup-card > section { padding: 12px; }
    .primer5-lineup-player { grid-template-columns: 25px 34px minmax(0, 1fr); }
    .primer5-lineup-player > em { grid-column: 3; }
}
