/*

Ramen Crew Stylesheet
Author: Lee Frankis
Copyright: 2025 Idearium
Version 3.5

*/

/****************************************************************************************************/
/* Custom root styles */

@font-face {
    font-family: "Geist";
    src: url('assets/fonts/Geist-VariableFont_wght.ttf');
    font-display: swap;
}

@font-face {
    font-family: "GeistMono";
    src: url('assets/fonts/GeistMono-VariableFont_wght.ttf');
    font-display: swap;
}

:root {
    --container-width: 1200px;
    --container-padding: 20px;
    --grid-column-gap: 20px;
    --grid-row-gap: 20px;
    --gap: 5px;
    --gap-2x: calc(var(--gap) * 2); /* 10px */
    --gap-3x: calc(var(--gap) * 3); /* 15px */
    --gap-4x: calc(var(--gap) * 4); /* 20px */
    --gap-6x: calc(var(--gap) * 6); /* 30px */
    --gap-8x: calc(var(--gap) * 8); /* 40px */
    --gap-12x: calc(var(--gap) * 12); /* 60px */
    --white: #ffffff;
    --grey: #3A3A3A;
    --black: #101010;
    --amber: #F4932A;
    --blue: #669CA9;
    --border-radius: 8px;
    --big-border-radius: 24px;
}

/****************************************************************************************************/
/* Idearium default styles */

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

html {
    font-size: 16px; /* root em */
    scroll-behavior: smooth;
    scroll-padding-top: 48px;
}

body {
    margin: 0;
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    color: var(--white);
    background-color: var(--black);
}

button {
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    text-align: inherit;
    font: inherit;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* hr */
hr {
    border: none;
    height: 1px;
    background: rgba(0,0,0,0.60);
}

hr.light {
    border: none;
    height: 1px;
    background: rgba(0,0,0,0.20);
}

/* flex utilities */

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-ctr {
    justify-content: center;
    align-items: center;
}

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

.align-items-ctr {
    align-items: center;
}

.justify-ctr {
    justify-content: center;
}

.flex-right {
    margin-left: auto;
}

.fill-width {
    width: 100%;
}

.fill-height {
    height: 100%;
}

.space-between {
    justify-content: space-between;
}

.push-bottom {
    margin-top: auto;
}

.push-right {
    margin-left: auto;
}

/* Container */
.container {
  width: 100%;
  margin-inline: auto;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--grid-column-gap);
  row-gap: var(--gap-8x);
}

/* columns */
.col-1  { grid-column: span 1; }
.col-2  { grid-column: span 2; }
.col-3  { grid-column: span 3; }
.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-6  { grid-column: span 6; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }
.col-9  { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

/* gap */
.gap {
    gap: var(--gap); /* 5px */
}

.gap-2x {
    gap: var(--gap-2x); /* 10px */
}

.gap-3x {
    gap: var(--gap-3x); /* 15px */
}

.gap-4x {
    gap: var(--gap-4x); /* 20px */
}

.gap-6x {
    gap: var(--gap-6x); /* 30px */
}

.gap-8x {
    gap: var(--gap-8x); /* 40px */
}

.gap-12x {
    gap: var(--gap-12x); /* 60px */
}

/* fonts */
h1, h2, h3, h4, h5, p {
    margin: 0;
    line-height: 1.2;
    max-width: 75ch;
}

/* Geist Semi-bold */
.sb-display {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 6rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -6%;
    line-height: 1;
}

.sb-xl {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -6%;
}

.sb-l {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -6%;
}

.sb-m {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -6%;
}

.sb-r {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -6%;
}

/* Geist Regular */
.r-m {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 1.5rem;
    font-style: normal;
}

.r-r {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    font-style: normal;
}

.r-s {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
}

.r-xs {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 0.75rem;
    font-style: normal;
}


/* Geist Mono */
.gm-m {
    font-family: "GeistMono", sans-serif;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 400;
}

.gm-r {
    font-family: "GeistMono", sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
}

.gm-s {
    font-family: "GeistMono", sans-serif;
    text-transform: uppercase;
    font-size: 0.625rem;
    line-height: 1;
    font-weight: 400;
}


.f-color-black {
    color: var(--black);
}

.f-color-white {
    color: var(--white);
}

.f-color-faded {
    color: rgba(255,255,255,0.6);
}

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

.no-limit {
    max-width: 100%;
}

.max-30 {
    max-width: 30ch;
}



.rotate-90 {
    transform: rotate(-90deg);
}

.basic-list {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.basic-list a,
.unstyled-list a {
    color: inherit;
}

.unstyled-list {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style-type: none;
}

.truncate-2-lines {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* images */
.img-holder {
    background-color: #f0f0f0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.aspect-ratio-2-1 {
    aspect-ratio: 2 / 1;
}

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

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
}

.img-rounded {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.img-border {
    border: 1px solid var(--grey);
}

.img-headshot {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 240px;
    height: auto;
}

/* buttons */
.btn-primary {
    display: flex;
    width: fit-content;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--black);
    font-family: "GeistMono", sans-serif;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-primary:hover {
    color: var(--white);
    background-color: transparent;
}

.btn-secondary {
    display: flex;
    width: fit-content;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--white);
    color: var(--white);
    font-family: "GeistMono", sans-serif;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-tertiary {
    color: var(--white);
    text-decoration: none;
}

.btn-tertiary:hover {
    text-decoration: underline;
}

.btn-primary.fill-width,
.btn-secondary.fill-width {
    width: 100%;
}


.basic-link {
    color: inherit;
    font-weight: 500;
}

.unstyled-link {
    color: inherit;
    text-decoration: none;
}

/* page */
.page-width {
    width: 100%;
    max-width: 1240px;
    padding-left: var(--padding-x);
    padding-right: var(--padding-x);
    margin: 0 auto;
}

.section-padding {
    padding: 100px var(--gap-8x);
}

.section-padding-x {
    padding: 0px var(--gap-8x);
}

.inset-section {
    border-radius: var(--big-border-radius);

}

/* hr */
hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0;
}

/* gradients */
.amber-gradient-top {
    background: radial-gradient(85.42% 176.24% at 54.22% -98.77%, rgba(122, 74, 21, 0.15) 0%, rgba(223, 174, 120, 0.15) 23.08%, rgba(244, 147, 42, 0.15) 48.08%, rgba(215, 129, 37, 0.15) 64.04%, rgba(16, 16, 16, 0.15) 100%), #101010;
}

.blue-gradient-bottom {
    background: radial-gradient(93.95% 73.02% at 69.5% 101.6%, rgba(102, 156, 169, 0.20) 0%, rgba(16, 16, 16, 0.20) 100%), #101010;
}

.grey-gradient-top {
    background: linear-gradient(0deg, rgba(16, 16, 16, 0.20) 0%, rgba(90, 90, 90, 0.2) 100%), #101010;
}

.amber-blue-gradient {
    background: linear-gradient(270deg, rgba(16, 16, 16, 0.20) -6.64%, rgba(244, 147, 42, 0.20) 42.42%, rgba(102, 156, 169, 0.20) 77.77%, rgba(16, 16, 16, 0.20) 103.09%);
}

.amber-blue-gradient-top {
    background: radial-gradient(44.44% 18.5% at 29.13% 0%, rgba(102, 156, 169, 0.20) 0%, rgba(16, 16, 16, 0.20) 100%), radial-gradient(47.89% 18.5% at 67.5% 0%, rgba(244, 147, 42, 0.20) 0%, rgba(16, 16, 16, 0.20) 100%), #101010;
}

/* hide / show */
.hidden-sm,
.hidden-md {
    display: flex;
}

.visible-sm,
.visible-md {
    display: none;
}

/* overflow */
.overflow-hidden {
    overflow: hidden;
}

/* info card */
.info-card {
    text-align: left;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(102, 156, 169, 0.10);
    width: fit-content;
}

.info-card-alt {
    text-align: left;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(244, 147, 42, 0.10);
    width: fit-content;
}

.info-card svg {
    flex-shrink: 0;
}

/* header */
header {
    padding: 20px 40px 40px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 90;
}

header.default {
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.8) 25%, rgba(16, 16, 16, 0.00) 100%);
}

header.fade-bg {
    --header-bg-opacity: 0;

    background: linear-gradient(
        180deg,
        rgba(16, 16, 16, var(--header-bg-opacity)) 25%,
        rgba(16, 16, 16, 0) 100%
    );
}

header.no-bg {
    background: transparent;
}

/* logo */
.logo-1 {
    color: #FFF;
    text-align: center;
    font-family: "Geist", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    line-height: 1;
}

.logo-2 {
    color: #FFF;
    text-align: center;
    font-family: "GeistMono", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    line-height: 1;
}

/* nav */

nav ul {
    display: flex;
    gap: var(--gap-8x);
}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-family: "GeistMono", sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

/* mobile nav */

.mobile-nav {
    position: fixed;
    width: 100%;
    height: 100dvh;
    display: flex;
    padding: 20px 20px 80px 20px;
    background-color: var(--black);
    color: var(--white);
    z-index: 100;
}

.mobile-nav .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.mobile-nav .btn-close button {
    color: var(--white);
}

.nav-open {
    color: var(--white);
}

.menu-item {
	padding-top: 20px;
	padding-bottom: 20px;
}


/* hero */
.hero {
    position: relative;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 200px 40px 80px 40px;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.00) 0%, #101010 95%);
    color: var(--white);
}

.hero-spacer {
    height: 80px;
}

/* swipe container */
.swipe-container {
    overflow: hidden;
}

/* swipe card */
.swipe-card {
    border: 1px solid var(--grey);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 100%;
    min-width: 300px;
    background-color: var(--black);
}

.swipe-card-text {
    padding: 15px;
}

/* swiper */
/* Swiper container */
.custom-swiper {
  width: 100%;
  overflow: visible !important;
}

/* Swiper wrapper */
.custom-swiper .swiper-wrapper {
  align-items: stretch;
}

/* Slide width */
.custom-swiper .swiper-slide {
  width: max(400px, calc((100% - 60px) / 4));
  height: auto;
  display: flex;
  box-sizing: border-box;
}

/* Card */
.custom-swiper .swipe-card {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;

  box-sizing: border-box;
  overflow: hidden;
}

/* Card image */
.custom-swiper .swipe-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}

/* Card text */
.custom-swiper .swipe-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* how it works */
.hiw-number {
    width: 20%;
    max-width: 100px;
    min-width: 60px;
    flex-shrink: 0;
}

/* faqs */
.faq-item svg {
  flex-shrink: 0;
}

.faq-item .flex-row {
  cursor: pointer;
}

.faq-item {
  gap: 0;
}

.faq-question {
  width: 100%;
  padding: 0 0 20px 0;
  border: 0;
  background: none;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 20px 0;
}

.faq-icon {
  flex-shrink: 0;
}

.faq-item hr {
  width: 100%;
  margin: 0;
}

/* footer */
footer {
    padding: 80px 40px 20px 40px;
    font-family: "GeistMono", sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
}

/* label */
.label {
    font-family: "GeistMono", sans-serif;
    text-transform: uppercase;
    font-size: 0.625rem;
    line-height: 0.9;
    font-weight: 600;
    color: var(--black);
    display: flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 100px;
    width: fit-content;
}

.label.amber {
    background-color: var(--amber);
}

.label.blue {
    background-color: var(--blue);
}

/* future events */
.future-event-image, .past-event-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

/* chat benefits */
.chat-benefits {
    max-width: 460px;
}


/****************************************************************************************************/
/* media queries */

/* Large screens */
@media screen and (max-width: 1590px) {}

/* Medium screens */
@media screen and (max-width: 992px) {
/* flex */
.flex-col-md {
    display: flex;
    flex-direction: column;
}

.flex-row-md {
    display: flex;
    flex-direction: row;
}

.col-1-md  { grid-column: span 1; }
.col-2-md  { grid-column: span 2; }
.col-3-md  { grid-column: span 3; }
.col-4-md  { grid-column: span 4; }
.col-5-md  { grid-column: span 5; }
.col-6-md  { grid-column: span 6; }
.col-7-md  { grid-column: span 7; }
.col-8-md  { grid-column: span 8; }
.col-9-md  { grid-column: span 9; }
.col-10-md { grid-column: span 10; }
.col-11-md { grid-column: span 11; }
.col-12-md { grid-column: span 12; }

/* gap */
.gap-md {
    gap: var(--gap); /* 5px */
}

.gap-2x-md {
    gap: var(--gap-2x); /* 10px */
}

.gap-3x-md {
    gap: var(--gap-3x); /* 15px */
}

.gap-4x-md {
    gap: var(--gap-4x); /* 20px */
}

.gap-6x-md {
    gap: var(--gap-6x); /* 30px */
}

.gap-8x-md {
    gap: var(--gap-8x); /* 40px */
}

.gap-12x-md {
    gap: var(--gap-12x); /* 60px */
}

/* Geist Semi-bold */
.sb-display {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -6%;
}

.sb-xl {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -6%;
}

.sb-l {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -6%;
}

.sb-m {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -6%;
}

.sb-r {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -6%;
}

/* Geist Regular */
.r-m {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 1.25rem;
    font-style: normal;
}

.r-r {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    font-style: normal;
}

.r-s {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
}

.r-xs {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 0.75rem;
    font-style: normal;
}


/* Geist Mono */
.gm-m {
    font-family: "GeistMono", sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
}

.gm-r {
    font-family: "GeistMono", sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
}

.gm-s {
    font-family: "GeistMono", sans-serif;
    text-transform: uppercase;
    font-size: 0.625rem;
    line-height: 1;
    font-weight: 400;
}

/* buttons */
.btn-primary {
    display: flex;
    width: fit-content;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: var(--border-radius);
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--black);
    font-family: "GeistMono", sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

/* hero */
.hero .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 160px 20px 40px 20px;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.00) 0%, #101010 95%);
    color: var(--white);
}

/* header */
header {
    padding: 20px 20px 40px 20px;
}

/* section */
.section-padding {
    padding: 60px var(--gap-4x);
}

.section-padding-x {
    padding: 0px var(--gap-4x);
}

/* hide/show */
.hidden-md {
    display: none;
}

.visible-md {
    display: flex;
}

/* swiper */
.custom-swiper .swiper-slide {
  width: max(300px, calc((100% - 60px) / 4));
}

/* footer */
footer {
    padding: 60px 20px 20px 20px;
    font-family: "GeistMono", sans-serif;
    text-transform: uppercase;
    font-size: 0.625rem;
    line-height: 1;
    font-weight: 400;
}

.fill-width-md {
    width: 100%;
}

/* future events */
.future-event-image, .past-event-image {
    width: 140px;
    height: 140px;
}

.chat-benefits {
    max-width: 100%;
}

}

/* Small screens */
@media screen and (max-width: 479px) {
/* flex */
.flex-col-sm {
    display: flex;
    flex-direction: column;
}

.flex-row-sm {
    display: flex;
    flex-direction: row;
}

/* grid */
.col-1-sm  { grid-column: span 1; }
.col-2-sm  { grid-column: span 2; }
.col-3-sm  { grid-column: span 3; }
.col-4-sm  { grid-column: span 4; }
.col-5-sm  { grid-column: span 5; }
.col-6-sm  { grid-column: span 6; }
.col-7-sm  { grid-column: span 7; }
.col-8-sm  { grid-column: span 8; }
.col-9-sm  { grid-column: span 9; }
.col-10-sm { grid-column: span 10; }
.col-11-sm { grid-column: span 11; }
.col-12-sm { grid-column: span 12; }

/* gap */
.gap-sm {
    gap: var(--gap); /* 5px */
}

.gap-2x-sm {
    gap: var(--gap-2x); /* 10px */
}

.gap-3x-sm {
    gap: var(--gap-3x); /* 15px */
}

.gap-4x-sm {
    gap: var(--gap-4x); /* 20px */
}

.gap-6x-sm {
    gap: var(--gap-6x); /* 30px */
}

.gap-8x-sm {
    gap: var(--gap-8x); /* 40px */
}

.gap-12x-sm {
    gap: var(--gap-12x); /* 60px */
}

/* hide/show */
.hidden-sm {
    display: none;
}

.visible-sm {
    display: flex;
}

/* hero */
.sb-display {
    color: var(--white);
    font-family: 'Geist', sans-serif;
    font-size: 3.25rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -6%;
}

.hero-image {
  display: block;
  width: 100vw;
  height: 100svh;
  object-fit: cover;
  object-position: 50% 70%;
}

/* future events */
.future-event-image, .past-event-image {
    width: 94px;
    height: 94px;
}

.future-events .sb-r, .past-events .sb-r {
    font-size: 1.25rem;
}

.future-events .gm-r, .past-events .gm-r {
    font-size: 0.8rem;
}

.future-events .g-r {
    font-size: 0.8rem;
}

.future-events .basic-link {
    text-decoration: none;
    font-size: 0.8rem;
}

.space-between-sm {
    justify-content: space-between;
}

.info-card-alt {
    text-align: left;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(244, 147, 42, 0.10);
    width: fit-content;
}

}

/* Tiny screens */
@media screen and (max-width: 390px) {}