:root {
  --blue: #3967D1;
  --blue-deep: #2851AE;
  --blue-soft: #ABC2FB;
  --amber: #FFC24D;
  --amber-deep: #E0A22F;
  --cream: #F6EEEC;
  --cream-deep: #EDE2DE;
  --teal: #397E78;
  --teal-deep: #2C625D;
  --ink: #2E2E2E;
  --red: #F83E3E;
  --white: #ffffff;
  --ink-70: rgba(46, 46, 46, 0.7);
  --ink-50: rgba(46, 46, 46, 0.5);
  --ink-12: rgba(46, 46, 46, 0.12);
  --ink-08: rgba(46, 46, 46, 0.08);
  --shadow-xs: 2px 2px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-md: 6px 6px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);
  --shadow-blue: 6px 6px 0 var(--blue);
  --shadow-amber: 6px 6px 0 var(--amber);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-pill: 999px;
  --maxw: 1600px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-1: 140ms;
  --dur-2: 280ms;
  --dur-3: 520ms;
  --dur-4: 900ms;
  --font-display: "Syncopate", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --text-2xs: 0.6875rem;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 6rem;
  --text-title: clamp(1.5rem, 4vw, 2.5rem);
  --text-title-lg: clamp(2rem, 4vw, 3.375rem);
  --text-headline: clamp(2rem, 4.6vw, 3.75rem);
  --text-display: clamp(2.5rem, 7.2vw, 6rem);
  --leading-tight: 0.96;
  --leading-body: 1.6;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background-color: #F6EEEC;
}

h1 {
  font-size: var(--text-3xl);
  margin-bottom: 0;
}

h2 {
  margin-top: 0;
  font-size: var(--text-2xl);
}

iframe {
  background: url(/images/loading.gif) center center no-repeat;
  background-size: 4em;
  background-color: #F6F6F6;
  border: 0;
}

.sponsors-list {
  column-count: 2;
  column-width: 17em;
  max-width: 40em;
}

.sponsors-listitem {
  height: 4em;
  overflow: hidden;
}

.sponsors-link {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.sponsors-link img {
  display: block;
  max-height: 15em;
  max-width: 15em;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

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

::selection {
  background: var(--amber);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-nav :focus-visible,
.next-meetup :focus-visible,
.view-meetup__breadcrumb :focus-visible,
.stats-hero :focus-visible {
  outline-color: var(--amber);
}

@supports (scrollbar-color: red blue) {
  html {
    scrollbar-color: var(--blue) var(--cream);
    scrollbar-width: thin;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
[data-reveal] {
  opacity: 1;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-3) var(--ease-out-expo), transform var(--dur-3) var(--ease-out-expo);
  transition-delay: calc(var(--reveal-index, 0) * 55ms);
  will-change: opacity, transform;
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@keyframes hero-line-in {
  from {
    opacity: 0;
    transform: translateY(0.7em);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes hero-mark-in {
  from {
    opacity: 0;
    transform: translateY(2.5rem) scale(0.86) rotate(-9deg);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes hero-mark-float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-12px) rotate(1.4deg);
  }
}
@keyframes hero-band-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes squeeze-arrow {
  from {
    transform: translateX(-42%);
  }
  to {
    transform: translateX(0);
  }
}
html.is-ready .hero__title-line {
  animation: hero-line-in var(--dur-4) var(--ease-out-expo) both;
}
html.is-ready .hero__title-line:nth-child(1) {
  animation-delay: 80ms;
}
html.is-ready .hero__title-line:nth-child(2) {
  animation-delay: 180ms;
}
html.is-ready .hero__title-line:nth-child(3) {
  animation-delay: 280ms;
}
html.is-ready .hero__mark {
  animation: hero-mark-in 1.05s var(--ease-out-expo) 200ms both, hero-mark-float 7s ease-in-out 1.4s infinite;
}
html.is-ready .hero__band {
  animation: hero-band-in 0.8s var(--ease-out-expo) 460ms both;
}

@keyframes marquee-x {
  to {
    transform: translateX(-100%);
  }
}
.hero {
  background: var(--blue);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  margin: 0 auto;
  max-width: var(--maxw);
  padding: clamp(2.5rem, 7vw, 6rem) var(--gutter) clamp(2rem, 5vw, 4rem);
  width: 100%;
}

.hero__title {
  color: var(--amber);
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: var(--leading-tight);
  margin: 0;
  text-transform: uppercase;
}

.hero__title-line {
  display: block;
}

.hero__art {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.hero__mark {
  height: auto;
  max-width: clamp(220px, 34vw, 520px);
  width: 100%;
  filter: drop-shadow(10px 12px 0 rgba(46, 46, 46, 0.35));
}

.hero__band {
  background: var(--ink);
  border-top: 4px solid var(--ink);
  display: grid;
  gap: 4px;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.hero__band-lead {
  align-items: center;
  background: var(--cream);
  display: flex;
  justify-content: center;
  padding: 3rem var(--gutter);
}
.hero__band-lead h2 {
  color: var(--blue);
  font-size: var(--text-headline);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
}

.hero__band-links {
  background: var(--teal);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  padding: 2.5rem var(--gutter);
}

.hero__link-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero__link-label {
  color: rgba(255, 255, 255, 0.72);
  font: 700 var(--text-xs)/1 var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__pill {
  align-items: center;
  border: 2px solid var(--white);
  border-radius: var(--radius-pill);
  color: var(--white);
  display: inline-flex;
  font: 700 var(--text-xs)/1 var(--font-display);
  gap: 0.5rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.05rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--dur-1) ease, transform var(--dur-2) var(--ease-out-quint);
}
.hero__pill img {
  height: 0.85rem;
  transition: transform var(--dur-2) var(--ease-out-expo);
  width: auto;
}
.hero__pill:hover, .hero__pill:focus-visible {
  background: rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}
.hero__pill:hover img, .hero__pill:focus-visible img {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__art {
    order: -1;
  }
  .hero__mark {
    max-width: 300px;
  }
  .hero__band {
    grid-template-columns: 1fr;
  }
  .hero__link-group {
    align-items: center;
  }
  .hero__pill-list {
    justify-content: center;
  }
}
.site-nav {
  background: var(--blue);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: box-shadow var(--dur-2) var(--ease-out-expo);
}
.site-nav.is-scrolled {
  box-shadow: 0 6px 0 rgba(46, 46, 46, 0.12);
}

.site-nav__inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  height: 68px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--maxw);
  padding: 0 var(--gutter);
  width: 100%;
}

.skip-link {
  background: var(--amber);
  color: var(--ink);
  font: 700 var(--text-xs) var(--font-display);
  left: 1rem;
  letter-spacing: 0.08em;
  padding: 0.75rem 1rem;
  position: absolute;
  text-transform: uppercase;
  top: -4rem;
  transition: top var(--dur-2) var(--ease-out-expo);
  z-index: 200;
}
.skip-link:focus {
  top: 0.75rem;
}

.site-nav__brand {
  align-items: center;
  display: inline-flex;
  gap: 0.7rem;
  text-decoration: none;
}

.site-nav__mark {
  height: 34px;
  width: auto;
  transition: transform var(--dur-2) var(--ease-out-quint);
}

.site-nav__brand:hover .site-nav__mark,
.site-nav__brand:focus-visible .site-nav__mark {
  transform: rotate(-12deg) scale(1.08);
}

.site-nav__wordmark {
  color: var(--white);
  font: 700 var(--text-lg)/1 var(--font-display);
  letter-spacing: 0.06em;
}

.site-nav__wordmark-dot {
  color: var(--white);
}

.site-nav__menu {
  align-items: center;
  display: flex;
  gap: 1.75rem;
}

.site-nav__links {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.site-nav__links a {
  color: var(--white);
  display: inline-block;
  font: 700 var(--text-xs)/1 var(--font-display);
  letter-spacing: 0.1em;
  padding: 0.35rem 0;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--dur-1) ease;
}
.site-nav__links a::after {
  background: var(--amber);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-2) var(--ease-out-expo);
  width: 100%;
}
.site-nav__links a:hover, .site-nav__links a:focus-visible {
  color: var(--white);
}
.site-nav__links a:hover::after, .site-nav__links a:focus-visible::after {
  transform: scaleX(1);
}
.site-nav__links a.is-active {
  color: var(--white);
}
.site-nav__links a.is-active::after {
  transform: scaleX(1);
}

.site-nav__cta {
  align-items: center;
  background: var(--amber);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  display: inline-flex;
  flex: none;
  font: 700 var(--text-xs)/1 var(--font-display);
  gap: 0.5rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow var(--dur-1) ease, transform var(--dur-1) ease;
}
.site-nav__cta img {
  height: 0.85rem;
  transition: transform var(--dur-2) var(--ease-out-expo);
  width: auto;
}
.site-nav__cta:hover, .site-nav__cta:focus-visible {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-1px, -1px);
}
.site-nav__cta:hover img, .site-nav__cta:focus-visible img {
  transform: translateX(3px);
}
.site-nav__cta img {
  filter: brightness(0) saturate(100%);
  opacity: 0.9;
}

.site-nav__toggle {
  align-items: center;
  background: transparent;
  border: 2px solid var(--white);
  border-radius: var(--radius-pill);
  color: var(--white);
  cursor: pointer;
  display: none;
  font: 700 var(--text-2xs)/1 var(--font-display);
  gap: 0.5rem;
  letter-spacing: 0.1em;
  padding: 0.55rem 0.9rem;
  text-transform: uppercase;
}
.site-nav__toggle .site-nav__toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.site-nav__toggle .site-nav__toggle-icon i {
  background: currentColor;
  display: block;
  height: 2px;
  transition: transform var(--dur-2) var(--ease-out-expo);
  width: 100%;
}
.site-nav__toggle:hover, .site-nav__toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 940px) {
  .site-nav__toggle {
    display: inline-flex;
  }
  .site-nav__menu {
    align-items: stretch;
    background: var(--blue);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    gap: 0.25rem;
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 var(--gutter);
    position: absolute;
    top: 100%;
    transition: max-height var(--dur-3) var(--ease-out-expo), opacity var(--dur-2) ease, padding var(--dur-3) var(--ease-out-expo);
    width: 100%;
  }
  .site-nav.is-open .site-nav__menu {
    max-height: 34rem;
    opacity: 1;
    padding: 1.25rem var(--gutter) 1.75rem;
  }
  .site-nav__links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .site-nav__links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .site-nav__links a {
    font-size: var(--text-lg);
    padding: 0.95rem 0;
    width: 100%;
  }
  .site-nav__links a::after {
    display: none;
  }
  .site-nav__cta {
    align-self: flex-start;
    margin-top: 1rem;
  }
  .site-nav.is-open .site-nav__toggle-icon i:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .site-nav.is-open .site-nav__toggle-icon i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
}
@media (max-width: 420px) {
  .site-nav__wordmark {
    font-size: var(--text-sm);
  }
  .site-nav__toggle-label {
    display: none;
  }
}
.next-meetup header {
  width: 100%;
  background: #ABC2FB;
  display: flex;
  font-weight: 700;
  padding: 16px 0;
  overflow: hidden;
}
.next-meetup header .next-meetup-callout {
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: justify-start;
  margin: 0;
}
.next-meetup header .next-meetup-callout__title {
  font-size: var(--text-3xl);
}
@media (max-width: 992px) {
  .next-meetup header .next-meetup-callout__title {
    font-size: var(--text-2xl);
  }
}
.next-meetup header .next-meetup-callout__icon {
  margin: 0 12px;
}
@media (max-width: 992px) {
  .next-meetup header .next-meetup-callout__icon {
    transform: scale(0.8);
  }
}
.next-meetup header .next-meetup-callout--infinite-horizontal-animation {
  animation: marquee-x 32s linear infinite;
  will-change: transform;
}
.next-meetup header .next-meetup-callout--infinite-horizontal-animation:hover {
  animation-play-state: paused;
}
.next-meetup > article {
  display: flex;
  padding: 5rem 3rem;
  background-color: #F6EEEC;
  justify-content: center;
}
@media (max-width: 1300px) {
  .next-meetup > article {
    padding: 5rem 2rem;
    flex-direction: column;
  }
}
.next-meetup > article .next-meetup__details {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.next-meetup > article .next-meetup__details .stars {
  position: relative;
  width: 90px;
  height: 90px;
  top: 10px;
  left: -45px;
}
@media (max-width: 1300px) {
  .next-meetup > article .next-meetup__details {
    align-self: center;
  }
}
@media (max-width: 992px) {
  .next-meetup > article .next-meetup__details {
    width: 80%;
  }
}
.next-meetup > article .next-meetup__details h2 {
  font-weight: 700;
  color: #3967D1;
  font-size: var(--text-3xl);
}
.next-meetup > article .next-meetup__details ul li {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.next-meetup > article .next-meetup__details ul li:first-child {
  margin-top: 3rem;
}
.next-meetup > article .next-meetup__details ul li img {
  width: 50px;
  margin-right: 0.5rem;
}
.next-meetup > article .next-meetup__speakers {
  display: flex;
  justify-content: center;
}
@media (max-width: 1300px) {
  .next-meetup > article .next-meetup__speakers {
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .next-meetup > article .next-meetup__speakers {
    flex-direction: column;
    align-items: center;
  }
}
.next-meetup > article .next-meetup__speakers li {
  margin-right: 3rem;
  position: relative;
  max-width: 350px;
}
@media (max-width: 768px) {
  .next-meetup > article .next-meetup__speakers li {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
.next-meetup > article .next-meetup__speakers li img {
  width: 330px;
  height: 360px;
  object-fit: cover;
}
.next-meetup > article .next-meetup__speakers li article {
  padding: 1rem;
  position: relative;
  width: 340px;
  background-color: #FFC24D;
  height: 150px;
  margin-top: -75px;
  z-index: 1;
}
.next-meetup > article .next-meetup__speakers li article h1 {
  font-size: var(--text-xl);
  font-weight: 700;
  border-bottom: 1px solid black;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.view {
  margin: 0 auto;
  width: 85%;
}
@media (min-width: 1024px) {
  .view {
    width: 65%;
  }
}
.view section {
  width: 100%;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.view section:first-child {
  margin-top: 4rem;
}
.view h2 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: var(--text-4xl);
}
.view h3 {
  margin-bottom: 1rem;
  font-size: var(--text-xl);
  overflow-wrap: break-word;
}
.view span {
  font-weight: bold;
}
.view .keep-aspect-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 1.25rem;
}
.view .keep-aspect-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#view-meetup,
#view-meetup * {
  box-sizing: border-box;
}

#view-meetup {
  background: #F3EEED;
  color: #2E2E2E;
  font-family: var(--font-display);
  width: 100%;
}

.view-meetup__breadcrumb {
  background: #3967D1;
  color: #ffffff;
  width: 100%;
}
.view-meetup__breadcrumb .breadcrumb__inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  height: 48px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 4rem;
  width: 100%;
}
.view-meetup__breadcrumb .breadcrumb__trail {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--text-sm);
  font-weight: 700;
  gap: 0.875rem;
  letter-spacing: 0.08em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.view-meetup__breadcrumb .breadcrumb__trail a {
  color: #ffffff;
  text-decoration: none;
}
.view-meetup__breadcrumb .breadcrumb__trail a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.view-meetup__breadcrumb .breadcrumb__trail span[aria-hidden] {
  color: rgba(255, 255, 255, 0.55);
}
.view-meetup__breadcrumb .breadcrumb__current {
  color: #ffffff;
  opacity: 0.75;
}
@media (max-width: 900px) {
  .view-meetup__breadcrumb .breadcrumb__inner {
    height: auto;
    padding: 1rem 1.5rem;
  }
  .view-meetup__breadcrumb .breadcrumb__trail {
    font-size: var(--text-xs);
  }
}

.view-meetup__hero {
  background: #F3EEED;
  width: 100%;
}
.view-meetup__hero .hero__inner {
  border-bottom: 3px solid #2E2E2E;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0.75rem 4rem 0.75rem;
  width: 100%;
}
.view-meetup__hero .hero__left {
  align-self: center;
  display: flex;
  flex-direction: column;
  max-width: 660px;
  min-width: 0;
}
.view-meetup__hero .hero__heading {
  align-items: flex-start;
  display: flex;
  gap: 1.5rem;
}
.view-meetup__hero .date-badge {
  align-items: center;
  background: #F3EEED;
  border: 2.5px solid #3967D1;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #2E2E2E;
  color: #3967D1;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  font-weight: 700;
  height: 120px;
  justify-content: center;
  min-width: 90px;
  padding: 0.75rem;
  text-align: center;
  width: 90px;
}
.view-meetup__hero .date-badge__day {
  font-size: var(--text-3xl);
  line-height: 1;
}
.view-meetup__hero .date-badge__month {
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  margin-top: 0.6rem;
}
.view-meetup__hero .date-badge__year {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}
.view-meetup__hero .hero__title-block {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  padding-top: 0.25rem;
}
.view-meetup__hero .hero__pill {
  align-items: center;
  background: transparent;
  border: 1.5px solid rgba(57, 103, 209, 0.75);
  border-radius: 10px;
  color: #3967D1;
  display: inline-flex;
  font-size: var(--text-xs);
  font-weight: 700;
  height: 32px;
  justify-content: center;
  letter-spacing: 0.18em;
  min-width: 92px;
  padding: 0 0.75rem;
  width: fit-content;
}
.view-meetup__hero .hero__title {
  color: #3967D1;
  font-size: var(--text-title-lg);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1;
  margin: 0;
}
.view-meetup__hero .hero__title-line {
  display: block;
}
.view-meetup__hero .hero__description {
  color: rgba(46, 46, 46, 0.82);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--leading-body);
  margin: 1.5rem 0 0;
  max-width: 84%;
}
@media (max-width: 980px) {
  .view-meetup__hero .hero__inner {
    padding: 1rem 2rem 1rem;
  }
  .view-meetup__hero .hero__left {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .view-meetup__hero .hero__heading {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .view-meetup__hero .date-badge {
    height: 104px;
    min-width: 84px;
    width: 84px;
  }
  .view-meetup__hero .date-badge__day {
    font-size: var(--text-2xl);
  }
}

.view-meetup__grid-section {
  background: #F3EEED;
  width: 100%;
}
.view-meetup__grid-section .grid-section__inner {
  margin: 0 auto;
  max-width: 1600px;
  padding: 1rem 4rem 1.5rem;
  width: 100%;
}

.view-meetup__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
}
@media (max-width: 980px) {
  .view-meetup__grid {
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }
}

.view-meetup__col {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  min-width: 0;
}

.view-meetup__col--left .host-card {
  flex: 1 1 auto;
}
.view-meetup__col--left .speakers-card {
  flex: 1.5 1 auto;
}

.view-meetup__col--right .charla-destacada {
  flex: 1;
}

.card {
  background: #ffffff;
  border: 3px solid #3967D1;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  position: relative;
  transition: box-shadow var(--dur-2) var(--ease-out-expo), transform var(--dur-2) var(--ease-out-expo);
}
.card:hover {
  box-shadow: 6px 6px 0 rgba(57, 103, 209, 0.9);
  transform: translate(-2px, -2px);
}
.card .card__label {
  align-items: center;
  background: #397E78;
  border-radius: 10px;
  color: #ffffff;
  display: inline-flex;
  font-size: var(--text-2xs);
  font-weight: 700;
  gap: 0.45rem;
  height: 32px;
  left: 1.5rem;
  letter-spacing: 0.12em;
  padding: 0 1.125rem;
  position: absolute;
  text-transform: uppercase;
  top: -16px;
  z-index: 1;
}
.card .card__label--speakers {
  background: #3967D1;
}
.card .card__label--charla {
  background: #E63946;
}
.card .card__label-icon {
  align-items: center;
  display: inline-flex;
  height: 0.8rem;
  justify-content: center;
  line-height: 1;
  width: 0.8rem;
}
.card .card__label-icon svg {
  display: block;
  height: 100%;
  width: 100%;
}

.host-card {
  justify-content: center;
  padding: 1.5rem 1.5rem;
}
.host-card .host-card__body {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}
.host-card .host-card__logo-tile {
  align-items: center;
  background: #F7F4F2;
  border-radius: 10px;
  display: flex;
  flex: 0 0 auto;
  height: 104px;
  justify-content: center;
  padding: 1rem;
  width: 104px;
}
.host-card .host-card__logo {
  display: block;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.host-card .host-card__info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
}
.host-card .host-card__name {
  color: #2E2E2E;
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.05;
  margin: 0 0 0.625rem;
  text-decoration: none;
}
.host-card .host-card__description {
  color: rgba(46, 46, 46, 0.72);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--leading-body);
  margin: 0 0 0.875rem;
  max-width: 38ch;
}
.host-card .host-card__link {
  align-items: baseline;
  color: #3967D1;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  gap: 0.35rem;
  letter-spacing: 0.02em;
  margin-top: 0;
  text-decoration: none;
  word-break: break-all;
}
.host-card .host-card__link:hover, .host-card .host-card__link:focus-visible {
  text-decoration: underline;
}
.host-card .host-card__link-icon {
  font-size: 0.9em;
  line-height: 1;
  opacity: 0.85;
}
@media (max-width: 520px) {
  .host-card .host-card__body {
    flex-direction: column;
  }
  .host-card .host-card__name {
    font-size: var(--text-2xl);
  }
  .host-card .host-card__link {
    margin-top: 1rem;
  }
}

.speakers-card {
  padding: 1.25rem 1.5rem 1.5rem;
}
.speakers-card .speakers-list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-evenly;
  list-style: none;
  margin: 0;
  padding: 0;
}
.speakers-card .speaker {
  align-items: flex-start;
  display: flex;
  gap: 1.125rem;
  padding: 0.375rem 0;
}
.speakers-card .speaker + .speaker {
  border-top: 1px solid rgba(46, 46, 46, 0.1);
}
.speakers-card .speaker:first-child {
  padding-top: 0.25rem;
}
.speakers-card .speaker__avatar {
  background: #F3EEED;
  border-radius: 50%;
  flex: 0 0 auto;
  height: 92px;
  object-fit: cover;
  width: 92px;
}
.speakers-card .speaker__avatar--placeholder {
  align-items: center;
  color: rgba(46, 46, 46, 0.55);
  display: flex;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.04em;
}
.speakers-card .speaker__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 0.5rem;
}
.speakers-card .speaker__name {
  color: #3967D1;
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.1;
  margin: 0;
  text-decoration: none;
}
.speakers-card .speaker__role {
  color: rgba(46, 46, 46, 0.7);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.45;
  margin: 0.35rem 0 0;
}
.speakers-card .speaker__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1.25rem;
  list-style: none;
  margin: 0.625rem 0 0;
  padding: 0;
}
.speakers-card .speaker__socials a {
  align-items: baseline;
  color: #3967D1;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  gap: 0.35rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.speakers-card .speaker__socials a:hover, .speakers-card .speaker__socials a:focus-visible {
  text-decoration: underline;
}
.speakers-card .speaker__socials .speaker__socials-arrow {
  font-size: 0.9em;
  line-height: 1;
  opacity: 0.85;
}

.charla-destacada {
  flex: 1 1 auto;
  padding: 1.25rem 1.5rem 1.25rem;
}
.charla-destacada .charla-destacada__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}
.charla-destacada .charla-destacada__counter {
  color: #3967D1;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.charla-destacada .carousel {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  position: relative;
}
.charla-destacada .carousel__track {
  display: flex;
  flex: 1 1 auto;
  list-style: none;
  margin: 0;
  min-height: 0;
  overflow-x: auto;
  padding: 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.charla-destacada .carousel__track::-webkit-scrollbar {
  display: none;
}
.charla-destacada .slide {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: flex-start;
  scroll-snap-align: start;
  width: 100%;
}
.charla-destacada .slide__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 0;
  max-width: 58%;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.charla-destacada .slide__title a {
  color: #3967D1;
  text-decoration: none;
}
.charla-destacada .slide__title a:hover, .charla-destacada .slide__title a:focus-visible {
  text-decoration: underline;
}
.charla-destacada .slide__speakers {
  align-items: center;
  color: rgba(46, 46, 46, 0.7);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  gap: 0.5rem;
  margin: 0;
  min-height: 36px;
  padding: 0;
}
.charla-destacada .slide__speaker-avatar {
  border-radius: 50%;
  height: 26px;
  object-fit: cover;
  width: 26px;
}
.charla-destacada .slide__speaker-avatar--placeholder {
  background: #F3EEED;
  display: inline-block;
}
.charla-destacada .keep-aspect-ratio {
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 8px;
  margin: 0;
  margin-top: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.charla-destacada .keep-aspect-ratio iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.charla-destacada .slide__footer {
  border-top: 1px solid rgba(46, 46, 46, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 1.25rem;
}
.charla-destacada .slide__meta {
  align-items: center;
  display: flex;
  font-size: var(--text-xs);
  font-weight: 700;
  gap: 0.625rem;
  letter-spacing: 0.06em;
}
.charla-destacada .slide__meta-label {
  align-items: center;
  background: #397E78;
  border-radius: 7px;
  color: #ffffff;
  display: inline-flex;
  height: 28px;
  padding: 0 0.75rem;
}
.charla-destacada .slide__meta--duracion .slide__meta-label {
  background: #3967D1;
}
.charla-destacada .slide__meta-value {
  color: rgba(46, 46, 46, 0.85);
}
.charla-destacada .carousel__btn {
  align-items: center;
  background: #ffffff;
  border: 2px solid #3967D1;
  border-radius: 50%;
  color: #3967D1;
  cursor: pointer;
  display: flex;
  font-size: var(--text-xl);
  font-weight: 700;
  height: 40px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  z-index: 2;
}
.charla-destacada .carousel__btn:hover:not([disabled]) {
  background: #3967D1;
  color: #ffffff;
}
.charla-destacada .carousel__btn[disabled] {
  cursor: default;
  opacity: 0.35;
}
.charla-destacada .carousel__btn--prev {
  left: 8px;
}
.charla-destacada .carousel__btn--next {
  right: 8px;
}
.charla-destacada .carousel__dots {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.125rem;
}
.charla-destacada .carousel__dot {
  background: rgba(57, 103, 209, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
  width: 8px;
}
.charla-destacada .carousel__dot:hover {
  background: rgba(57, 103, 209, 0.55);
}
.charla-destacada .carousel__dot.is-active {
  background: #3967D1;
  width: 26px;
}
.charla-destacada .carousel__dot:focus-visible {
  outline: 2px solid #3967D1;
  outline-offset: 2px;
}
@media (max-width: 640px) {
  .charla-destacada .carousel__btn--prev {
    left: 4px;
  }
  .charla-destacada .carousel__btn--next {
    right: 4px;
  }
  .charla-destacada .slide__title {
    max-width: 100%;
  }
  .charla-destacada .slide__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.view-meetup__footer-bar {
  background: #F3EEED;
  border-top: 3px solid #2E2E2E;
  width: 100%;
}
.view-meetup__footer-bar .footer-bar__inner {
  margin: 0 auto;
  max-width: 1600px;
  padding: 1.625rem 4rem;
  text-align: center;
  width: 100%;
}
.view-meetup__footer-bar a {
  color: #3967D1;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.view-meetup__footer-bar a:hover {
  text-decoration: underline;
}

.view-meetup__content {
  background: #F3EEED;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 4rem 2rem;
  width: 100%;
}

#meetups {
  background-color: #F6EEEC;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}
#meetups header {
  background-color: #3967D1;
  border: 0 solid black;
  border-width: 2px 0;
  color: white;
  padding: 2rem 3.5rem;
}
@media (max-width: 425px) {
  #meetups header {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
#meetups header h1 {
  color: #FFC24D;
  font-size: var(--text-4xl);
  font-weight: bold;
  margin-bottom: 0.8rem;
}
@media (max-width: 425px) {
  #meetups header h1 {
    font-size: var(--text-xl);
    margin-bottom: 0;
  }
}
@media (max-width: 425px) {
  #meetups header p {
    display: none;
  }
}
#meetups header .meetup-event__search-link {
  align-items: center;
  display: inline-flex;
  font-weight: bold;
  margin-top: 1rem;
}
#meetups header .meetup-event__search-link, #meetups header .meetup-event__search-link:active, #meetups header .meetup-event__search-link:visited, #meetups header .meetup-event__search-link:focus, #meetups header .meetup-event__search-link:hover {
  color: #fff;
  text-decoration: none;
}
#meetups header .meetup-event__search-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
#meetups header .meetup-event__search-link img {
  margin-left: 0.5rem;
}
#meetups .meetup-event__date_year {
  align-items: center;
  background-color: #F6EEEC;
  border-bottom: 2px solid #2851AE;
  display: flex;
  font-weight: bold;
  justify-content: space-between;
  margin: 2.75rem 0 0;
  padding: 1.25rem 8rem 1.5rem;
  position: sticky;
  top: 68px;
  z-index: 5;
}
@media (max-width: 768px) {
  #meetups .meetup-event__date_year {
    padding: 1rem 3rem 1.25rem;
  }
}
@media (max-width: 425px) {
  #meetups .meetup-event__date_year {
    padding: 0.75rem 1.5rem 1rem;
  }
}
#meetups ul li {
  align-items: center;
  display: flex;
  overflow: hidden;
  transition: background-color var(--dur-2) ease;
}
#meetups ul li:hover {
  background-color: rgba(57, 126, 120, 0.5);
}
@media (max-width: 425px) {
  #meetups ul li {
    padding: 1.5rem 1rem;
  }
}
#meetups ul li:not(:last-child) {
  border-bottom: 1px solid #3967D1;
}
#meetups ul li a {
  display: flex;
  font-weight: bold;
  justify-content: space-between;
  padding: 1.5rem 8rem;
  width: 100%;
}
@media (max-width: 425px) {
  #meetups ul li a {
    align-items: center;
    flex-direction: column;
    padding: 1.5rem 0;
  }
}
@media (max-width: 768px) {
  #meetups ul li a {
    padding: 1.5rem 3rem;
  }
}
#meetups ul li a, #meetups ul li a:active, #meetups ul li a:visited, #meetups ul li a:focus, #meetups ul li a:hover {
  color: #3967D1;
  text-decoration: none;
}
#meetups ul li a .meetup-event__date {
  align-items: center;
  display: flex;
}
#meetups ul li a .meetup-event__company {
  align-items: center;
  display: flex;
}
@media (max-width: 425px) {
  #meetups ul li a .meetup-event__company {
    margin-top: 1rem;
  }
}
#meetups ul li a img {
  margin-left: 0.5rem;
  transition: transform var(--dur-2) var(--ease-out-expo);
  /* Hacky way to get the color from the white SVG. Tool used: https://angel-rs.github.io/css-color-filter-generator/ */
  filter: brightness(0) saturate(100%) invert(37%) sepia(91%) saturate(575%) hue-rotate(186deg) brightness(90%) contrast(95%);
}
#meetups ul li a:hover img {
  transform: translateX(0.4rem);
}

#sponsors-list {
  display: flex;
  overflow: hidden;
}
#sponsors-list ul {
  padding-left: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  border-top: 2px solid black;
  background-color: #F6EEEC;
}
#sponsors-list ul.infinite-horizontal-animation {
  animation: marquee-x 26s linear infinite;
  will-change: transform;
}
#sponsors-list ul.infinite-horizontal-animation:hover {
  animation-play-state: paused;
}
#sponsors-list ul li img {
  max-width: 12rem;
  height: 2.5rem;
}

footer {
  border-top: 2px solid black;
  padding: 6rem 3rem;
  background-color: #F6EEEC;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  footer {
    padding: 2rem 1rem;
    flex-direction: column;
    align-items: center;
  }
}
footer a, footer a:active, footer a:hover, footer a:focus {
  color: #2E2E2E;
  text-decoration: none;
}
footer div:first-child h1 {
  font-size: var(--text-3xl);
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
}
footer div:first-child h1:hover {
  filter: drop-shadow(-0.5rem 0.5rem 0.5rem rgb(57, 126, 120));
}
@media (max-width: 768px) {
  footer div:first-child h1 {
    font-size: var(--text-2xl);
  }
}
footer div:first-child ul {
  display: flex;
}
footer div:first-child ul li {
  margin-right: 1rem;
}
footer div:first-child ul li:hover {
  filter: drop-shadow(-0.5rem 0.5rem 0.5rem rgb(57, 126, 120));
}
@media (max-width: 768px) {
  footer div:first-child ul li svg {
    transform: scale(0.9);
  }
}
footer div:nth-child(2) {
  margin-left: 5rem;
}
@media (max-width: 768px) {
  footer div:nth-child(2) {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  footer div:nth-child(2) img {
    transform: scale(0.8);
  }
}

#view-talks .talks-subtitle {
  color: var(--ink-70);
  margin-bottom: 1.5rem;
  max-width: 62ch;
}
#view-talks .talks-year {
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin: 2.75rem 0 1.5rem;
  padding-bottom: 0.5rem;
}
#view-talks .talks-count {
  color: var(--ink-50);
  font: 700 var(--text-xs) var(--font-display);
  letter-spacing: 0.06em;
  margin-top: 0.85rem;
  text-transform: uppercase;
}
#view-talks .talks-search {
  background-color: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-blue);
  color: var(--blue);
  font: 700 var(--text-md) var(--font-display);
  letter-spacing: 0.05em;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
  transition: box-shadow var(--dur-1) ease, transform var(--dur-1) ease;
  width: 100%;
}
#view-talks .talks-search::placeholder {
  color: var(--blue);
  opacity: 0.5;
}
#view-talks .talks-search:focus {
  box-shadow: var(--shadow-amber);
  outline: none;
  transform: translate(-2px, -2px);
}
#view-talks .talk {
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  margin: 0 0 0.9rem;
  padding: 1.25rem 1.4rem;
  transition: box-shadow var(--dur-2) var(--ease-out-expo), transform var(--dur-2) var(--ease-out-expo);
}
#view-talks .talk[hidden] {
  display: none;
}
#view-talks .talk:hover {
  box-shadow: var(--shadow-blue);
  transform: translate(-2px, -2px);
}
#view-talks .talk__title {
  font-size: var(--text-xl);
  line-height: 1.3;
  margin: 0;
}
#view-talks .talk__title a {
  color: var(--ink);
  font-size: inherit;
  text-decoration: none;
}
#view-talks .talk__title a:hover, #view-talks .talk__title a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
#view-talks .talk__speakers {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-top: 0.7rem;
}
#view-talks .talk__speaker {
  align-items: center;
  color: var(--ink-70);
  display: inline-flex;
  font-size: var(--text-sm);
  gap: 0.45rem;
}
#view-talks .talk__avatar {
  border-radius: 50%;
  height: 26px;
  object-fit: cover;
  width: 26px;
}
#view-talks .talk__description {
  color: var(--ink-70);
  font-size: var(--text-md);
  line-height: var(--leading-body);
  margin-top: 0.75rem;
  max-width: 72ch;
}
#view-talks .talk__meta {
  align-items: center;
  color: var(--ink-50);
  display: flex;
  flex-wrap: wrap;
  font: 700 var(--text-xs) var(--font-display);
  gap: 0.5rem;
  letter-spacing: 0.08em;
  margin-top: 0.85rem;
  text-transform: uppercase;
}
#view-talks .talk__meta-host {
  color: var(--teal);
}

#view-community h2 {
  overflow-wrap: break-word;
}
@media (max-width: 480px) {
  #view-community h2 {
    font-size: var(--text-2xl);
  }
}
#view-community .community-subtitle {
  color: #2E2E2E;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
#view-community .community-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#view-community .community-search {
  background-color: #F6EEEC;
  border: 3px solid #2E2E2E;
  box-shadow: 6px 6px 0 #3967D1;
  color: #3967D1;
  font: 700 var(--text-md) var(--font-display);
  letter-spacing: 0.05em;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  width: 100%;
}
#view-community .community-search::placeholder {
  color: #3967D1;
  opacity: 0.5;
}
#view-community .community-search:focus {
  box-shadow: 6px 6px 0 #FFC24D;
  outline: none;
  transform: translate(-2px, -2px);
}
#view-community .community-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#view-community .community-sort .sort-btn {
  background-color: transparent;
  border: 3px solid #2E2E2E;
  box-shadow: 4px 4px 0 #2E2E2E;
  cursor: pointer;
  font: 700 var(--text-xs) var(--font-display);
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
@media (max-width: 480px) {
  #view-community .community-sort .sort-btn {
    font-size: var(--text-2xs);
    letter-spacing: 0.02em;
    padding: 0.5rem 0.75rem;
  }
}
#view-community .community-sort .sort-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #2E2E2E;
}
#view-community .community-sort .sort-btn.active {
  background-color: #3967D1;
  border-color: #3967D1;
  box-shadow: 4px 4px 0 #2E2E2E;
  color: #fff;
}
#view-community .community-updated {
  color: #2E2E2E;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  opacity: 0.6;
  text-transform: uppercase;
}
#view-community .community-user-group {
  border-bottom: 2px solid #3967D1;
  color: #3967D1;
  font-size: var(--text-2xl);
  font-weight: bold;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
}
#view-community.sort-by-user .project-medal-wrap {
  display: none;
}
#view-community.sort-by-user [class*=project--medal-] {
  box-shadow: 4px 4px 0 #2E2E2E;
}

#view-community .project {
  align-items: stretch;
  border: 3px solid #2E2E2E;
  box-shadow: 4px 4px 0 #2E2E2E;
  display: flex;
  margin: 1rem 0;
  position: relative;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
#view-community .project[hidden] {
  display: none;
}
#view-community .project:hover {
  box-shadow: 6px 6px 0 #3967D1;
  transform: translate(-2px, -2px);
}
#view-community .project.project--medal-gold {
  box-shadow: 6px 6px 0 #FFC24D;
}
#view-community .project.project--medal-silver {
  box-shadow: 6px 6px 0 #C0C0C0;
}
#view-community .project.project--medal-bronze {
  box-shadow: 6px 6px 0 #CD7F32;
}
#view-community .project .project-header h3 a::after {
  content: "";
  inset: 0;
  position: absolute;
}
#view-community .project-medal-wrap {
  align-items: center;
  background-color: #F6EEEC;
  border-right: 3px solid #2E2E2E;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  min-width: 4.5rem;
}
@media (max-width: 480px) {
  #view-community .project-medal-wrap {
    min-width: 2.75rem;
    padding: 0 0.4rem;
  }
}
#view-community .project-medal {
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 480px) {
  #view-community .project-medal {
    height: 1.75rem;
    width: 1.75rem;
  }
}
#view-community .project-body {
  flex: 1;
  min-width: 0;
  padding: 1.25rem;
}
#view-community .project-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
#view-community .project-header h3 {
  font-size: var(--text-lg);
  line-height: 1.25;
  margin: 0;
  min-width: 0;
  overflow-wrap: break-word;
}
#view-community .project-header h3 a {
  color: #2E2E2E;
  text-decoration: none;
}
#view-community .project-header h3 a:hover {
  color: #3967D1;
}
#view-community .project-stars {
  background-color: #FFC24D;
  border: 2px solid #2E2E2E;
  color: #2E2E2E;
  font: 700 var(--text-sm) "Syncopate", sans-serif;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}
#view-community .project-description {
  color: #2E2E2E;
  margin: 0.5rem 0;
  opacity: 0.8;
  overflow-wrap: break-word;
}
#view-community .project-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
#view-community .project-author {
  color: #2E2E2E;
  font-size: var(--text-sm);
  opacity: 0.7;
}
#view-community .project-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-left: 0.5rem;
}
#view-community .project-topic {
  background-color: #F6EEEC;
  border: 2px solid #2E2E2E;
  font-family: var(--font-display);
  font-size: var(--text-2xs);
  letter-spacing: 0.03em;
  padding: 0.15rem 0.4rem;
  text-transform: uppercase;
}

#view-stats h2 {
  overflow-wrap: break-word;
}
@media (max-width: 480px) {
  #view-stats h2 {
    font-size: var(--text-2xl);
  }
}
#view-stats .stats-subtitle {
  color: #2E2E2E;
  margin-bottom: 2rem;
  opacity: 0.7;
}
#view-stats h3 {
  border-bottom: 2px solid #3967D1;
  color: #3967D1;
  font-size: var(--text-2xl);
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
}
#view-stats .stats-subheading {
  color: #2E2E2E;
  font-size: var(--text-sm);
  font-weight: bold;
  letter-spacing: 0.02em;
  margin: 2rem 0 0.75rem;
  opacity: 0.75;
}
#view-stats .stats-ranking {
  counter-reset: rank;
  list-style: none;
  padding: 0;
}
#view-stats .stats-ranking li {
  align-items: center;
  border: 3px solid #2E2E2E;
  box-shadow: 4px 4px 0 #2E2E2E;
  counter-increment: rank;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.75rem 0;
  padding: 1rem 1.25rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
#view-stats .stats-ranking li:hover {
  box-shadow: 6px 6px 0 #3967D1;
  transform: translate(-2px, -2px);
}
#view-stats .stats-ranking li::before {
  align-items: center;
  background-color: #FFC24D;
  border: 2px solid #2E2E2E;
  color: #2E2E2E;
  content: counter(rank);
  display: flex;
  flex: none;
  font: 700 var(--text-sm) "Syncopate", sans-serif;
  height: 2rem;
  justify-content: center;
  line-height: 1;
  width: 2rem;
}
#view-stats .stats-ranking li strong {
  color: #2E2E2E;
}
#view-stats .stats-ranking li a {
  color: #2E2E2E;
  text-decoration: none;
}
#view-stats .stats-ranking li a:hover {
  color: #3967D1;
}
#view-stats .stats-author {
  color: #2E2E2E;
  font-size: var(--text-sm);
  opacity: 0.6;
}
#view-stats .stats-value,
#view-stats .stats-visualcount-total {
  background-color: #FFC24D;
  border: 2px solid #2E2E2E;
  color: #2E2E2E;
  font: 700 var(--text-sm) "Syncopate", sans-serif;
  margin-left: auto;
  padding: 0.25rem 0.5rem;
}
#view-stats .stats-value {
  white-space: nowrap;
}
#view-stats .stats-table {
  border: 3px solid #2E2E2E;
  border-collapse: collapse;
  box-shadow: 4px 4px 0 #2E2E2E;
  margin: 1rem 0;
  width: 100%;
}
#view-stats .stats-table th, #view-stats .stats-table td {
  border-bottom: 2px solid #2E2E2E;
  padding: 0.85rem 1rem;
  text-align: left;
}
#view-stats .stats-table tr:last-child td {
  border-bottom: none;
}
#view-stats .stats-table th {
  background-color: #3967D1;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
#view-stats .stats-table td {
  color: #2E2E2E;
}
#view-stats .stats-table td:first-child {
  font-weight: bold;
}
#view-stats .stats-table td:not(:first-child) {
  font-variant-numeric: tabular-nums;
}
#view-stats .stats-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0;
}
#view-stats .stats-hero {
  background-color: #3967D1;
  border: 3px solid #2E2E2E;
  box-shadow: 8px 8px 0 #2E2E2E;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
#view-stats .stats-hero:hover {
  box-shadow: 12px 12px 0 #FFC24D;
  transform: translate(-4px, -4px);
}
#view-stats .stats-hero-number {
  font: 700 var(--text-6xl) "Syncopate", sans-serif;
  line-height: 1;
}
@media (max-width: 480px) {
  #view-stats .stats-hero-number {
    font-size: var(--text-5xl);
  }
}
#view-stats .stats-hero-label {
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  margin-top: 1rem;
  opacity: 0.9;
}
#view-stats .stats-visualcount {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}
#view-stats .stats-visualcount-row {
  align-items: center;
  display: flex;
  gap: 1rem;
}
#view-stats .stats-visualcount-year {
  color: #2E2E2E;
  font: 700 var(--text-sm) "Syncopate", sans-serif;
  letter-spacing: 0.05em;
  width: 3rem;
}
#view-stats .stats-visualcount-blocks {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 0.4rem;
}
#view-stats .stats-visualcount-total {
  min-width: 2.25rem;
  text-align: center;
}
#view-stats .stats-block {
  background-color: #FFC24D;
  border: 2px solid #2E2E2E;
  box-shadow: 2px 2px 0 #2E2E2E;
  display: block;
  height: 1.5rem;
  text-decoration: none;
  transition: transform 0.1s ease, background-color 0.1s ease;
  width: 1.5rem;
}
#view-stats .stats-block:hover {
  background-color: #3967D1;
  transform: translate(-1px, -1px);
}
#view-stats .stats-dot {
  background-color: #3967D1;
  border: 2px solid #2E2E2E;
  display: block;
  height: 0.85rem;
  text-decoration: none;
  transition: transform 0.1s ease, background-color 0.1s ease;
  width: 0.85rem;
}
#view-stats .stats-dot:hover {
  background-color: #FFC24D;
  transform: scale(1.4);
}
#view-stats .stats-stamps {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: space-between;
  margin: 2rem 0;
  overflow-x: auto;
  padding: 2rem 0.5rem;
}
@media (max-width: 720px) {
  #view-stats .stats-stamps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }
}
#view-stats .stats-stamp {
  background-color: #F6EEEC;
  border: 3px solid #2E2E2E;
  box-shadow: 4px 4px 0 #2E2E2E;
  flex: 0 0 auto;
  padding: 1rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
#view-stats .stats-stamp:hover {
  box-shadow: 8px 8px 0 #3967D1;
  transform: rotate(0) translate(-2px, -2px);
  z-index: 2;
}
#view-stats .stats-stamp--1 {
  transform: rotate(-3deg);
  background-color: #FFC24D;
}
#view-stats .stats-stamp--2 {
  transform: rotate(2deg);
  background-color: #3967D1;
  color: #fff;
}
#view-stats .stats-stamp--3 {
  transform: rotate(-1deg);
}
#view-stats .stats-stamp--4 {
  transform: rotate(4deg);
  background-color: #FFC24D;
}
#view-stats .stats-stamp--5 {
  transform: rotate(-2deg);
  background-color: #3967D1;
  color: #fff;
}
#view-stats .stats-stamp--6 {
  transform: rotate(3deg);
}
#view-stats .stats-stamp-num {
  font: 700 var(--text-3xl) "Syncopate", sans-serif;
  line-height: 1;
}
#view-stats .stats-stamp-label {
  font-family: var(--font-display);
  font-size: var(--text-2xs);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}
#view-stats .stats-receipt {
  background-color: #fff;
  border: 3px solid #2E2E2E;
  box-shadow: 4px 4px 0 #2E2E2E;
  font-family: var(--font-mono);
  margin: 1rem auto;
  max-width: 24rem;
  padding: 2rem 1.75rem;
}
#view-stats .stats-receipt-header {
  border-bottom: 2px dashed #2E2E2E;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}
#view-stats .stats-receipt-header div:first-child {
  font: 700 var(--text-xl) "Syncopate", sans-serif;
  letter-spacing: 0.1em;
}
#view-stats .stats-receipt-header div {
  font-size: var(--text-xs);
  margin-top: 0.25rem;
  text-transform: uppercase;
}
#view-stats .stats-receipt-row {
  display: flex;
  font-size: var(--text-sm);
  justify-content: space-between;
  padding: 0.4rem 0;
}
#view-stats .stats-receipt-row span:last-child {
  font-weight: bold;
}
#view-stats .stats-receipt-divider {
  border-top: 2px dashed #2E2E2E;
  margin: 1rem 0;
}
#view-stats .stats-receipt-total {
  font-size: var(--text-md);
  font-weight: bold;
  text-transform: uppercase;
}
#view-stats .stats-receipt-footer {
  border-top: 2px dashed #2E2E2E;
  font-size: var(--text-2xs);
  letter-spacing: 0.05em;
  margin-top: 1rem;
  padding-top: 1rem;
  text-align: center;
  text-transform: uppercase;
}
#view-stats .stats-topic {
  background-color: #F6EEEC;
  border: 2px solid #2E2E2E;
  color: #2E2E2E;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  padding: 0.4rem 0.7rem;
  text-transform: uppercase;
}
#view-stats .stats-topic em {
  color: #3967D1;
  font-style: normal;
  font-weight: bold;
  margin-left: 0.4rem;
}

#view-primera-vez {
  background: var(--cream);
  margin: 0 auto;
  max-width: 760px;
  padding: 3rem 2rem 4rem;
  width: 100%;
}
@media (max-width: 768px) {
  #view-primera-vez {
    padding: 2rem 1.25rem 2.5rem;
  }
}
@media (max-width: 425px) {
  #view-primera-vez {
    padding: 1.5rem 1rem 2rem;
  }
}

.pv-title {
  color: var(--blue);
  font: 700 var(--text-title)/1.05 var(--font-display);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.pv-subtitle {
  color: var(--ink-50);
  font-size: var(--text-md);
  line-height: var(--leading-body);
  margin-bottom: 2.5rem;
}

.pv-faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pv-faq__item {
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-2) var(--ease-out-expo), transform var(--dur-2) var(--ease-out-expo);
}
.pv-faq__item[open] {
  box-shadow: 6px 6px 0 var(--blue);
}
.pv-faq__item:hover {
  transform: translate(-2px, -2px);
}

.pv-faq__q {
  align-items: center;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  font: 700 var(--text-sm) var(--font-display);
  gap: 1rem;
  justify-content: space-between;
  letter-spacing: 0.01em;
  list-style: none;
  padding: 1.1rem 1.25rem;
}
.pv-faq__q::-webkit-details-marker {
  display: none;
}
.pv-faq__q:focus-visible {
  outline-offset: -3px;
}

.pv-faq__mark {
  flex: none;
  height: 14px;
  position: relative;
  width: 14px;
}
.pv-faq__mark::before, .pv-faq__mark::after {
  background: var(--blue);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 50%;
  transition: transform var(--dur-2) var(--ease-out-expo);
  width: 100%;
}
.pv-faq__mark::before {
  transform: translateY(-50%);
}
.pv-faq__mark::after {
  transform: translateY(-50%) rotate(90deg);
}

.pv-faq__item[open] .pv-faq__mark::after {
  transform: translateY(-50%) rotate(0deg);
}

.pv-faq__a {
  color: var(--ink-70);
  font-size: var(--text-md);
  line-height: var(--leading-body);
  padding: 0 3.25rem 1.25rem 1.25rem;
}

#view-404 {
  align-items: center;
  background: var(--cream);
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 68px);
  padding: 4rem var(--gutter);
  width: 100%;
}

.notfound {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 34rem;
  text-align: center;
}

.notfound__mark {
  height: auto;
  margin-bottom: 1.5rem;
  width: clamp(140px, 30vw, 220px);
  filter: drop-shadow(6px 8px 0 rgba(46, 46, 46, 0.28));
}

.notfound__code {
  color: var(--blue);
  font: 700 var(--text-display)/1 var(--font-display);
  letter-spacing: 0.02em;
}

.notfound__title {
  color: var(--ink);
  font-size: var(--text-2xl);
  margin-top: 0.5rem;
}

.notfound__text {
  color: var(--ink-70);
  margin-top: 0.75rem;
}

.notfound__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.notfound__link {
  background: var(--amber);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font: 700 var(--text-xs) var(--font-display);
  letter-spacing: 0.08em;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow var(--dur-1) ease, transform var(--dur-1) ease;
}
.notfound__link:hover, .notfound__link:focus-visible {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-2px, -2px);
}

/*# sourceMappingURL=styles.css.map */