@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand colors */
  --green:            #1f5140;
  --green-dark:       #163829;
  --gold:             #c8a84b;
  --gold-dark:        #a8882e;
  --gold-light:       #e8c96a;
  --gold-text:        #7a5c1e;
  --gold-tint-bg:     #fffbf0;
  --gold-tint-border: #f0e6cc;
  --cream:            #f7f5f0;

  /* Badge metals */
  --badge-silver:  #a0a0a0;
  --badge-bronze:  #b87333;

  /* Text scale */
  --text:           #1a1a1a;
  --text-secondary: #444;
  --text-tertiary:  #333;
  --text-subtle:    #555;
  --text-faint:     #888;
  --text-link:      #666;
  --muted:          #777;
  --surface:        #fff;

  /* Borders */
  --border:        #e8e8e8;
  --border-subtle: #f0f0f0;

  /* Channel values for rgba() */
  --green-ch:        31 81 64;
  --gold-ch:         200 168 75;
  --hero-overlay-ch: 10 35 25;

  /* Layout tokens */
  --width-content: 960px;
  --width-narrow:  720px;
  --gutter:        2rem;
  --header-height: 64px;

  /* Border-radius scale */
  --radius-lg: 12px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--surface);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

body > footer {
  margin-top: auto;
}

/* ─── Site Header ──────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: var(--header-height);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.site-header .home-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.header-logo {
  height: 36px;
  width: auto;
}

.header-brand {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.site-header nav {
  display: flex;
  align-items: center;
}

.site-header nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.site-header nav ul li a {
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding: 0 0.85rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
  white-space: nowrap;
}

.site-header nav ul li a:hover {
  color: var(--text);
}

.site-header nav ul li a.active {
  color: var(--green);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--gold);
}

.nav-toggle {
  display: none;
}

.nav-icon {
  vertical-align: middle;
}

.nav-icon-ham {
  font-size: 1.5rem;
  margin-top: -0.3rem;
}

/* ─── Hero ─────────────────────────────────────────── */

.hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(var(--hero-overlay-ch) / 0.90) 0%,
    rgba(var(--hero-overlay-ch) / 0.45) 50%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 3rem var(--gutter);
  color: var(--surface);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .hero { height: 45vh; min-height: 300px; }
  .hero-title { font-size: 2rem; }
}

.tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 0.75rem;
}

.section-image {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

/* ─── Layout ────────────────────────────────────────── */

.container {
  max-width: var(--width-content);
  margin: 4rem auto;
  padding: 0 var(--gutter);
  flex: 1;
  width: 100%;
}

.container.single-col {
  max-width: var(--width-narrow);
}

/* ─── Sections ──────────────────────────────────────── */

.section {
  padding: 0;
  margin-bottom: 1.5rem;
}

.section:last-child {
  margin-bottom: 0;
}

.section + .section {
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section p {
  line-height: 1.75;
  color: var(--text-secondary);
  font-size: 1rem;
}

.section p + p {
  margin-top: 0.75rem;
}

.section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.section h2 + h3 {
  margin-top: 0;
}

.section ul,
.section ol {
  padding-left: 1.4rem;
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
}

.section ul li,
.section ol li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.25rem;
}

.section ul li:last-child,
.section ol li:last-child {
  margin-bottom: 0;
}

/* ─── Note ──────────────────────────────────────────── */

.note {
  margin-top: 0.8rem;
  color: var(--text-faint);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ─── Table ─────────────────────────────────────────── */

.table-wrapper {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 0.75rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

table th {
  text-align: left;
  background: var(--green);
  color: var(--surface);
  font-weight: 600;
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

table td {
  padding: 0.65rem 1rem;
  color: var(--text-tertiary);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
  background: var(--surface);
}

table tbody tr:nth-child(even) td {
  background: rgba(var(--green-ch) / 0.03);
}

table tr:last-child td {
  border-bottom: none;
}

/* ─── Contact list ──────────────────────────────────── */

.section .contact-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.contact-list .role {
  font-weight: 600;
  color: var(--gold-dark);
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.15rem;
}

.contact-list .name {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.4rem;
}

.contact-list .contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-list a {
  color: var(--text-link);
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-list a:hover {
  color: var(--green);
}

.contact-list .icon {
  font-size: 0.75rem;
  color: var(--text-link);
  flex-shrink: 0;
}

/* ─── Contact person ────────────────────────────────── */

.contact-person {
  margin-top: 1.5rem;
}

.contact-person .name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.contact-person a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-person a:hover {
  color: var(--green);
}

/* ─── Membership badge ──────────────────────────────── */

.membership-fee {
  background: var(--gold-tint-bg);
  border: 1px solid var(--gold-tint-border);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  text-align: center;
  margin-top: 0.5rem;
}

.membership-fee .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

.membership-fee .label {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

/* ─── Current season ────────────────────────────────── */

.current-season {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.current-season-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.current-season-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.current-season-detail {
  font-size: 0.85rem;
  color: var(--muted);
}

.current-season-item a {
  font-size: 0.9rem;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.current-season-item a:hover {
  color: var(--green-dark);
}

/* ─── Archive links ─────────────────────────────────── */

.archive-links {
  list-style: none;
  padding-left: 0;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.archive-links li a {
  font-size: 0.9rem;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.archive-links li a:hover {
  color: var(--green-dark);
}

/* ─── Competition entries ───────────────────────────── */

.comp-list {
  display: flex;
  flex-direction: column;
}

.comp-entry {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.comp-entry[id] {
  scroll-margin-top: var(--header-height);
}

.comp-entry:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.comp-entry .comp-entry-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0;
}

.comp-placement {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.comp-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.comp-rank-badge-1 { background: var(--gold);         color: var(--surface); }
.comp-rank-badge-2 { background: var(--badge-silver); color: var(--surface); }
.comp-rank-badge-3 { background: var(--badge-bronze); color: var(--surface); }
.comp-rank-badge-n { background: transparent; color: var(--muted); border: 1.5px solid #ccc; }

.comp-entry .table-wrapper {
  margin-top: 0;
  overflow-x: auto;
}

.comp-entry table th,
.comp-entry table td {
  padding: 0.55rem 0.65rem;
}

.comp-entry table th:not(:nth-child(2)),
.comp-entry table td:not(:nth-child(2)) {
  text-align: center;
}

.comp-entry table th,
.comp-entry table td {
  white-space: nowrap;
}

.comp-entry tr.kungsbacka td {
  background: rgba(var(--gold-ch) / 0.2) !important;
  font-weight: 600;
  color: var(--green);
}

.comp-entry tr.kungsbacka td:first-child {
  box-shadow: inset 3px 0 0 var(--gold);
}

.comp-legend {
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--muted);
}

.comp-source {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
}

.comp-source:hover {
  color: var(--green);
}

/* ─── Competition event details ─────────────────────── */

.comp-entry-desc {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.comp-event-details {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.85rem 2.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.comp-event-details dt {
  font-weight: 700;
  color: var(--text);
  padding-top: 0.05em;
}

/* ─── Info box ──────────────────────────────────────── */

.info-box {
  background: rgba(var(--green-ch) / 0.06);
  border: 1px solid rgba(var(--green-ch) / 0.18);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
  color: var(--green-dark);
  line-height: 1.65;
}

/* ─── Buttons ───────────────────────────────────────── */

.btn {
  display: inline-block;
  background: var(--gold-light);
  color: var(--text);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}

.btn:hover {
  background: var(--gold);
}

.btn-white {
  background: var(--surface);
  color: var(--green);
  margin-top: 0;
}

.btn-white:hover {
  background: var(--cream);
  color: var(--green);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold-text);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--surface);
}

/* ─── Steps list ────────────────────────────────────── */

.section .steps {
  list-style: none;
  padding-left: 0;
  counter-reset: steps;
  margin-top: 0.5rem;
}

.steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.steps li:last-child {
  border-bottom: none;
}

.steps li::before {
  content: counter(steps);
  background: var(--green);
  color: var(--surface);
  font-weight: 700;
  font-size: 0.8rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ─── Cream band (full-width) ───────────────────────── */

.cream-band {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}

.cream-band-inner {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* ─── News cards ────────────────────────────────────── */

#news-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.news-date {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.news-body {
  font-size: 0.875rem;
  color: var(--text-subtle);
  line-height: 1.65;
  flex: 1;
}

.news-body p {
  margin: 0;
}

.news-images {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.news-images img {
  height: 320px;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

/* ─── Gallery ───────────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.gallery-item figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
  text-align: center;
}

#gallery-empty {
  color: var(--text-faint);
}

/* ─── Map / directions ──────────────────────────────── */

.map-frame {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 1rem;
}

.address-block {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.map-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* ─── Ranking ───────────────────────────────────────── */

.ranking-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.ranking-period {
  font-size: 0.85rem;
  color: var(--text-faint);
}

.ranking-source {
  font-size: 0.8rem;
  color: #aaa;
}

.ranking-source a {
  color: #aaa;
  text-decoration: none;
}

.ranking-source a:hover {
  color: var(--gold-text);
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.ranking-table th {
  text-align: left;
  background: var(--green);
  color: var(--surface);
  font-weight: 600;
  padding: 0.65rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.ranking-table th.num {
  text-align: center;
}

.ranking-table td {
  padding: 0.6rem 0.75rem;
  color: var(--text-tertiary);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.ranking-table tr:last-child td {
  border-bottom: none;
}

.ranking-table tr:hover td {
  background: #fdfaf3;
}

.rank-num {
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: #aaa;
  font-size: 0.8rem;
  width: 2rem;
}

.rank-top td {
  background: #fffdf5;
}

.title-badge {
  display: inline-block;
  background: var(--gold-tint-border);
  color: var(--gold-text);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  margin-left: 0.4rem;
  vertical-align: middle;
  letter-spacing: 0.03em;
}

.rating-cell {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--text);
}

.rating-none {
  color: #ccc;
  font-weight: 400;
  font-size: 0.8rem;
}

.ranking-status {
  text-align: center;
  padding: 2rem;
  color: #aaa;
  font-size: 0.9rem;
}

.ranking-status.error {
  color: #c0392b;
}

.ranking-table td:nth-child(2) {
  padding: 0;
}

.player-link {
  display: block;
  padding: 0.6rem 0.75rem;
  color: inherit;
  text-decoration: none;
}

.player-link:hover {
  color: var(--gold-text);
  text-decoration: underline;
}

/* ─── Footer ────────────────────────────────────────── */

footer {
  background: var(--green);
}

.footer-inner {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 2.5rem var(--gutter) 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer-address {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--surface);
}

.footer-bottom {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 1rem var(--gutter) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ─── Mobile ────────────────────────────────────────── */

@media (max-width: 768px) {
  .site-header {
    padding: 0 0 0 1.25rem;
  }

  .nav-toggle {
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    padding: 0 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-subtle);
    font-size: 0.9rem;
    height: var(--header-height);
    min-width: 44px;
  }

  .site-header nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    z-index: 99;
  }

  .site-header nav.open ul {
    display: flex;
  }

  .site-header nav ul li {
    width: 100%;
  }

  .site-header nav ul li a {
    height: auto;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .site-header nav ul li a::after {
    content: '›';
    font-size: 1.3rem;
    color: #bbb;
    line-height: 1;
  }

  .site-header nav ul li a.active::after {
    color: var(--gold);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-nav {
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  .ranking-table th,
  .ranking-table td {
    padding: 0.5rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .address-block {
    flex-direction: column;
  }
}
