/* Airdrie Volleyball Club — site styles (professional light theme) */

:root {
  --bg: #f3f5f1;
  --surface: #ffffff;
  --surface-2: #f8faf6;
  --ink: #182015;
  --ink-2: #2e3a2b;
  --muted: #66705c;
  --line: #dde3d6;
  --line-strong: #c4cdba;
  --line-soft: #ebefe6;
  --accent: #6aa52c;
  --accent-dark: #4f831d;
  --accent-soft: #f0f7e5;
  --accent-line: #cfe3ba;
  --success: #1e7f46;
  --success-soft: #e9f6ee;
  --danger: #b3261e;
  --danger-soft: #fdecea;
  --warn: #9a6b00;
  --warn-soft: #fff6e0;
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05), 0 1px 3px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 4px 14px rgba(16, 24, 40, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(106, 165, 44, 0.25); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }

/* ---------- Layout ---------- */

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}

main.container { padding-bottom: 72px; }

h1, h2, h3 { margin: 0 0 10px; line-height: 1.25; color: var(--ink); }
h1 { font-size: 26px; font-weight: 700; letter-spacing: -0.015em; }
h2 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 15px; font-weight: 600; }

p { margin: 0 0 12px; }

.muted { color: var(--muted); }
.small { font-size: 12.5px; }
.strong { font-weight: 700; }
.danger { color: var(--danger); }
.empty { color: var(--muted); padding: 18px 0; }
.hint { color: var(--muted); font-size: 12.5px; }
.more-link { font-size: 13px; display: inline-block; margin: 6px 0 2px; }
.link-plain { color: var(--muted); text-decoration: underline; }
.back-link { display: inline-block; margin: 14px 0; font-size: 13px; }
.num { text-align: right; font-variant-numeric: tabular-nums; }
.grow { flex: 1; }
.span-2 { grid-column: span 2; }
.inline { display: inline; }
.inline-row, .inline-form { display: inline-flex; gap: 8px; align-items: center; }

.page-head { margin: 28px 0 18px; }
.page-head h1 { margin-bottom: 4px; }
.page-head .muted { margin: 0; font-size: 13.5px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--line), 0 4px 14px rgba(16, 24, 40, 0.05);
}

.topbar {
  background: #eef1e9;
  border-bottom: 1px solid #e0e5d8;
}
.topbar .container {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 12.5px;
  color: #5e6657;
  text-align: center;
}

.utility-bar { border-bottom: 1px solid var(--line); }

.utility-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink) !important;
  white-space: nowrap;
}
.brand:hover { text-decoration: none !important; }
.brand-mark { width: 27px; height: 26px; flex: none; display: block; object-fit: contain; }
.brand-name { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
.brand-accent { color: var(--accent); margin-left: 7px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  flex-wrap: wrap;
}
.site-nav a {
  padding: 7px 11px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-dark);
  border-radius: 7px;
}
.site-nav a:hover { color: var(--accent); background: var(--accent-soft); text-decoration: none; }
.util-sep { width: 1px; height: 16px; background: var(--line-strong); }

.utility-actions { display: flex; align-items: center; gap: 10px; }

.pill-btn {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #3c4238;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background 0.15s;
  white-space: nowrap;
}
.pill-btn:hover { background: #17191c; }

.primary-nav { background: #15181c; }
.nav-row {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  min-height: 46px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.nav-row > a {
  padding: 8px 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: #dfe3e3;
  border-radius: 7px;
}
.nav-row > a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); text-decoration: none; }
.nav-sep { width: 1px; height: 18px; background: rgba(255, 255, 255, 0.16); margin: 0 5px; }

.nav-logout-form { display: inline; }
.nav-logout {
  background: none;
  border: none;
  padding: 8px 11px;
  font: inherit;
  font-size: 13.5px;
  color: #aab0b8;
  cursor: pointer;
  border-radius: 7px;
}
.nav-logout:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 12px;
  cursor: pointer;
  color: var(--ink);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 15px;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.15s, border-color 0.15s;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn-ghost {
  background: transparent;
  color: var(--ink-2) !important;
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--line-strong); }

.btn-small { padding: 5px 11px; font-size: 12.5px; border-radius: 7px; }
.btn.danger { background: var(--danger); border-color: var(--danger); }
.btn.danger:hover { background: #9a1f19; border-color: #9a1f19; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.row-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.confirm-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.form-actions { display: flex; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft); }

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.card h2 { margin-bottom: 6px; }
.hero-card { max-width: 560px; margin-left: auto; margin-right: auto; text-align: left; }
.nested-card {
  background: var(--surface-2);
  border-color: var(--line-soft);
  box-shadow: none;
  margin-bottom: 0;
}
.division-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.division-card { margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.two-col > .card { height: fit-content; }

/* ---------- Forms ---------- */

.form-field { display: block; margin-bottom: 12px; }
.form-field label, .filter-bar label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.filter-bar label { flex-direction: row; align-items: center; }

input[type="text"], input[type="email"], input[type="password"],
input[type="tel"], input[type="date"], input[type="number"],
select, textarea {
  font: inherit;
  font-size: 13.5px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 7px 10px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(106, 165, 44, 0.18);
}
textarea { resize: vertical; min-height: 84px; }

.checkbox-label {
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--ink-2) !important;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }

.field-error {
  color: var(--danger);
  font-size: 12.5px;
  margin-top: 4px;
}
.field-note { color: var(--muted); font-size: 12.5px; margin-top: 4px; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

/* Messages + alerts */

.messages { list-style: none; margin: 0 0 16px; padding: 0; }
.messages li, .alert {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  margin-bottom: 8px;
  border: 1px solid transparent;
}
.alert, .messages li { border-color: var(--line); background: var(--surface-2); color: var(--ink-2); }
.alert-info, .messages li:has(.alert-info) { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent-dark); }
.alert-warning, .messages li:has(.alert-warning) { background: var(--warn-soft); border-color: #eddcab; color: var(--warn); }
.alert-error, .messages li:has(.alert-error) { background: var(--danger-soft); border-color: #f0c4c0; color: var(--danger); }

/* Badges */

.badge {
  display: inline-block;
  padding: 2px 9px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #47536b;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 999px;
  vertical-align: middle;
}
.badge-ok, .badge-ready, .ready { color: var(--success); background: var(--success-soft); border-color: #c2e2cf; }
.badge-postponed, .badge-warn, .pending { color: var(--warn); background: var(--warn-soft); border-color: #eddcab; }
.badge-cancelled { color: var(--danger); background: var(--danger-soft); border-color: #f0c4c0; }
.badge-setup { color: var(--accent-dark); background: var(--accent-soft); border-color: var(--accent-line); }

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

table.table, table.standings-table, table.schedule-table,
table.team-table, table.plan-table, table.mini-table, table.setup-list {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

table.table th, table.standings-table th, table.schedule-table th,
table.team-table th, table.plan-table th, table.mini-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface-2);
}
table.table th.num, table.standings-table th.num, table.schedule-table th.num,
table.team-table th.num, table.plan-table th.num { text-align: right; }

table.table td, table.standings-table td, table.schedule-table td,
table.team-table td, table.plan-table td, table.mini-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
table.table tr:last-child td, table.standings-table tr:last-child td { border-bottom: none; }

.standings-table td a { font-weight: 600; color: var(--ink); }
.standings-table td a:hover { color: var(--accent); text-decoration: underline; }
.standings-table tr.leader td { background: var(--accent-soft); }
.standings-table tr.my-team td { background: #fbf6ea; }
.standings-table tr.leader.my-team td { background: #f3ecd9; }
.table-foot { padding-top: 10px; font-size: 12px; }

.tiny-list { margin: 0; padding-left: 18px; }

/* ---------- Schedule page ---------- */

.division-section { margin-bottom: 30px; }

.division-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 14px;
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}
.division-head h2 { margin: 0; }
.division-head h2 .muted { font-weight: 500; }
.division-head p { margin: 0; font-size: 13px; }
.card .division-head { margin-bottom: 12px; }

.schedule-date {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.schedule-date::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.schedule-day { margin-bottom: 6px; }

.match-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
}
.schedule-day .match-row:first-child { border-radius: 8px 8px 0 0; }
.schedule-day .match-row:last-child { border-radius: 0 0 8px 8px; border-bottom: 1px solid var(--line); }
.schedule-day .match-row { border-top: 1px solid transparent; }
.schedule-day { border: 1px solid var(--line); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow-sm); overflow: hidden; }
.schedule-day .match-row { border-bottom: 1px solid var(--line-soft); }
.schedule-day .match-row:last-child { border-bottom: none; }
.schedule-day .match-row:hover { background: var(--surface-2); }

.match-time {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.match-teams {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  font-weight: 500;
}
.match-teams span { overflow: hidden; text-overflow: ellipsis; }
.match-teams .vs { color: var(--muted); font-size: 12px; font-weight: 500; }
.match-teams .score {
  font-weight: 700;
  color: var(--accent);
  padding: 1px 8px;
  background: var(--accent-soft);
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}
.match-teams .winner { font-weight: 700; color: var(--ink); }
.match-teams .winner + .score, .score .winner { }
.match-row.match-completed { }
.match-row.match-completed .match-teams span:not(.winner):not(.score) { color: var(--muted); font-weight: 400; }
.match-row.match-cancelled { background: var(--surface-2); }
.match-row.match-cancelled .match-teams { color: var(--muted); }
.match-row.match-postponed { opacity: 0.75; }

.match-where {
  font-size: 12.5px;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-actions { grid-column: 3; }
.score-entry-form, .match-form { display: block; }

/* ---------- Home / hero ---------- */

.bleed { width: 100vw; margin-left: calc(50% - 50vw); }

.hero {
  color: #fff;
  text-align: center;
  padding: 72px 22px 74px;
  background:
    radial-gradient(1100px 480px at 80% -20%, rgba(106, 165, 44, 0.30), transparent 62%),
    radial-gradient(800px 420px at 12% 120%, rgba(106, 165, 44, 0.16), transparent 58%),
    linear-gradient(155deg, #191d12 0%, #12140e 60%, #101309 100%);
}
.hero h1 { color: #fff; font-size: 42px; font-weight: 800; letter-spacing: -0.03em; max-width: 820px; margin: 0 auto 14px; }
.hero-sub { max-width: 640px; margin: 0 auto 22px; color: rgba(255, 255, 255, 0.75); font-size: 16px; }

.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 16px;
}
.hero-meta .muted { color: rgba(255, 255, 255, 0.55); font-weight: 500; }
.hero-sleep { color: rgba(255, 255, 255, 0.6); font-size: 14px; }

.hero-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; }
.hero .btn { border-radius: 999px; padding: 10px 22px; font-size: 14px; }
.hero .btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.45); color: #fff !important; }
.hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.10); border-color: rgba(255, 255, 255, 0.75); }

.captain-cta { margin-top: 16px; }

/* ---------- Important dates ---------- */

.dates { margin: 4px 0 8px; }
.date-row {
  display: flex;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
}
.date-row:last-child { border-bottom: none; }
.date-when { min-width: 210px; font-weight: 600; flex: none; }

/* ---------- Feature grid ---------- */

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.feature svg { display: block; width: 30px; height: 30px; color: var(--accent); margin-bottom: 12px; }
.feature h3 { font-size: 14.5px; margin-bottom: 4px; }
.feature p { font-size: 13px; color: var(--muted); margin: 0 0 10px; }
.feature .more-link { margin: 0; color: var(--accent-dark); font-weight: 600; }

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

.news-section { margin-top: 26px; }
.news-list { list-style: none; margin: 0; padding: 0; }
.news-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line-soft);
}
.news-item:last-child { border-bottom: none; padding-bottom: 0; }
.news-item:first-child { padding-top: 0; }
.news-link, .news-article a { font-weight: 600; color: var(--ink); }
.news-link:hover { color: var(--accent); }
.news-date, .news-article-date { color: var(--muted); font-size: 12.5px; white-space: nowrap; }
.news-article { font-size: 15px; line-height: 1.65; }

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

.document-list { list-style: none; margin: 0; padding: 0; }
.document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line-soft);
}
.document-item:last-child { border-bottom: none; padding-bottom: 0; }
.document-item:first-child { padding-top: 0; }
.document-item .btn { flex: none; }
.document-item strong { display: block; font-size: 14px; }
.doc-meta { color: var(--muted); font-size: 12.5px; margin: 0; }
.document-actions { display: flex; gap: 8px; }

/* ---------- Message board ---------- */

.board-list { list-style: none; margin: 0; padding: 0; }
.board-post { padding: 14px 2px; border-bottom: 1px solid var(--line-soft); }
.board-post:last-child { border-bottom: none; padding-bottom: 0; }
.board-post-name { font-weight: 700; }
.board-post-date { color: var(--muted); font-size: 12.5px; margin-left: 8px; }
.board-post-matches, .board-post-contact { color: var(--muted); font-size: 13px; }
.board-actions { margin-top: 10px; }
.board-form { display: block; }
.board-posts { }

/* ---------- Setup / admin-ish pages ---------- */

.setup-card { margin-bottom: 16px; }
.setup-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.setup-card-actions { display: flex; gap: 8px; }
.setup-facts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px 20px;
  margin: 0 0 6px;
}
.setup-item { display: flex; gap: 8px; align-items: baseline; }
.setup-item-state { margin-left: auto; }
.setup-missing, .setup-unassigned { color: var(--warn); font-size: 12.5px; }
.setup-division { }
.setup-pending { color: var(--warn); }

/* Teams */

.team-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}
.next-game-line, .record-line { color: var(--muted); font-size: 13px; }

/* Login */

.login-wrap { max-width: 400px; margin: 40px auto; }
.login-wrap .card { margin: 0; }
.login-wrap .form { margin-top: 10px; }
.login-submit { margin: 16px 0 0; }

.honeypot, .field-honeypot {
  position: absolute;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.schedule-plan { margin-bottom: 18px; }
.plan-week { border-left: 3px solid var(--line-strong); padding-left: 14px; margin-bottom: 14px; }
.plan-week.ready { border-left-color: var(--success); }
.plan-week.pending { border-left-color: var(--warn); }
.plan-table { margin-top: 8px; }

.card.report.ready { border-left: 3px solid var(--success); }

/* ---------- Footer ---------- */

.site-footer {
  margin-top: 40px;
  background: #15181c;
  padding: 22px 0;
  color: #9aa1a3;
  font-size: 12.5px;
}
.site-footer .container { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; align-items: center; }
.footer-brand { font-size: 14px; font-weight: 800; color: #e7e9e3; letter-spacing: -0.01em; white-space: nowrap; }
.footer-logo { width: 20px; height: 20px; display: inline-block; vertical-align: -4px; margin-right: 8px; }
.footer-accent { color: #8dc63f; margin-left: 7px; }
.site-footer .muted { color: rgba(255, 255, 255, 0.45); }

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

@media (max-width: 880px) {
  .date-when { min-width: 0; }
  .date-row { flex-wrap: wrap; }

  .feature-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: inline-block; }

  .primary-nav { display: none; }
  body.nav-open .primary-nav { display: block; box-shadow: var(--shadow-md); }
  body.nav-open .nav-row { flex-direction: column; align-items: stretch; padding: 10px 14px 14px; }
  body.nav-open .nav-logout { text-align: left; }
  body.nav-open .nav-sep, body.nav-open .nav-logout-form { display: inline; }
  body.nav-open .nav-logout-form { width: 100%; }

  .hero { padding: 52px 18px 54px; }
  .hero h1 { font-size: 31px; }

  .two-col, .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }

  .match-row { grid-template-columns: 76px minmax(0, 1fr); }
  .match-where { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .util-sep { display: none; }
  .brand-name { font-size: 15px; }
}
