﻿:root {
    --navy: #102a43;
    --navy-2: #163d63;
    --blue: #1677ff;
    --sky: #eaf3ff;
    --bg: #f3f6fa;
    --surface: #ffffff;
    --border: #dbe5ef;
    --text: #183b56;
    --muted: #6b7c93;
    --green: #15803d;
    --red: #dc2626;
    --amber: #b45309;
    --shadow: 0 16px 44px rgba(16,42,67,.10);
}
* { box-sizing: border-box; }
html { background: var(--bg); }
body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: radial-gradient(circle at top right, rgba(22,119,255,.08), transparent 28rem), var(--bg);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
a, a:link, a:visited { color: inherit; text-decoration: none; }
a:hover { color: inherit; text-decoration: none; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(219,229,239,.9);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
}
.site-header__inner {
    width: min(1180px, calc(100% - 28px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
    width: 44px; height: 44px; display: grid; place-items: center;
    border-radius: 14px; color: #fff; font-weight: 800;
    background: linear-gradient(145deg, var(--blue), var(--navy));
    box-shadow: 0 10px 24px rgba(22,119,255,.22);
}
.brand__copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand__copy strong { color: var(--navy); font-size: 18px; }
.brand__copy small { color: var(--muted); font-size: 11px; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav__link { padding: 10px 14px; border-radius: 10px; color: var(--muted) !important; font-weight: 700; font-size: 14px; }
.main-nav__link:hover, .main-nav__link--active { color: var(--navy) !important; background: var(--sky); }
.site-main { padding: 28px 0 70px; }
.page-shell { width: min(980px, calc(100% - 24px)); margin: 0 auto; }
.competition-dashboard > span { display: block; }
.show-hero {
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    box-shadow: var(--shadow);
}
.show-hero__title { padding: 28px 26px 20px; text-align: center; font-size: 18px; }
.show-hero__title b { display: block; font-size: clamp(24px, 5vw, 36px); letter-spacing: -.03em; }
.show-actions { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.14); }
.show-action { min-height: 94px; padding: 17px; display: grid; place-items: center; text-align: center; border-right: 1px solid rgba(255,255,255,.14); }
.show-action:last-child { border-right: 0; }
.show-action a { color: #fff !important; font-weight: 700; }
.show-notice { padding: 14px 22px 18px; text-align: center; color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.55; border-top: 1px solid rgba(255,255,255,.14); }
.show-notice a { color: #fff !important; text-decoration: underline; }
.day-toggle {
    width: 100%; margin: 8px 0; padding: 17px 20px;
    display: flex; align-items: center; justify-content: space-between;
    border: 1px solid var(--border); border-radius: 16px;
    color: var(--navy) !important; background: #fff;
    font-weight: 800; box-shadow: 0 8px 24px rgba(16,42,67,.06);
}
.day-toggle::after { content: "⌄"; font-size: 20px; color: var(--blue); }
.day-toggle--today { color: #fff !important; border-color: transparent; background: linear-gradient(135deg, var(--red), #ef4444); }
.day-toggle--today::after { color: #fff; }
.day-panel { padding: 4px 0 8px; }
.competition-list { display: grid; gap: 12px; }
.competition-card {
    display: grid; grid-template-columns: 105px minmax(0,1fr);
    overflow: hidden; border: 1px solid var(--border); border-radius: 18px;
    background: var(--surface); box-shadow: 0 10px 30px rgba(16,42,67,.07);
}
.competition-time {
    padding: 20px 14px; display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--navy); background: #f7faff; border-right: 1px solid var(--border);
}
.competition-time > strong { font-size: 25px; letter-spacing: -.04em; }
.start-count { margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.start-count span { min-width: 30px; height: 30px; display: grid; place-items: center; border-radius: 999px; color: #fff; background: var(--green); font-weight: 800; }
.start-count small { color: var(--muted); font-size: 11px; }
.competition-info { padding: 20px; line-height: 1.55; color: var(--muted); }
.competition-title { display: inline-block; margin-bottom: 4px; color: var(--navy); font-size: 18px; line-height: 1.3; }
.competition-info > div:last-child { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.action-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 38px; padding: 8px 13px; border-radius: 10px;
    color: #fff !important; font-size: 12px; font-weight: 800;
    transition: transform .16s ease, box-shadow .16s ease;
}
.action-btn:hover { transform: translateY(-1px); box-shadow: 0 7px 16px rgba(16,42,67,.15); }
.action-btn--primary { background: var(--blue); }
.action-btn--success { background: var(--green); }
.action-btn--live { background: var(--red); }
.action-btn--live::before { content: "●"; margin-right: 6px; animation: pulse 1.2s infinite; }
.action-btn--muted { color: var(--navy) !important; background: #e8eef5; }
.app-footer { margin-top: 26px; padding: 22px; text-align: center; color: var(--muted); font-size: 12px; }
.app-footer a { color: var(--navy) !important; font-weight: 800; }
@keyframes pulse { 50% { opacity: .35; } }
@media (max-width: 640px) {
    .site-header__inner { min-height: 66px; }
    .brand__copy small { display: none; }
    .main-nav__link { padding: 9px 9px; font-size: 12px; }
    .show-actions { grid-template-columns: 1fr; }
    .show-action { min-height: 62px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
    .show-action:last-child { border-bottom: 0; }
    .competition-card { grid-template-columns: 82px minmax(0,1fr); }
    .competition-time { padding: 16px 8px; }
    .competition-time > strong { font-size: 21px; }
    .competition-info { padding: 16px; }
    .competition-title { font-size: 16px; }
    .action-btn { flex: 1 1 calc(50% - 8px); }
}
.show-hero__title span { display: block; margin-top: 5px; color: rgba(255,255,255,.74); font-size: 14px; }
.show-action > a { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.show-action i { font-size: 20px; }
.show-action__label { color: rgba(255,255,255,.68); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.show-action__links { display: flex; flex-direction: row; gap: 22px; }


/* Competition lists, results and directory */
.list-page { display: block; }
.competition-sheet, .directory-sheet {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.sheet-header {
    display: grid;
    grid-template-columns: 190px minmax(0,1fr) 150px;
    align-items: stretch;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
}
.sheet-date, .sheet-title, .sheet-meta { padding: 24px; }
.sheet-date { display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.13); }
.sheet-date strong { font-size: 19px; }
.sheet-date span, .sheet-title p, .sheet-meta span { margin-top: 6px; color: rgba(255,255,255,.7); font-size: 13px; }
.sheet-title { text-align: center; }
.sheet-title > span, .page-kicker { display: block; margin-bottom: 5px; color: #8fc5ff; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.sheet-title h1 { margin: 0; font-size: clamp(22px,4vw,34px); line-height: 1.15; }
.sheet-title p { margin-bottom: 0; }
.sheet-meta { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-left: 1px solid rgba(255,255,255,.13); }
.sheet-meta strong { font-size: 18px; }
.home-button {
    width: 42px; height: 42px; margin-top: 13px; display: grid; place-items: center;
    border-radius: 12px; color: #fff !important; background: rgba(255,255,255,.14);
    font-size: 24px; font-weight: 800;
}
.start-list, .result-list, .rider-list { display: grid; }
.start-row {
    display: grid; grid-template-columns: 76px 64px minmax(180px,1fr) minmax(220px,1.15fr);
    align-items: center; min-height: 94px; border-top: 1px solid var(--border);
}
.start-row:hover, .result-row:hover, .rider-row:hover { background: #f8fbff; }
.start-number, .start-flag, .start-person, .start-horse { padding: 16px; }
.start-number { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #f4f8fc; color: var(--navy); }
.start-number strong { font-size: 25px; }
.start-number small { color: var(--muted); font-size: 10px; text-align: center; }
.start-flag, .result-flag, .rider-flag { text-align: center; }
.start-flag img, .result-flag img, .rider-flag img { width: 38px; max-height: 27px; object-fit: contain; border-radius: 3px; box-shadow: 0 2px 7px rgba(0,0,0,.12); }
.start-flag small { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; }
.start-person strong, .start-horse strong, .result-person strong, .rider-info strong { display: block; color: var(--navy); font-size: 17px; }
.start-person span, .start-horse span, .result-person span, .rider-info span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }
.start-person small, .start-horse small { display: block; margin-top: 4px; color: #8797a8; font-size: 11px; line-height: 1.35; }
.group-heading { padding: 10px 18px; color: #fff; background: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.waiting-banner { padding: 10px 18px; color: #754400; background: #fff4c7; font-size: 13px; font-weight: 800; }
.result-row {
    display: grid; grid-template-columns: 74px 64px minmax(0,1fr) 130px;
    align-items: center; min-height: 82px; border-top: 1px solid var(--border);
}
.result-row--waiting { opacity: .68; }
.result-rank { height: 100%; padding: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--navy); background: #f4f8fc; }
.result-rank strong, .result-rank:not(:has(strong)) { font-size: 22px; font-weight: 800; }
.result-rank small { color: var(--muted); font-size: 10px; text-align: center; }
.result-person { padding: 15px; }
.result-score { padding: 15px 20px; text-align: right; border-left: 1px solid var(--border); }
.result-score strong { display: block; color: var(--navy); font-size: 23px; }
.result-score span, .result-score small { display: block; color: var(--muted); font-size: 12px; }
.directory-header, .page-title-card {
    padding: 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
    color: #fff; background: linear-gradient(135deg, var(--navy), var(--navy-2));
}
.directory-header h1, .page-title-card h1 { margin: 0; font-size: 34px; }
.directory-header p, .page-title-card p { margin: 6px 0 0; color: rgba(255,255,255,.7); }
.count-pill, .live-pill { padding: 9px 14px; border-radius: 999px; color: #fff; background: rgba(255,255,255,.14); font-size: 13px; font-weight: 800; white-space: nowrap; }
.rider-row { display: grid; grid-template-columns: 74px minmax(0,1fr) 78px; align-items: center; min-height: 76px; border-top: 1px solid var(--border); }
.rider-id { height: 100%; display: grid; place-items: center; color: var(--navy); background: #f4f8fc; font-weight: 800; }
.rider-info { padding: 14px 18px; }
.rider-flag { padding: 12px; }
.rider-flag small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 800; }
.live-toolbar { margin-bottom: 12px; padding: 12px 15px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--border); border-radius: 14px; background: #fff; }
.live-pill { color: #fff; background: var(--red); }
.live-pill i { width: 8px; height: 8px; margin-right: 7px; display: inline-block; border-radius: 50%; background: #fff; animation: pulse 1.2s infinite; }
.live-connection { color: var(--muted); font-size: 12px; }
.empty-state { padding: 42px 24px; text-align: center; color: var(--muted); border: 1px dashed var(--border); border-radius: 18px; background: #fff; }
.live-page .result-list { overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.page-title-card { margin-bottom: 16px; border-radius: 20px; box-shadow: var(--shadow); }
.page-title-card .home-button { margin: 0; flex: 0 0 auto; }

@media (max-width: 720px) {
    .sheet-header { grid-template-columns: 1fr 100px; }
    .sheet-date { grid-column: 1 / -1; padding: 17px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
    .sheet-title { padding: 20px; text-align: left; }
    .sheet-meta { padding: 16px 10px; }
    .start-row { grid-template-columns: 62px 52px minmax(0,1fr); }
    .start-horse { grid-column: 2 / -1; padding-top: 0; border-top: 0; }
    .start-number, .start-flag, .start-person { padding: 13px 9px; }
    .start-number { grid-row: 1 / 3; }
    .result-row { grid-template-columns: 56px 45px minmax(0,1fr) 88px; }
    .result-rank, .result-person, .result-score { padding: 12px 8px; }
    .result-score strong { font-size: 19px; }
    .result-person strong { font-size: 14px; }
    .result-person span { font-size: 12px; }
    .result-flag img { width: 30px; }
    .directory-header, .page-title-card { align-items: flex-start; }
    .directory-header h1, .page-title-card h1 { font-size: 27px; }
}

/* Horses directory */
.horse-list { display: grid; }
.horse-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 72px;
    align-items: center;
    min-height: 82px;
    border-top: 1px solid var(--border);
    transition: background .18s ease, transform .18s ease;
}
.horse-row:hover { background: #f8fbff; }
.horse-id {
    height: 100%;
    display: grid;
    place-items: center;
    padding: 12px;
    color: var(--navy);
    background: #f4f8fc;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    word-break: break-word;
}
.horse-info { padding: 15px 20px; }
.horse-info strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.25;
}
.horse-info span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}
.horse-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    justify-self: center;
    border-radius: 13px;
    color: var(--blue);
    background: #edf6ff;
    font-size: 24px;
}
@media (max-width: 720px) {
    .horse-row { grid-template-columns: 72px minmax(0, 1fr) 54px; }
    .horse-id { padding: 10px 7px; font-size: 13px; }
    .horse-info { padding: 13px 12px; }
    .horse-info strong { font-size: 15px; }
    .horse-info span { font-size: 11px; }
    .horse-mark { width: 36px; height: 36px; font-size: 20px; }
}
.competition-day-toggle {
    width: 100%;
    min-height: 64px;
    margin: 0 0 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid rgba(20, 57, 91, 0.12);
    border-radius: 16px;
    background: #173f67;
    color: #fff;
    font: inherit;
    font-size: 17px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(15, 45, 75, 0.12);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

    .competition-day-toggle:hover {
        background: #1d4c7b;
    }

    .competition-day-toggle:focus-visible {
        outline: 3px solid rgba(55, 140, 230, 0.35);
        outline-offset: 3px;
    }

.competition-day-chevron {
    flex: 0 0 auto;
    font-size: 28px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.competition-day-toggle.is-open
.competition-day-chevron {
    transform: rotate(180deg);
}

.competition-day-content {
    display: none;
    margin-bottom: 22px;
}

    .competition-day-content.is-open {
        display: block;
    }

@media (max-width: 640px) {
    .competition-day-toggle {
        min-height: 58px;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 14px;
    }
}


/* EntryList V2 — card renderer */

.entry-summary-card {
    margin: 18px 0;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(18, 57, 91, .12);
    border-radius: 16px;
    background: #f5f9fd;
}

    .entry-summary-card > div {
        display: flex;
        align-items: baseline;
        gap: 12px;
    }

    .entry-summary-card span {
        color: #60758b;
        font-size: 14px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    .entry-summary-card strong {
        color: #123b63;
        font-size: 32px;
        line-height: 1;
    }

    .entry-summary-card small {
        color: #7a8b9d;
    }

.entry-card-list {
    display: grid;
    gap: 14px;
}

.entry-card-v2 {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(18, 57, 91, .12);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(14, 45, 75, .06);
}

.entry-card-index {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f1f6fb;
    text-align: center;
}

    .entry-card-index strong {
        color: #123b63;
        font-size: 30px;
        line-height: 1;
    }

    .entry-card-index span {
        margin-top: 8px;
        color: #2d648f;
        font-size: 14px;
        font-weight: 900;
        letter-spacing: .06em;
    }

    .entry-card-index small {
        margin-top: 12px;
        color: #7d8d9e;
        font-size: 11px;
        line-height: 1.35;
    }

.entry-card-main {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.2fr);
}

.entry-card-rider,
.entry-card-horse {
    min-width: 0;
    padding: 20px 24px;
}

.entry-card-rider {
    border-right: 1px solid #e8edf2;
}

.entry-label {
    display: block;
    margin-bottom: 7px;
    color: #7990a5;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.entry-card-rider h2,
.entry-card-horse h3 {
    margin: 0;
    color: #102f4d;
    line-height: 1.2;
}

.entry-card-rider h2 {
    font-size: 20px;
}

.entry-card-horse h3 {
    font-size: 19px;
}

.entry-card-rider p,
.entry-card-horse p {
    margin: 8px 0 0;
    color: #687c90;
    font-size: 13px;
    line-height: 1.5;
}

.entry-meta-chip {
    display: inline-flex;
    margin-top: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #edf5fc;
    color: #275a83;
    font-size: 11px;
    font-weight: 800;
}

.entry-meta-chip--horse {
    background: #f3f4f7;
    color: #596779;
}

@media (max-width: 760px) {
    .entry-summary-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .entry-card-v2 {
        grid-template-columns: 84px minmax(0, 1fr);
    }

    .entry-card-index {
        padding: 16px 10px;
    }

        .entry-card-index strong {
            font-size: 24px;
        }

        .entry-card-index small {
            font-size: 10px;
        }

    .entry-card-main {
        grid-template-columns: 1fr;
    }

    .entry-card-rider,
    .entry-card-horse {
        padding: 16px 18px;
    }

    .entry-card-rider {
        border-right: 0;
        border-bottom: 1px solid #e8edf2;
    }

        .entry-card-rider h2 {
            font-size: 18px;
        }

    .entry-card-horse h3 {
        font-size: 17px;
    }
}

.list-toolbar,
.list-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 16px 0;
}

.list-status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 13px;
    border-radius: 999px;
    background: #e8f2ff;
    color: #164e85;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.list-refresh-note {
    color: #6b7d90;
    font-size: 13px;
}

.entry-summary {
    margin: 18px 0;
    padding: 18px 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    border: 1px solid rgba(18, 57, 91, .12);
    border-radius: 15px;
    background: #f5f9fd;
}

    .entry-summary strong {
        color: #123b63;
        font-size: 30px;
        line-height: 1;
    }

    .entry-summary span {
        color: #60758b;
        font-weight: 700;
    }

.entry-list {
    overflow: hidden;
    border: 1px solid rgba(18, 57, 91, .12);
    border-radius: 16px;
    background: #fff;
}

.entry-row {
    min-height: 104px;
    display: grid;
    grid-template-columns: 130px minmax(210px, .9fr) minmax(260px, 1.3fr);
    align-items: center;
    border-bottom: 1px solid #e7edf3;
}

    .entry-row:last-child {
        border-bottom: 0;
    }

    .entry-row > div {
        min-width: 0;
        padding: 18px 20px;
    }

.entry-number {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f2f6fa;
    color: #153d65;
}

    .entry-number strong {
        font-size: 23px;
        line-height: 1.1;
    }

    .entry-number span {
        margin-top: 5px;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .06em;
    }

    .entry-number small,
    .entry-person small,
    .entry-horse small {
        margin-top: 5px;
        color: #73869a;
        font-size: 12px;
        line-height: 1.45;
    }

.entry-person strong,
.entry-horse strong {
    display: block;
    color: #102f4d;
    font-size: 18px;
    line-height: 1.25;
}

.entry-license,
.entry-horse span {
    display: inline-block;
    margin-top: 5px;
    color: #587086;
    font-size: 13px;
    font-weight: 700;
}

.entry-person small,
.entry-horse small {
    display: block;
}

.export-button {
    min-height: 44px;
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #173f67;
    color: #fff !important;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(18, 57, 91, .15);
}

    .export-button:hover {
        background: #205681;
    }

@media (max-width: 760px) {
    .list-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .entry-row {
        min-height: 0;
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .entry-number {
        grid-row: 1 / span 2;
    }

    .entry-person {
        border-bottom: 1px solid #edf1f5;
    }

    .entry-horse {
        grid-column: 2;
    }

    .entry-row > div {
        padding: 15px 16px;
    }

    .entry-number {
        padding-left: 12px !important;
        padding-right: 12px !important;
        text-align: center;
    }

        .entry-number strong {
            font-size: 20px;
        }

    .entry-person strong,
    .entry-horse strong {
        font-size: 16px;
    }
}
