/* assets/css/base.css */
:root {
  --dark: #050505;
  --dark-soft: #111111;
  --light: #ffffff;
  --muted: #777777;
  --border: #e8e8e8;
  --primary: #ffffff;
  --primary-dark: #dcdcdc;
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #111;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: auto;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading span,
.section-kicker,
.eyebrow {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}

.section-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.04em;
}

.section-heading.row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.btn-primary,
.btn-secondary,
.btn-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}
.btn-primary {
  background: #ffffff;
  color: #050505;
}
.btn-primary:hover {
  background: #e8e8e8;
}
.btn-primary,
.btn-live {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-live {
  background: #ffffff;
  color: #050505 !important;
}
.see-more {
  font-weight: 800;
  color: var(--primary);
}

.section-heading span,
.section-kicker,
.eyebrow {
  color: #777777;
}