/*
 * Babamba — レイアウト・TOP スタイル
 */

:root {
	--babamba-black: #000000;
	--babamba-white: #ffffff;
	--babamba-muted: #9a9a9a;
	--babamba-card: #2a2a2a;
	--babamba-orange: #e85d2b;
	--babamba-blue: #4a6fff;
	--babamba-font-body: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--babamba-font-script: "Great Vibes", cursive;
	--babamba-header-h: 84px;
	--babamba-sticky-h: 56px;
	--babamba-max: 720px;
	--babamba-max-lg: 960px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--babamba-font-body);
	font-size: 15px;
	line-height: 1.75;
	color: var(--babamba-white);
	background: var(--babamba-black);
	-webkit-font-smoothing: antialiased;
}

body.babamba-front {
	padding-bottom: calc(var(--babamba-sticky-h) + env(safe-area-inset-bottom, 0px));
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100001;
	padding: 12px 16px;
	background: var(--babamba-white);
	color: var(--babamba-black);
	clip: auto;
	width: auto;
	height: auto;
}

/* ----- Header ----- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--babamba-max-lg);
	margin: 0 auto;
	padding: 12px 18px;
	min-height: var(--babamba-header-h);
}

.site-logo {
	text-decoration: none;
	color: var(--babamba-black);
}

.site-logo--image {
	color: inherit;
	line-height: 0;
}

.site-logo__img {
	display: block;
	height: 60px;
	width: auto;
	max-width: min(240px, 50vw);
	object-fit: contain;
}

.site-logo__mark {
	display: inline-block;
	padding: 8px 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
	background: var(--babamba-white);
	border-radius: 2px;
	text-transform: none;
}

.nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	padding: 0;
	margin: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	color: var(--babamba-white);
}

.nav-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	border-radius: 1px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle__bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

body.nav-open .nav-toggle__bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ----- Drawer ----- */

.site-drawer {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.65);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-drawer.is-open {
	opacity: 1;
	visibility: visible;
}

.site-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(86vw, 320px);
	height: 100%;
	background: #0a0a0a;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	padding: calc(var(--babamba-header-h) + 24px) 24px 32px;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

.site-drawer.is-open .site-drawer__panel {
	transform: translateX(0);
}

.site-drawer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-drawer__list li + li {
	margin-top: 20px;
}

.site-drawer__list a {
	font-size: 1.05rem;
	text-decoration: none;
	color: var(--babamba-white);
	opacity: 0.92;
}

.site-drawer__list a:hover,
.site-drawer__list a:focus-visible {
	opacity: 1;
	text-decoration: underline;
}

.site-drawer__close {
	margin-top: 32px;
	padding: 10px 16px;
	font-size: 0.9rem;
	color: var(--babamba-black);
	background: var(--babamba-white);
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

body.nav-open {
	overflow: hidden;
}

/* ----- Hero ----- */

.hero {
	position: relative;
	min-height: 58vh;
	display: flex;
	align-items: flex-end;
	background-color: var(--babamba-black);
	background-image:
		linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.55) 100%),
		radial-gradient(ellipse 110% 70% at 50% 100%, rgba(160, 28, 38, 0.5) 0%, transparent 55%),
		linear-gradient(165deg, #0a0203 0%, #120606 40%, #000 100%);
	background-size: cover;
	background-position: center;
}

.hero__overlay {
	width: 100%;
	padding: 28px 20px 36px;
}

.hero__title {
	margin: 0;
	font-family: var(--babamba-font-body);
	font-size: clamp(0.85rem, 3.2vw, 1rem);
	font-weight: 500;
	line-height: 1.65;
	letter-spacing: 0.02em;
	color: var(--babamba-white);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
}

/* ヒーロー：初回のふわっと表示 */
.hero--entrance .hero__overlay {
	animation: babamba-hero-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes babamba-hero-in {
	from {
		opacity: 0;
		transform: translate3d(0, 22px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/* スクロールでふわっと（TOP の各セクション） */
.babamba-reveal {
	opacity: 0;
	transform: translate3d(0, 32px, 0);
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.babamba-reveal.is-inview {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
	.hero--entrance .hero__overlay {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.babamba-reveal {
		opacity: 1;
		transform: none;
		transition: none;
		will-change: auto;
	}
}

/* ----- Events carousel ----- */

.section-events {
	padding: 20px 0 8px;
}

.events-carousel {
	max-width: var(--babamba-max-lg);
	margin: 0 auto;
	padding: 0 16px;
}

.events-carousel__viewport {
	overflow: hidden;
	border-radius: 4px;
}

.events-carousel__track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.events-carousel__track::-webkit-scrollbar {
	display: none;
}

.events-carousel__slide {
	flex: 0 0 78%;
	max-width: 320px;
	scroll-snap-align: start;
	min-height: auto;
	padding: 0;
	background: transparent;
	border: none;
	display: block;
}

.events-carousel__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 260px;
	text-decoration: none;
	color: inherit;
	background: var(--babamba-card);
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.events-carousel__card:hover,
a.events-carousel__card:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
	outline: none;
}

.events-carousel__card--static {
	cursor: default;
	pointer-events: none;
}

.events-carousel__thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: #1a1a1a;
	overflow: hidden;
}

.events-carousel__thumb--empty {
	background: linear-gradient(155deg, #2c2c2c 0%, #121212 100%);
	min-height: 140px;
}

.events-carousel__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.events-carousel__body {
	padding: 14px 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.events-carousel__label {
	font-family: var(--babamba-font-body);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--babamba-white);
}

.events-carousel__sub {
	font-size: 0.8rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.55);
}

.events-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
}

.events-carousel__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.events-carousel__dot[aria-selected="true"] {
	background: var(--babamba-white);
	transform: scale(1.15);
}

/* ----- Section common ----- */

.section-inner {
	max-width: var(--babamba-max);
	margin: 0 auto;
	padding: 0 20px 48px;
}

.section-heading {
	text-align: center;
	margin: 0 0 28px;
}

.section-heading__en {
	display: block;
	font-family: var(--babamba-font-script);
	font-size: clamp(2.25rem, 8vw, 3rem);
	font-weight: 400;
	line-height: 1.1;
	color: var(--babamba-white);
	letter-spacing: 0.02em;
}

.section-heading__ja {
	margin: 6px 0 0;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.65);
	text-transform: none;
}

.section-heading--spaced {
	margin-top: 48px;
}

/* ----- About ----- */

.section-about {
	padding-top: 8px;
}

.section-about__text p {
	margin: 0 0 28px;
	font-size: 0.95rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.88);
}

.about-photo {
	margin: 0 0 16px;
	border: none;
	border-radius: 2px;
	overflow: hidden;
	min-height: 200px;
	background-size: cover;
	background-position: center;
}

.about-photo img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 200px;
	object-fit: cover;
}

.about-photo--bar {
	min-height: 220px;
}

.about-photo--bar img {
	min-height: 220px;
}

.about-photo--placeholder.about-photo--whiskey {
	background-image:
		linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%),
		radial-gradient(circle at 50% 60%, rgba(80, 40, 20, 0.6) 0%, #0a0604 70%);
}

.about-photo--placeholder.about-photo--bar {
	background-image:
		linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 100%),
		radial-gradient(ellipse 80% 60% at 50% 100%, rgba(180, 30, 40, 0.55) 0%, #050202 55%);
}

/* ----- Menu ----- */

.section-menu {
	padding-top: 16px;
}

.menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-list li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.95rem;
}

.menu-list--simple li {
	border-bottom: none;
	padding: 6px 0;
}

.menu-list__price {
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
	color: rgba(255, 255, 255, 0.9);
}

.menu-drink-and-bottle {
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-width: 100%;
}

.menu-bottle__title {
	margin: 0 0 12px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.95);
}

.menu-list--compact li {
	padding: 8px 0;
	font-size: 0.9rem;
}

.menu-note {
	margin: 28px 0 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
	text-align: center;
}

.menu-note--footer {
	text-align: right;
	color: rgba(255, 255, 255, 0.75);
}

/* ----- FAQ ----- */

.section-faq {
	padding-top: 8px;
}

.faq-list {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 4px 18px 0;
	cursor: pointer;
	font-size: 0.95rem;
	font-weight: 500;
	list-style: none;
	color: rgba(255, 255, 255, 0.92);
}

.faq-item__q::-webkit-details-marker {
	display: none;
}

.faq-item__q::after {
	content: "";
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-right: 2px solid rgba(255, 255, 255, 0.5);
	border-bottom: 2px solid rgba(255, 255, 255, 0.5);
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

.faq-item[open] .faq-item__q::after {
	transform: rotate(225deg);
}

.faq-item__a {
	padding: 0 0 18px;
	font-size: 0.9rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.72);
}

.faq-item__a p {
	margin: 0;
}

/* ----- Access ----- */

.section-access {
	padding-top: 8px;
	padding-bottom: 24px;
}

.access-block {
	text-align: center;
	margin-bottom: 24px;
	font-size: 0.92rem;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.88);
}

.access-block__name {
	margin: 0 0 12px;
	font-weight: 700;
	letter-spacing: 0.15em;
	font-size: 0.95rem;
}

.access-block__address,
.access-block__tel,
.access-block__hours {
	margin: 0 0 8px;
}

.access-block__tel a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.access-map__embed {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 2px;
	background: #111;
}

.access-map__embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.access-map__placeholder {
	min-height: 200px;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.82rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.04);
	border: 1px dashed rgba(255, 255, 255, 0.15);
	border-radius: 2px;
}

.access-exterior {
	margin: 20px 0 0;
	border-radius: 2px;
	overflow: hidden;
}

.access-exterior--placeholder {
	min-height: 200px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.4) 45%, #0a0a0a 100%),
		#1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.access-exterior--photo img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 200px;
	object-fit: cover;
}

/* ----- Sticky CTA ----- */

.sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: flex;
	height: var(--babamba-sticky-h);
	padding-bottom: env(safe-area-inset-bottom, 0px);
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.45);
}

.sticky-cta__btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--babamba-white);
	transition: filter 0.2s ease;
}

.sticky-cta__btn:hover,
.sticky-cta__btn:focus-visible {
	filter: brightness(1.08);
}

.sticky-cta__btn--phone {
	background: var(--babamba-orange);
}

.sticky-cta__btn--instagram {
	background: linear-gradient(135deg, #5b6cff 0%, #4a4fd9 100%);
}

.sticky-cta__icon svg {
	display: block;
}

/* ----- 固定ページ本文（TOP に追加したブロック） ----- */

.section-page-content {
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-page-content__inner {
	max-width: var(--babamba-max);
	margin: 0 auto;
	padding: 32px 20px 48px;
	font-size: 0.95rem;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.88);
}

.section-page-content .alignwide,
.section-page-content .alignfull {
	margin-left: calc(50% - 50vw + 20px);
	margin-right: calc(50% - 50vw + 20px);
	max-width: none;
	width: auto;
}

.section-page-content a {
	color: rgba(255, 200, 160, 0.95);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.section-page-content img {
	border-radius: 2px;
}

/* ----- Site footer (copyright) ----- */

.site-footer {
	padding: 24px 20px 32px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__copy {
	margin: 0;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.4);
}

/* ----- イベント詳細 ----- */

.site-main--single-event {
	max-width: none;
	padding: 0;
	margin: 0;
}

.single-event__hero {
	width: 100%;
	max-height: min(70vh, 560px);
	overflow: hidden;
	background: #111;
}

.single-event__img {
	width: 100%;
	height: auto;
	max-height: min(70vh, 560px);
	object-fit: cover;
	display: block;
}

.single-event__inner {
	padding-top: 28px;
	padding-bottom: 48px;
}

.single-event__title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.35rem, 4vw, 1.65rem);
	font-weight: 700;
	line-height: 1.35;
}

.single-event__content {
	font-size: 0.95rem;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.88);
}

.single-event__content > *:first-child {
	margin-top: 0;
}

.single-event__back {
	margin: 2rem 0 0;
	font-size: 0.9rem;
}

.single-event__back a {
	color: rgba(255, 200, 160, 0.95);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ----- イベント一覧 ----- */

.site-main--archive-event {
	max-width: none;
	padding: 0;
	margin: 0;
}

.archive-event__intro {
	padding-top: 28px;
	padding-bottom: 8px;
}

.archive-event__title {
	margin: 0;
	font-size: clamp(1.75rem, 5vw, 2.25rem);
	font-family: var(--babamba-font-script);
	font-weight: 400;
	text-align: center;
}

.archive-event__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	padding-bottom: 32px;
}

.archive-event-card {
	margin: 0;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: var(--babamba-card);
}

.archive-event-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
	padding: 0 0 16px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.archive-event-card__link:hover,
.archive-event-card__link:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	outline: none;
}

.archive-event-card__thumb {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #1a1a1a;
}

.archive-event-card__thumb--placeholder {
	background: linear-gradient(155deg, #2c2c2c 0%, #121212 100%);
	min-height: 180px;
}

.archive-event-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.archive-event-card__title {
	margin: 16px 16px 8px;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.35;
}

.archive-event-card__excerpt {
	margin: 0 16px;
	font-size: 0.85rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.6);
}

.archive-event__pagination {
	padding-bottom: 48px;
}

.archive-event__pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.archive-event__pagination a,
.archive-event__pagination span {
	display: inline-block;
	padding: 8px 14px;
	font-size: 0.88rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.85);
}

.archive-event__pagination span.current {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.35);
}

.archive-event__empty {
	padding-bottom: 48px;
	text-align: center;
	color: rgba(255, 255, 255, 0.55);
}

/* ----- Inner pages (index etc.) ----- */

.site-main:not(.site-main--front):not(.site-main--single-event):not(.site-main--archive-event) {
	max-width: var(--babamba-max);
	margin: 0 auto;
	padding: 32px 20px 64px;
}

/* ----- Desktop / tablet ----- */

/* ----- 下層固定ページ ----- */

.page-article {
	max-width: var(--babamba-max-lg);
	margin: 0 auto;
	padding: 32px 20px 64px;
}

.page-article__title {
	margin: 0 0 1rem;
	font-size: 1.5rem;
	font-weight: 700;
}

.page-article__content {
	font-size: 0.95rem;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 768px) {
	:root {
		--babamba-header-h: 96px;
	}

	.hero {
		min-height: min(72vh, 640px);
	}

	.hero__overlay {
		max-width: var(--babamba-max-lg);
		margin: 0 auto;
		padding: 40px 24px 48px;
	}

	.hero__title {
		font-size: 1.05rem;
		max-width: 42em;
	}

	.events-carousel__slide {
		flex: 0 0 42%;
		max-width: 380px;
	}

	.section-inner {
		max-width: var(--babamba-max-lg);
		padding-left: 32px;
		padding-right: 32px;
	}

	.faq-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0 32px;
		border-top: none;
	}

	.faq-item {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.about-photo {
		min-height: 280px;
	}

	.about-photo img {
		min-height: 280px;
	}

	.access-exterior--placeholder {
		min-height: 280px;
		max-width: 640px;
		margin-left: auto;
		margin-right: auto;
	}

	.access-exterior--photo {
		max-width: 640px;
		margin-left: auto;
		margin-right: auto;
	}

	.access-exterior--photo img {
		min-height: 280px;
	}

	.archive-event__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
	}
}

@media (min-width: 1024px) {
	.events-carousel__slide {
		flex: 0 0 32%;
		max-width: 360px;
	}

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