:root {
  --color-primary: #ff4b16;
  --color-primary-dark: #d43d11;
  --color-text: #202124;
  --color-text-soft: #4a4a4a;
  --color-text-muted: #6f7177;
  --color-surface: #ffffff;
  --color-surface-soft: #f4f4f2;
  --color-surface-strong: #ece9e2;
  --color-border: rgba(32, 33, 36, 0.12);
  --color-dark: #18191b;
  --color-dark-soft: #26282b;
  --shadow-soft: 0 18px 40px rgba(17, 24, 39, 0.08);
  --shadow-strong: 0 22px 48px rgba(255, 75, 22, 0.16);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-height: 82px;
  --section-space: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background-color: #f8f7f3;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(32, 33, 36, 0.05) 1px, transparent 0),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.92));
  background-size: 18px 18px, auto;
  line-height: 1.5;
  padding-bottom: 88px;
}

body.cookies-visible {
  padding-bottom: 228px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -56px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--color-dark);
  color: var(--color-surface);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.44);
  border-top: 1px solid rgba(32, 33, 36, 0.05);
  border-bottom: 1px solid rgba(32, 33, 36, 0.05);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 75, 22, 0.1);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-surface);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.urgency-copy h2,
.invited-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.section-subtitle,
.section-copy p,
.urgency-copy p,
.invited-copy p,
.hero-lead,
.location-card address,
.speaker-body p,
.topic-body li {
  color: var(--color-text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(248, 247, 243, 0.9);
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
}

.header-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: min(190px, 42vw);
  height: auto;
}

.site-nav {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 8px);
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 10px 0;
  font-weight: 700;
  color: var(--color-text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-primary);
}

.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--color-surface);
  white-space: nowrap;
  padding-inline: 26px;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(32, 33, 36, 0.12);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-text);
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--color-primary);
  color: var(--color-surface);
  box-shadow: var(--shadow-strong);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-primary-dark);
}

.button-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(32, 33, 36, 0.16);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.button-dark {
  background: var(--color-dark);
  color: var(--color-surface);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 75, 22, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 75, 22, 0.14), transparent 42%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  margin: 0 0 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 75, 22, 0.1);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-partners {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.7vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
  max-width: 12ch;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 54ch;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions .button {
  flex: 1 1 220px;
}

.hero-meta {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.meta-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(32, 33, 36, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.meta-card span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.meta-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.meta-icon,
.icon-badge {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 75, 22, 0.12);
  color: var(--color-primary);
}

.meta-icon svg,
.icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: center;
}

.hero-image-frame,
.media-panel,
.topic-card,
.speaker-card,
.icon-card,
.timeline-card,
.location-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-image-frame {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 75, 22, 0.12), rgba(255, 75, 22, 0.02)),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 75, 22, 0.14);
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 546 / 572;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
}

.urgency-strip {
  padding: 10px 0;
  background: linear-gradient(90deg, #ff5a1f, #ff4b16);
  color: var(--color-surface);
}

.urgency-grid {
  display: grid;
  gap: 10px;
  align-items: center;
}

.urgency-strip .section-tag-light {
  background: rgba(255, 255, 255, 0.24);
  color: rgba(32, 33, 36, 0.86);
}

.urgency-copy .section-tag {
  padding: 5px 12px;
  font-size: 0.68rem;
}

.urgency-copy h2 {
  margin-top: 6px;
  font-size: clamp(1.3rem, 2.4vw, 1.95rem);
  line-height: 1;
}

.urgency-copy p:last-child {
  margin-top: 4px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
}

.split-layout,
.invited-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.section-copy p {
  margin: 14px 0 0;
  max-width: 60ch;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  border: 1px solid rgba(32, 33, 36, 0.1);
  font-weight: 700;
}

.media-panel {
  margin: 0;
  background: var(--color-surface);
  border: 1px solid rgba(32, 33, 36, 0.08);
  box-shadow: var(--shadow-soft);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  background: var(--color-surface-strong);
}

.experience-panel {
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  justify-self: end;
}

.experience-panel img {
  min-height: 0;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.audience-grid,
.topics-grid,
.speakers-grid {
  display: grid;
  gap: 16px;
}

.icon-card {
  padding: 22px;
  background: var(--color-surface);
  border: 1px solid rgba(32, 33, 36, 0.08);
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.04);
}

.icon-card h3,
.timeline-card h3,
.topic-body h3,
.speaker-body h3,
.location-card h3 {
  margin: 14px 0 0;
  font-size: 1.12rem;
}

.icon-card p,
.speaker-body p {
  margin: 10px 0 0;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 75, 22, 0.36), rgba(255, 75, 22, 0.12));
}

.timeline-item {
  position: relative;
  display: grid;
  gap: 10px;
  padding-left: 34px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  background: var(--color-surface);
}

.timeline-time strong {
  color: var(--color-primary);
  font-size: 0.92rem;
}

.timeline-card {
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid rgba(32, 33, 36, 0.08);
  box-shadow: var(--shadow-soft);
}

.timeline-card p {
  margin: 8px 0 0;
}

.topic-card,
.speaker-card {
  background: var(--color-surface);
  border: 1px solid rgba(32, 33, 36, 0.08);
  box-shadow: var(--shadow-soft);
}

.topic-thumb,
.speaker-photo {
  margin: 0;
  background: var(--color-surface-strong);
}

.topic-thumb {
  aspect-ratio: 4 / 5;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 75, 22, 0.06), rgba(255, 75, 22, 0.01)),
    var(--color-surface-strong);
}

.speaker-photo {
  aspect-ratio: 5 / 4;
}

.topic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topic-body,
.speaker-body {
  padding: 20px;
}

.topic-kicker,
.speaker-role {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.topic-body ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.topic-body li + li {
  margin-top: 10px;
}

.invited-section {
  background: linear-gradient(135deg, #1a1b1d, #28292b);
  color: var(--color-surface);
}

.invited-media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.invited-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.invited-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.bonus-section {
  position: relative;
}

.bonus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 75, 22, 0.06), transparent 35%);
  pointer-events: none;
}

.bonus-layout {
  position: relative;
}

.bonus-media {
  border: 1px solid rgba(255, 75, 22, 0.14);
}

.location-stack {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.location-card {
  width: min(100%, 640px);
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid rgba(32, 33, 36, 0.08);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.location-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
}

.location-card address {
  margin-top: 16px;
  font-style: normal;
  font-size: 1.05rem;
}

.location-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.location-meta div {
  min-width: 120px;
}

.location-meta dt {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.location-meta dd {
  margin: 6px 0 0;
  font-weight: 700;
}

.attendance-shell {
  display: flex;
  justify-content: center;
}

.attendance-card {
  width: min(100%, 880px);
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid rgba(32, 33, 36, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.attendance-card h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.attendance-card p {
  max-width: 56ch;
  margin: 18px auto 0;
  color: var(--color-text-soft);
}

.attendance-points {
  display: grid;
  gap: 12px;
    margin-top: 24px;
}

.attendance-points div {
  padding: 16px 18px;
  border: 1px solid rgba(32, 33, 36, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
}

.attendance-points strong {
  display: block;
  font-size: 1rem;
}

.attendance-points span {
  display: block;
  margin-top: 6px;
  color: var(--color-text-muted);
}

.attendance-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.site-footer {
  padding: 28px 0 92px;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand img {
  width: min(200px, 52vw);
  height: auto;
  filter: brightness(1.06);
}

.footer-brand p {
  margin: 10px 0 0;
}

.footer-event {
  color: var(--color-surface);
  font-weight: 700;
}

.footer-meta {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-meta div {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-meta strong {
  display: block;
  margin-top: 6px;
  color: var(--color-surface);
}

.footer-meta small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ff9d7b;
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-surface);
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(255, 75, 22, 0.28);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 88px;
  z-index: 55;
  display: grid;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(32, 33, 36, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.94rem;
}

.cookie-banner a:not(.button) {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .button {
  flex: 1 1 160px;
}

@media (max-width: 719px) {
  .hero-copy {
    text-align: center;
  }

  .urgency-copy,
  .section-copy,
  .topic-body,
  .speaker-body,
  .invited-copy,
  .timeline-card,
  .timeline-time,
  .attendance-card,
  .attendance-points div,
  .footer-brand,
  .footer-meta,
  .footer-links {
    text-align: center;
  }

  .eyebrow,
  .hero-partners {
    margin-inline: auto;
  }

  .hero h1 {
    margin-inline: auto;
    max-width: 14ch;
    font-size: clamp(1.85rem, 8vw, 2.85rem);
    text-wrap: balance;
  }

  .hero-lead {
    margin-inline: auto;
    max-width: 30ch;
    text-align: center;
    text-wrap: pretty;
  }

  .hero-actions,
  .urgency-grid,
  .chip-row,
  .attendance-actions {
    justify-content: center;
  }

  .urgency-grid {
    justify-items: center;
  }

  .urgency-button {
    margin-inline: auto;
  }

  .section-copy p,
  .speaker-body p,
  .invited-copy p,
  .attendance-card p,
  .footer-brand p {
    margin-inline: auto;
  }

  .topic-body ul {
    padding-left: 0;
    list-style-position: inside;
  }

  .experience-layout {
    gap: 18px;
  }

  .experience-panel {
    display: block;
    max-width: 420px;
    margin-inline: auto;
    justify-self: center;
  }

  #sobre.section {
    padding-bottom: 34px;
  }

  #publico.section {
    padding-top: 34px;
  }

  .icon-card {
    text-align: center;
  }

  .icon-badge,
  .footer-brand img {
    margin-inline: auto;
  }

  .footer-meta,
  .footer-links {
    justify-items: center;
  }

  .cookie-banner {
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }
}

@media (min-width: 720px) {
  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audience-grid,
  .topics-grid,
  .speakers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-item {
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: start;
  }

  .timeline-time {
    padding-top: 12px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) auto;
    align-items: start;
  }

  .attendance-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  body {
    padding-bottom: 0;
  }

  body.cookies-visible {
    padding-bottom: 136px;
  }

  .section {
    padding: 72px 0;
  }

  .menu-toggle,
  .mobile-cta {
    display: none;
  }

  .cookie-banner {
    left: 24px;
    right: auto;
    bottom: 24px;
    width: min(440px, calc(100vw - 48px));
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0;
  }

  .nav-cta {
    margin-left: 12px;
    padding: 0 30px;
    min-width: 142px;
  }

  .hero-grid,
  .split-layout,
  .invited-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 36px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .hero-visual {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 3vw, 3.2rem);
    max-width: 16ch;
  }

  .hero-lead {
    margin-top: 14px;
    max-width: 48ch;
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-meta {
    margin-top: 22px;
  }

  .meta-card {
    padding: 14px;
  }

  .hero-image-frame {
    max-width: 560px;
    justify-self: end;
  }

  .urgency-grid {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .urgency-button {
    justify-self: end;
    min-height: 40px;
    padding-inline: 22px;
  }

  .experience-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
  }

  .experience-panel {
    max-width: 660px;
  }

  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .speakers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bonus-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  }

  .bonus-media {
    width: min(100%, 720px);
    justify-self: start;
  }

  .location-card {
    padding: 34px;
  }

  .site-footer {
    padding: 34px 0 40px;
  }
}
