:root {
	--ink: #292622;
	--muted: #6f716c;
	--line: #ddd8ce;
	--paper: #f7f6f1;
	--white: #ffffff;
	--mist: #e8eee8;
	--logo: #453f36;
	--clay: #9b6a55;
	--cream-white: #f8f5ee;
	--shadow: 0 24px 70px rgba(45, 42, 36, 0.13);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

#about,
#worship,
#stories,
#join,
#location {
	scroll-margin-top: 148px;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: "Noto Sans KR", system-ui, sans-serif;
	letter-spacing: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

.site-header {
	align-items: center;
	/* background: rgba(247, 246, 241, 0.95); */
	background: white;
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(221, 216, 206, 0.9);
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 132px;
	justify-content: center;
	left: 0;
	padding: 14px clamp(20px, 5vw, 72px) 12px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 20;
}

.brand img {
	display: block;
	height: 62px;
	max-width: min(420px, 76vw);
	object-fit: contain;
	object-position: center;
}

.site-nav {
	align-items: center;
	color: var(--logo);
	display: flex;
	gap: clamp(18px, 3vw, 44px);
	font-size: 15px;
	font-weight: 800;
	justify-content: center;
	width: 100%;
}

.site-nav a,
.nav-group > button,
.nav-group > a {
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	font: inherit;
	font-weight: inherit;
	padding: 0;
	position: relative;
}

.site-nav > a::after,
.nav-group > button::after,
.nav-group > a::after {
	background: var(--clay);
	bottom: -10px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
	width: 100%;
}

.site-nav > a:hover::after,
.nav-group:hover > button::after,
.nav-group:hover > a::after {
	transform: scaleX(1);
}

.nav-group {
	position: relative;
}

.nav-group::after {
	content: "";
	height: 18px;
	left: 0;
	position: absolute;
	right: 0;
	top: 100%;
}

.nav-dropdown {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 16px 48px rgba(80, 72, 61, 0.12);
	display: grid;
	gap: 4px;
	left: 50%;
	min-width: 168px;
	opacity: 0;
	padding: 12px;
	pointer-events: none;
	position: absolute;
	top: calc(100% + 8px);
	transform: translate(-50%, 8px);
	transition: opacity 160ms ease, transform 160ms ease;
	z-index: 30;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.nav-dropdown a {
	border-radius: 6px;
	color: var(--logo);
	display: block;
	font-size: 14px;
	padding: 10px 12px;
	position: relative;
	white-space: nowrap;
}

.nav-dropdown a::after {
	background: var(--clay);
	bottom: 5px;
	content: "";
	height: 2px;
	left: 12px;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
	width: calc(100% - 24px);
}

.nav-dropdown a:hover {
	color: var(--ink);
}

.nav-dropdown a:hover::after {
	transform: scaleX(1);
}

.nav-toggle {
	background: transparent;
	border: 0;
	display: none;
	height: 44px;
	padding: 10px;
	width: 44px;
}

.nav-toggle span {
	background: var(--ink);
	display: block;
	height: 2px;
	margin: 5px 0;
	width: 24px;
}

.hero {
	align-items: center;
	/* background: var(--paper); */
	background: white;
	display: grid;
	min-height: 0;
	padding: 154px clamp(4px, 1vw, 14px) 0;
	place-items: center;
}

.hero-arch {
	background-image: var(--hero-image);
	background-position: var(--hero-position, center);
	background-size: cover;
	border-radius: min(14vw, 150px) min(14vw, 150px) 8px 8px;
	box-shadow: var(--shadow);
	min-height: clamp(460px, 62vw, 680px);
	width: min(1480px, 100%);
}

.hero-copy {
	max-width: 760px;
}

.eyebrow {
	color: var(--clay);
	font-size: 13px;
	font-weight: 800;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
	color: var(--logo);
	font-size: clamp(46px, 6.1vw, 82px);
	line-height: 1.08;
	margin: 0;
}

.hero-copy p,
.section-heading > p,
.intro-content > p,
.page-hero p {
	color: var(--muted);
	font-size: clamp(17px, 1.8vw, 21px);
	line-height: 1.78;
	margin: 28px 0 0;
	max-width: 680px;
}

.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	font-size: 17px;
	font-weight: 800;
	justify-content: center;
	min-height: 58px;
	min-width: 148px;
	padding: 0 30px;
}

.button.primary {
	background: var(--logo);
	color: var(--white);
}

.button.secondary {
	background: var(--white);
	border-color: var(--line);
	color: var(--logo);
}

.button.ghost {
	background: rgba(255, 255, 255, 0.76);
	border-color: var(--line);
	color: var(--logo);
}

.hero-actions,
.section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.section-actions {
	justify-content: center;
}

.intro-section,
.worship-section,
.stories-section,
.join-section,
.location-section {
	padding: clamp(78px, 9vw, 126px) clamp(22px, 6vw, 86px);
}

.intro-section,
.stories-section {
	background: var(--white);
}

.section-heading h2 {
	color: var(--logo);
	font-size: clamp(34px, 4.5vw, 60px);
	line-height: 1.16;
	margin: 0;
}

.section-heading.compact {
	margin: 0 auto 46px;
	max-width: 760px;
	text-align: center;
}

.intro-section > .section-heading {
	margin: 0 auto 42px;
	max-width: 820px;
	text-align: center;
}

.section-heading.compact p:not(.eyebrow) {
	font-size: 18px;
	margin: 18px auto 0;
	max-width: 560px;
}

.intro-content {
	display: grid;
	gap: 6px;
	margin: 0 auto;
	max-width: 1060px;
}

.intro-content > p {
	color: var(--ink);
	font-size: clamp(20px, 2.2vw, 28px);
	margin: 0;
	max-width: none;
	text-align: center;
}

.vision-list,
.guide-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 auto;
	max-width: 1120px;
}

.vision-list article,
.guide-grid article,
.weekday-list article,
.sunday-list article,
.meeting-card,
.gallery-card,
.contact-list div,
.admin-list article {
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 16px 48px rgba(80, 72, 61, 0.08);
}

.vision-list article,
.guide-grid article {
	background: var(--white);
	padding: 30px;
	text-align: center;
}

.vision-list span,
.guide-grid span,
.weekday-list span,
.weekday-card span,
.sunday-list span,
.sunday-card span,
.gallery-card span,
.contact-list span,
.admin-list span {
	color: var(--clay);
	display: block;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 12px;
}

.vision-list strong,
.guide-grid strong,
.weekday-list strong,
.weekday-card strong,
.sunday-list strong,
.sunday-card strong,
.gallery-card strong {
	color: var(--logo);
	display: block;
	font-size: 26px;
	line-height: 1.34;
	margin-bottom: 12px;
}

.vision-list p,
.guide-grid p,
.weekday-list p,
.weekday-card p,
.sunday-list p,
.sunday-card p,
.contact-list strong,
.site-footer p,
.admin-list p {
	color: var(--muted);
	line-height: 1.72;
	margin: 0;
}

.worship-section {
	background: var(--cream-white);
}

.meeting-layout {
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	margin: 0 auto;
	max-width: 1120px;
}

.home-meeting-layout {
	align-items: start;
	column-gap: 28px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 980px;
}

.meeting-column {
	display: grid;
	gap: 16px;
}

.home-meeting-column {
	display: grid;
	gap: 16px;
	min-width: 0;
}

.weekday-list article,
.sunday-list article,
.meeting-card {
	background: var(--white);
	display: flex;
	flex-direction: column;
	height: 180px;
	justify-content: center;
	min-height: 0;
	padding: 28px;
	text-align: left;
}

.home-meeting-layout .meeting-card {
	height: 128px;
	padding: 20px 22px;
}

.weekday-card,
.weekday-label {
	grid-column: 1;
}

.sunday-card,
.sunday-label {
	grid-column: 2;
}

.meeting-empty {
	grid-column: 2;
}

.home-meeting-column > * {
	grid-column: auto;
}

.home-meeting-layout .meeting-label {
	font-size: 20px;
	margin-bottom: 2px;
}

.home-meeting-layout .meeting-card span {
	font-size: 12px;
	margin-bottom: 8px;
}

.home-meeting-layout .meeting-card strong {
	font-size: clamp(22px, 2vw, 28px);
	line-height: 1.2;
	margin-bottom: 8px;
	word-break: keep-all;
}

.home-meeting-layout .meeting-card p {
	font-size: 15px;
	line-height: 1.5;
}

.sunday-list article,
.sunday-card {
	background: var(--logo);
}

.sunday-list strong,
.sunday-list p,
.sunday-card strong,
.sunday-card p {
	color: var(--white);
}

.sunday-list span,
.sunday-card span {
	color: #FFFBCC;
}

.story-slider {
	margin: 0 auto;
	max-width: 1180px;
	position: relative;
}

.story-carousel {
	align-items: center;
	display: flex;
	gap: 22px;
	overflow-x: auto;
	padding: 18px max(52px, calc((100% - 720px) / 2)) 28px;
	scroll-behavior: smooth;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
}

.story-carousel::-webkit-scrollbar {
	display: none;
}

.story-photo-card {
	align-items: center;
	background: transparent;
	border: 0;
	box-shadow: none;
	display: flex;
	flex: 0 0 auto;
	justify-content: center;
	max-width: min(680px, 78vw);
	min-width: min(320px, 76vw);
	overflow: visible;
	padding: 0;
	scroll-snap-align: center;
	transition: transform 180ms ease;
}

.story-photo-card:hover {
	transform: translateY(-4px);
}

.story-image {
	display: block;
	height: clamp(260px, 34vw, 430px);
	max-width: min(620px, 72vw);
	object-fit: contain;
	width: auto;
}

.story-image-placeholder {
	height: clamp(260px, 34vw, 430px);
	width: min(620px, 72vw);
}

.story-nav {
	align-items: center;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--line);
	border-radius: 999px;
	box-shadow: 0 14px 40px rgba(80, 72, 61, 0.14);
	color: var(--logo);
	cursor: pointer;
	display: inline-flex;
	font-size: 38px;
	font-weight: 500;
	height: 54px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
	width: 54px;
	z-index: 2;
}

.story-nav:hover {
	background: var(--logo);
	color: var(--white);
	transform: translateY(-50%) scale(1.04);
}

.story-nav-prev {
	left: 6px;
}

.story-nav-next {
	right: 6px;
}

.gallery-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 auto;
	max-width: 1120px;
}

.gallery-card {
	background: var(--white);
	cursor: pointer;
	display: grid;
	overflow: hidden;
	padding: 0;
	text-align: center;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card:hover {
	box-shadow: 0 22px 54px rgba(80, 72, 61, 0.14);
	transform: translateY(-5px);
}

.image-placeholder {
	aspect-ratio: 4 / 3;
	background: #ebe8e1;
	background-position: center;
	background-size: cover;
	border: 0;
	position: relative;
}

.image-placeholder:not(.has-image)::before,
.image-placeholder:not(.has-image)::after {
	background: rgba(80, 72, 61, 0.28);
	content: "";
	height: 1px;
	left: -10%;
	position: absolute;
	top: 50%;
	width: 120%;
}

.image-placeholder:not(.has-image)::before {
	transform: rotate(35deg);
}

.image-placeholder:not(.has-image)::after {
	transform: rotate(-35deg);
}

.gallery-card div:last-child {
	padding: 30px 24px;
}

.gallery-card strong {
	font-size: clamp(30px, 3.4vw, 46px);
	margin: 0;
}

.gallery-card div:last-child span {
	margin: 14px 0 0;
}

.meeting-label {
	color: var(--logo);
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 6px;
	text-align: center;
}

.join-section .section-heading.compact p {
	font-size: 15px;
	margin-top: 10px;
}

.join-form {
	display: grid;
	gap: 16px;
	margin: 0 auto;
	max-width: 860px;
}

.join-form textarea {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--ink);
	font: inherit;
	min-height: 220px;
	padding: 24px;
	resize: vertical;
	width: 100%;
}

.join-form textarea::placeholder {
	color: rgba(111, 113, 108, 0.72);
}

.join-form button {
	justify-self: center;
}

.join-section {
	background: var(--cream-white);
}

.join-form-error {
	color: #9b442d;
	font-size: 14px;
	font-weight: 700;
	margin: 0;
}

.join-form-error[hidden] {
	display: none;
}

.join-form button:disabled {
	cursor: wait;
	opacity: 0.68;
}

.join-modal-backdrop {
	align-items: center;
	background: rgba(41, 38, 34, 0.48);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 22px;
	position: fixed;
	z-index: 1000;
}

.join-modal {
	align-items: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(41, 38, 34, 0.24);
	display: grid;
	gap: 12px;
	max-width: 520px;
	padding: clamp(30px, 5vw, 48px);
	text-align: center;
	width: 100%;
}

.join-modal > span {
	color: var(--clay);
	font-size: 13px;
	font-weight: 800;
}

.join-modal strong {
	color: var(--logo);
	font-size: clamp(24px, 3vw, 34px);
}

.join-modal p {
	color: var(--muted);
	line-height: 1.75;
	margin: 0 0 10px;
}

.join-modal .button {
	justify-self: center;
}

.location-section {
	background: var(--white);
}

.location-layout {
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
	margin: 0 auto;
	max-width: 1120px;
}

.map-placeholder {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(116, 133, 107, 0.82), rgba(80, 72, 61, 0.82)),
		url("https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1400&q=80");
	background-position: center;
	background-size: cover;
	border-radius: 8px;
	color: var(--white);
	display: grid;
	min-height: 390px;
	padding: 42px;
	text-align: center;
}

.map-placeholder strong {
	font-size: 36px;
}

.map-placeholder p {
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.7;
	margin: 12px 0 0;
}

.kakao-map {
	padding: 0;
}

.map-empty {
	padding: 42px;
}

.contact-list a {
	color: inherit;
}

.contact-list > div > a {
	display: inline-block;
	font-size: 14px;
	margin-top: 12px;
	text-decoration: underline;
}

.contact-list {
	display: grid;
	gap: 14px;
}

.contact-list div {
	background: var(--white);
	padding: 28px;
	text-align: center;
}

.contact-list strong {
	display: block;
	font-size: 18px;
}

.site-footer {
	background: white;
	border-top: 1px solid var(--line);
	padding: 38px clamp(22px, 6vw, 86px);
}

.site-footer img {
	display: block;
	height: 42px;
	max-width: min(300px, 70vw);
	object-fit: contain;
	object-position: left center;
	opacity: 0.92;
}

.site-footer p {
	margin-top: 14px;
}

.sub-page,
.admin-page {
	padding-top: 132px;
}

.page-hero {
	background: var(--paper);
	padding: clamp(86px, 10vw, 132px) clamp(22px, 6vw, 86px) clamp(58px, 7vw, 86px);
	text-align: center;
}

.page-hero p {
	margin-left: auto;
	margin-right: auto;
}

.page-stories {
	padding-top: 40px;
}

.about-vision-section,
.about-staff-section {
	padding: clamp(62px, 8vw, 100px) clamp(22px, 6vw, 86px);
}

.about-vision-section { background: var(--white); }
.about-staff-section { background: var(--cream-white); }

.about-page .section-heading > span {
	color: var(--clay);
	display: block;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 8px;
}

.about-vision-text {
	color: var(--ink);
	font-size: clamp(20px, 2.2vw, 28px);
	line-height: 1.85;
	margin: 34px auto 0;
	max-width: 920px;
	text-align: center;
	white-space: pre-wrap;
}

.about-staff-grid {
	display: grid;
	gap: 54px;
	grid-template-columns: 1fr;
	margin: 46px auto 0;
	max-width: 980px;
}

.about-staff-card {
	align-items: center;
	background: transparent;
	display: grid;
	gap: clamp(34px, 5vw, 64px);
	grid-template-columns: minmax(210px, 280px) minmax(280px, 1fr);
	justify-self: center;
	max-width: 840px;
	width: 100%;
}

.about-staff-photo {
	align-items: center;
	aspect-ratio: 4 / 5;
	background: #ebe8e1;
	background-position: center;
	background-size: cover;
	border-radius: 8px;
	color: var(--muted);
	display: flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	padding: 20px;
	text-align: center;
	width: 100%;
}

.about-staff-info {
	align-content: center;
	display: grid;
	justify-self: center;
	max-width: 360px;
	padding: 20px 0;
	text-align: left;
	width: 100%;
}

.about-staff-info > span {
	color: var(--clay);
	display: block;
	font-size: 13px;
	font-weight: 800;
	margin: 7px 0 0;
	order: 2;
}

.about-staff-info strong {
	color: var(--logo);
	display: block;
	font-size: clamp(30px, 4vw, 46px);
	order: 1;
}

.about-staff-info p {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.82;
	margin: 20px 0 0;
	order: 3;
	white-space: pre-wrap;
}

.first-visit-hero { padding-bottom: 52px; }
.first-visit-section { padding-top: 54px; }

.first-visit-steps article {
	align-content: center;
	min-height: 180px;
}

.first-visit-actions {
	justify-content: center;
	margin-top: 36px;
}

.story-detail-heading {
	padding-bottom: 44px;
}

.story-back-link {
	color: var(--clay);
	display: inline-block;
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 24px;
}

.story-detail-gallery {
	columns: 3 280px;
	column-gap: 18px;
	margin: 0 auto;
	max-width: 1180px;
	padding: 20px clamp(22px, 6vw, 86px) 100px;
}

.story-detail-photo {
	background: transparent;
	border: 0;
	break-inside: avoid;
	cursor: zoom-in;
	display: block;
	margin: 0 0 18px;
	padding: 0;
	width: 100%;
}

.story-detail-photo img {
	border-radius: 8px;
	display: block;
	height: auto;
	transition: transform 180ms ease, box-shadow 180ms ease;
	width: 100%;
}

.story-detail-photo:hover img {
	box-shadow: 0 18px 44px rgba(80, 72, 61, 0.16);
	transform: translateY(-3px);
}

.story-lightbox {
	align-items: center;
	background: rgba(24, 22, 20, 0.9);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 54px 24px 24px;
	position: fixed;
	z-index: 1200;
}

.story-lightbox[hidden] {
	display: none;
}

.story-lightbox img {
	max-height: calc(100vh - 80px);
	max-width: min(1180px, 94vw);
	object-fit: contain;
}

.story-lightbox-close {
	background: transparent;
	border: 0;
	color: var(--white);
	cursor: pointer;
	font-size: 42px;
	line-height: 1;
	position: absolute;
	right: 24px;
	top: 18px;
}

.admin-page {
	min-height: 100vh;
}

.admin-form,
.admin-list {
	display: grid;
	gap: 16px;
	margin: 0 auto;
	max-width: 900px;
	padding: 0 clamp(22px, 6vw, 86px) 86px;
}

.admin-form label {
	color: var(--logo);
	font-weight: 800;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
	background-color: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--logo);
	font: inherit;
	min-height: 56px;
	padding: 0 18px;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	width: 100%;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
	border-color: var(--clay);
	box-shadow: 0 0 0 4px rgba(158, 103, 82, 0.12);
	outline: 0;
}

.admin-form textarea {
	line-height: 1.7;
	min-height: 150px;
	padding: 16px 18px;
	resize: vertical;
}

.admin-form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--clay) 50%), linear-gradient(135deg, var(--clay) 50%, transparent 50%);
	background-position: calc(100% - 21px) 22px, calc(100% - 15px) 22px;
	background-repeat: no-repeat;
	background-size: 6px 6px, 6px 6px;
	cursor: pointer;
}

.admin-form button {
	justify-self: end;
}

.hero-upload-form {
	gap: 22px;
}

.hero-crop-editor {
	align-items: center;
	aspect-ratio: 16 / 9;
	background-color: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
	cursor: grab;
	display: flex;
	justify-content: center;
	min-height: 360px;
	overflow: hidden;
	position: relative;
	touch-action: none;
	user-select: none;
	width: 100%;
}

.hero-crop-image {
	display: block;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	pointer-events: none;
	width: auto;
}

.hero-crop-window {
	align-items: end;
	background: transparent;
	border: 3px solid var(--white);
	border-radius: 58px 58px 8px 8px;
	box-shadow:
		0 0 0 9999px rgba(41, 38, 34, 0.46),
		0 20px 60px rgba(41, 38, 34, 0.24);
	cursor: grab;
	display: flex;
	left: 50%;
	outline: 1px solid rgba(69, 63, 54, 0.32);
	padding: 18px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
}

.hero-crop-window span {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	color: var(--logo);
	font-size: 12px;
	font-weight: 800;
	padding: 8px 11px;
	pointer-events: none;
}

.hero-upload-controls {
	align-items: center;
	background: var(--cream-white);
	border: 1px dashed var(--line);
	border-radius: 8px;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	padding: 16px;
}

.hero-upload-controls input[type="file"] {
	display: none;
}

.hero-file-button {
	background: var(--logo);
	border-radius: 8px;
	color: var(--white);
	cursor: pointer;
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
}

.hero-upload-controls span {
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.admin-list article {
	background: var(--white);
	padding: 24px;
}

.prayer-request-content {
	overflow-wrap: anywhere;
	white-space: pre-wrap;
}

.prayer-admin-summary {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 22px;
	max-width: 980px;
}

.prayer-admin-summary div {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	display: grid;
	gap: 8px;
	padding: 20px 22px;
}

.prayer-admin-summary span {
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
}

.prayer-admin-summary strong {
	color: var(--logo);
	font-size: 28px;
}

.prayer-filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.prayer-filter-tabs button,
.prayer-filter-tabs a {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--muted);
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	padding: 10px 16px;
}

.prayer-filter-tabs button.is-active,
.prayer-filter-tabs a.is-active {
	background: var(--logo);
	border-color: var(--logo);
	color: var(--white);
}

.prayer-request-list {
	gap: 12px;
	max-width: 980px;
}

.prayer-request-list [hidden] {
	display: none !important;
}

.prayer-request-list article {
	border: 1px solid var(--line);
	border-radius: 8px;
	display: grid;
	gap: 16px;
}

.prayer-request-meta,
.prayer-request-actions {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.prayer-status {
	background: #f3e8df;
	border-radius: 999px;
	color: #9b442d;
	font-size: 12px;
	font-weight: 800;
	padding: 7px 10px;
}

.prayer-status.is-checked {
	background: var(--mist);
	color: #49614e;
}

.prayer-request-content {
	line-height: 1.75;
	margin: 0;
}

.prayer-request-details {
	border-top: 1px solid var(--line);
	padding-top: 14px;
}

.prayer-request-details summary {
	color: var(--clay);
	cursor: pointer;
	display: grid;
	gap: 12px;
	list-style: none;
}

.prayer-request-details summary::-webkit-details-marker {
	display: none;
}

.prayer-request-list .prayer-request-text {
	color: var(--clay);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.72;
	white-space: pre-wrap;
	word-break: break-word;
}

.prayer-request-preview {
	display: block;
	max-height: 5.25em;
	overflow: hidden;
}

.prayer-details-label {
	align-items: center;
	color: #87533d;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	gap: 6px;
	justify-self: start;
	padding-bottom: 3px;
	position: relative;
}

.prayer-details-label::before {
	content: "전체 내용 보기";
}

.prayer-details-label::after {
	content: "↓";
	font-size: 12px;
}

.prayer-details-label {
	background-image: linear-gradient(#b98770, #b98770);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 100% 1px;
	transition: color 160ms ease, background-size 160ms ease;
}

.prayer-request-details summary:hover .prayer-details-label {
	color: var(--logo);
	background-size: 55% 1px;
}

.prayer-request-details[open] .prayer-request-preview {
	display: none;
}

.prayer-request-details[open] .prayer-details-label::before {
	content: "접기";
}

.prayer-request-details[open] .prayer-details-label::after {
	content: "↑";
}

.prayer-request-details[open] summary {
	margin-bottom: 14px;
}

.prayer-request-details .prayer-request-content {
	display: block;
}

.prayer-status-note {
	max-width: 980px;
}

.prayer-request-content.is-collapsed {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	white-space: pre-wrap;
}

.prayer-request-actions {
	justify-content: flex-end;
}

.prayer-request-actions form {
	margin: 0;
}

.prayer-request-actions .button {
	font-size: 13px;
	min-height: 42px;
	min-width: 0;
	padding: 0 16px;
}

.prayer-load-more {
	justify-self: center;
	margin-top: 10px;
}

.empty-state {
	color: var(--muted);
	text-align: center;
}

.admin-auth-body {
	background: var(--cream-white);
}

.admin-login-page {
	align-items: center;
	display: grid;
	min-height: 100vh;
	padding: 32px;
}

.admin-login-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 20px 70px rgba(80, 72, 61, 0.12);
	display: grid;
	gap: 14px;
	margin: 0 auto;
	max-width: 420px;
	padding: 38px;
	width: 100%;
}

.admin-login-card img {
	display: block;
	height: 58px;
	margin: 0 auto 10px;
	object-fit: contain;
}

.admin-login-card h1 {
	color: var(--logo);
	font-size: 28px;
	margin: 0 0 8px;
	text-align: center;
}

.admin-login-card label {
	color: var(--logo);
	font-size: 14px;
	font-weight: 800;
}

.admin-login-card input {
	border: 1px solid var(--line);
	border-radius: 8px;
	font: inherit;
	min-height: 52px;
	padding: 0 14px;
}

.admin-login-card button {
	margin-top: 8px;
	width: 100%;
}

.admin-alert,
.admin-note {
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	margin: 0;
	padding: 12px 14px;
	text-align: center;
}

.admin-alert {
	background: #fff0ec;
	color: #9b442d;
}

.admin-note {
	background: #e6ded2;
	border: 1px solid #c9bbaa;
	color: var(--logo);
}

.admin-shell {
	background: var(--paper);
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	min-height: 100vh;
}

.admin-sidebar {
	background: var(--white);
	border-right: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 28px 22px;
	position: sticky;
	top: 0;
	height: 100vh;
}

.admin-brand img {
	display: block;
	height: 52px;
	object-fit: contain;
	object-position: left center;
	max-width: 100%;
}

.admin-sidebar nav {
	display: grid;
	gap: 8px;
}

.admin-sidebar nav a,
.admin-sidebar form button {
	border-radius: 8px;
	color: var(--logo);
	font-size: 17px;
	font-weight: 800;
	padding: 13px 14px;
	position: relative;
}

.admin-sidebar nav a::after {
	background: var(--clay);
	bottom: 6px;
	content: "";
	height: 2px;
	left: 14px;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
	width: calc(100% - 28px);
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.is-active {
	color: var(--ink);
}

.admin-sidebar nav a:hover::after,
.admin-sidebar nav a.is-active::after {
	transform: scaleX(1);
}

.admin-sidebar form {
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: flex-end;
	margin-top: auto;
	padding-top: 14px;
}

.admin-sidebar form button {
	align-items: center;
	background: var(--cream-white);
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--logo);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	justify-content: center;
	min-height: 40px;
	line-height: 1;
	padding: 0 16px;
	text-align: center;
	width: auto;
}

.admin-sidebar form button:hover {
	background: var(--white);
	color: var(--clay);
}

.admin-main {
	padding: 44px clamp(28px, 5vw, 70px) 80px;
}

.admin-main .admin-form,
.admin-main .admin-list {
	margin: 0;
	max-width: none;
	padding: 0;
}

.admin-heading {
	margin-bottom: 30px;
}

.admin-heading.with-action {
	align-items: end;
	display: flex;
	gap: 18px;
	justify-content: space-between;
}

.admin-heading p {
	color: var(--clay);
	font-size: 13px;
	font-weight: 800;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.admin-heading h1 {
	color: var(--logo);
	font-size: clamp(30px, 3.2vw, 44px);
	line-height: 1.1;
	margin: 0;
}

.admin-stat-grid,
.admin-action-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 24px;
}

.admin-stat-grid article,
.admin-action-grid a,
.admin-panel {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 16px 48px rgba(80, 72, 61, 0.08);
	padding: 26px;
}

.admin-stat-grid span,
.admin-action-grid span {
	color: var(--clay);
	display: block;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 10px;
}

.admin-stat-grid strong,
.admin-action-grid strong {
	color: var(--logo);
	display: block;
	font-size: 28px;
	line-height: 1.25;
}

.admin-action-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-guide-panel {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 26px;
}

.admin-guide-panel span {
	color: var(--clay);
	display: block;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.admin-guide-panel strong {
	color: var(--logo);
	display: block;
	font-size: 23px;
	margin-bottom: 10px;
}

.admin-guide-panel p {
	color: var(--muted);
	line-height: 1.7;
	margin: 0;
}

.admin-table-panel {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 16px 48px rgba(80, 72, 61, 0.08);
	overflow: hidden;
}

.admin-table-header,
.admin-table-row {
	align-items: center;
	display: grid;
	gap: 16px;
	grid-template-columns: 84px minmax(170px, 1.2fr) minmax(120px, 0.8fr) 92px 130px;
	padding: 16px 20px;
}

.meeting-table .admin-table-header,
.meeting-table .admin-table-row {
	grid-template-columns: 74px 86px minmax(150px, 1fr) minmax(180px, 1fr) 130px;
}

.staff-table .admin-table-header,
.staff-table .admin-table-row {
	grid-template-columns: minmax(110px, 0.8fr) minmax(110px, 0.7fr) minmax(220px, 1.5fr) 130px;
}

.story-table .admin-table-header,
.story-table .admin-table-row {
	grid-template-columns: 84px minmax(170px, 1.2fr) minmax(120px, 0.8fr) 130px;
}

.admin-table-header {
	background: var(--cream-white);
	color: var(--logo);
	font-size: 13px;
	font-weight: 800;
}

.admin-table-row {
	border-top: 1px solid var(--line);
	color: var(--muted);
	min-height: 74px;
}

.admin-table-row strong {
	color: var(--logo);
	font-size: 17px;
}

.admin-table-row img {
	aspect-ratio: 4 / 3;
	background: var(--paper);
	display: block;
	height: 54px;
	object-fit: cover;
	width: 72px;
}

.admin-status {
	background: var(--mist);
	border-radius: 999px;
	color: var(--logo);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	justify-content: center;
	padding: 7px 10px;
	white-space: nowrap;
}

.admin-row-actions {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}

.admin-row-actions form {
	margin: 0;
}

.admin-row-actions a,
.admin-row-actions button {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--logo);
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	padding: 8px 11px;
}

.admin-form-help {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
	margin: -4px 0 0;
}

.meeting-form {
	gap: 0;
	max-width: 820px;
	overflow: hidden;
	padding: 0;
}

.community-form {
	gap: 0;
	max-width: 980px;
	overflow: hidden;
	padding: 0;
}

.staff-editor-form {
	gap: 0;
	max-width: 880px;
	overflow: hidden;
	padding: 0;
}

.staff-image-preview {
	align-items: center;
	background: var(--cream-white);
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--muted);
	display: flex;
	height: 260px;
	justify-content: center;
	max-width: 220px;
	overflow: hidden;
	text-align: center;
}

.staff-image-preview img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.story-image-preview-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.story-date-type {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.story-date-type label {
	align-items: center;
	background: var(--cream-white);
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--logo);
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	gap: 8px;
	min-height: 46px;
	padding: 0 16px;
}

.story-date-type input {
	accent-color: var(--clay);
}

[data-event-end-field][hidden] {
	display: none;
}

[data-story-date-picker] {
	background: var(--white);
	cursor: pointer;
}

.flatpickr-calendar {
	border: 1px solid var(--line);
	box-shadow: 0 18px 48px rgba(80, 72, 61, 0.18);
	font-family: inherit;
	z-index: 1100;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
	background: var(--clay);
	border-color: var(--clay);
}

.flatpickr-day.inRange {
	background: #f3e8df;
	border-color: #f3e8df;
	box-shadow: -5px 0 0 #f3e8df, 5px 0 0 #f3e8df;
}

.story-image-preview {
	background: var(--cream-white);
	border: 2px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	display: grid;
	gap: 9px;
	overflow: hidden;
	padding: 8px;
	position: relative;
}

.story-image-preview:has(> .story-representative-radio:checked) {
	border-color: var(--clay);
	box-shadow: 0 0 0 3px rgba(155, 106, 85, 0.14);
}

.story-image-preview > .story-representative-radio {
	accent-color: var(--clay);
	height: 18px;
	margin: 0;
	min-height: 0;
	padding: 0;
	position: absolute;
	right: 14px;
	top: 14px;
	width: 18px;
	z-index: 1;
}

.story-image-preview.is-deleted {
	opacity: 0.48;
}

.story-image-preview.is-deleted img {
	filter: grayscale(1);
}

.story-image-delete {
	align-items: center;
	color: #9b442d;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 6px;
	justify-content: center;
}

.story-image-delete input {
	accent-color: #9b442d;
	height: 15px;
	margin: 0;
	min-height: 0;
	padding: 0;
	width: 15px;
}

.story-new-image-remove {
	background: transparent;
	border: 0;
	color: #9b442d;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	padding: 2px 0 4px;
	text-decoration: underline;
}

.story-editor-form [data-story-submit]:disabled {
	cursor: wait;
	opacity: 0.68;
}

.story-image-preview img {
	border-radius: 6px;
	display: block;
	height: 120px;
	object-fit: cover;
	width: 100%;
}

.story-image-preview span {
	color: var(--clay);
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.church-info-form {
	gap: 0;
	max-width: 880px;
	overflow: hidden;
	padding: 0;
}

.church-info-form-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.meeting-form-header {
	background: var(--cream-white);
	border-bottom: 1px solid var(--line);
	padding: 30px 32px 26px;
}

.meeting-form-header span {
	color: var(--clay);
	display: block;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.meeting-form-header strong {
	color: var(--logo);
	display: block;
	font-size: clamp(24px, 2.6vw, 34px);
	line-height: 1.2;
}

.meeting-form-header p {
	color: var(--muted);
	line-height: 1.7;
	margin: 12px 0 0;
}

.meeting-form-grid {
	display: grid;
	gap: 22px 18px;
	grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
	padding: 30px 32px 24px;
}

.story-form-grid {
	grid-template-columns: minmax(220px, 300px) minmax(320px, 1fr);
}

.story-date-help {
	grid-column: 1 / -1;
	margin-top: -12px;
}

.community-form-grid {
	display: grid;
	gap: 20px;
	padding: 30px 32px 24px;
}

.staff-form-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-field.wide {
	grid-column: 1 / -1;
}

.role-add-field {
	background: var(--cream-white);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 16px;
}

.role-add-controls {
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.role-add-controls .button {
	min-height: 56px;
}

.role-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.role-chip {
	align-items: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--ink);
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	gap: 6px;
	line-height: 1;
	min-height: 34px;
	padding: 0 8px 0 10px;
}

.role-chip > span {
	display: inline-flex;
	line-height: 1;
}

.role-chip button {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--clay);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 15px;
	font-weight: 800;
	height: 18px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: relative;
	top: -1px;
	width: 18px;
}

.role-chip button:hover {
	color: #9b442d;
}

.admin-toast {
	background: #e6ded2;
	border: 1px solid #c9bbaa;
	border-radius: 8px;
	box-shadow: 0 16px 48px rgba(80, 72, 61, 0.14);
	color: var(--logo);
	font-size: 14px;
	font-weight: 800;
	opacity: 0;
	padding: 13px 16px;
	position: fixed;
	left: 50%;
	top: 28px;
	transform: translate(-50%, -8px);
	transition: opacity 180ms ease, transform 180ms ease;
	z-index: 1000;
}

.admin-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.admin-field {
	display: grid;
	gap: 9px;
}

.admin-field.compact {
	grid-row: span 1;
}

.admin-field label {
	color: var(--clay);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
}

.admin-form-actions {
	border-top: 1px solid var(--line);
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	padding: 22px 32px 30px;
}

@media (max-width: 980px) {
	.admin-shell {
		grid-template-columns: 1fr;
	}

	.admin-sidebar {
		height: auto;
		position: static;
	}

	.admin-sidebar nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.admin-stat-grid,
	.admin-action-grid {
		grid-template-columns: 1fr;
	}

	.meeting-form-grid {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.story-form-grid {
		grid-template-columns: 1fr;
	}

	.story-date-help {
		grid-column: auto;
	}

	.church-info-form-grid {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.prayer-admin-summary {
		grid-template-columns: 1fr;
	}

	.prayer-request-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.prayer-request-actions .button,
	.prayer-request-actions form {
		width: 100%;
	}

	.meeting-form-header,
	.admin-form-actions {
		padding-left: 24px;
		padding-right: 24px;
	}

	.admin-heading.with-action {
		align-items: start;
		flex-direction: column;
	}

	.admin-table-panel {
		overflow-x: auto;
	}

	.admin-table-header,
	.admin-table-row {
		min-width: 760px;
	}

	.meeting-table .admin-table-header,
	.meeting-table .admin-table-row {
		min-width: 900px;
	}

	.hero-crop-editor {
		min-height: 240px;
	}

	.hero-crop-window {
		border-radius: 38px 38px 8px 8px;
	}

	.hero-upload-controls {
		align-items: stretch;
		flex-direction: column;
	}

	.meeting-layout,
	.location-layout {
		grid-template-columns: 1fr;
	}

	.home-meeting-layout > * {
		grid-column: auto;
	}

	.weekday-label {
		order: 1;
	}

	.weekday-card {
		order: 2;
	}

	.sunday-label {
		order: 3;
		margin-top: 18px;
	}

	.sunday-card {
		order: 4;
	}

	.meeting-empty {
		display: none;
	}

	.gallery-grid,
	.vision-list,
	.guide-grid,
	.about-staff-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.site-header {
		flex-direction: row;
		height: 68px;
		justify-content: space-between;
		padding-bottom: 0;
		padding-top: 0;
	}

	.brand img {
		height: 44px;
		max-width: min(270px, 66vw);
	}

	.nav-toggle {
		display: block;
	}

	.site-nav {
		background: var(--paper);
		border-bottom: 1px solid var(--line);
		display: none;
		left: 0;
		padding: 22px;
		position: absolute;
		right: 0;
		top: 68px;
		width: auto;
	}

	.site-nav.is-open {
		display: grid;
		gap: 18px;
	}

	.nav-group {
		display: grid;
		gap: 10px;
	}

	.nav-group > button,
	.nav-group > a {
		text-align: left;
	}

	.nav-dropdown {
		background: transparent;
		border: 0;
		box-shadow: none;
		display: grid;
		left: auto;
		min-width: 0;
		opacity: 1;
		padding: 0 0 0 14px;
		pointer-events: auto;
		position: static;
		transform: none;
	}

	.nav-group::after {
		display: none;
	}

	.nav-dropdown a {
		padding: 4px 0;
	}

	.hero {
		min-height: 0;
		padding: 82px 4px 0;
	}

	.sub-page,
	.admin-page {
		padding-top: 68px;
	}
}

@media (max-width: 640px) {
	.about-staff-card {
		grid-template-columns: 1fr;
	}

	.about-staff-photo {
		aspect-ratio: 4 / 3;
	}

	.about-staff-info {
		text-align: center;
	}

	.hero h1,
	.page-hero h1 {
		font-size: 39px;
	}

	.gallery-grid,
	.vision-list,
	.guide-grid,
	.about-staff-grid {
		grid-template-columns: 1fr;
	}

	.story-carousel {
		gap: 14px;
		padding: 14px 44px 22px;
	}

	.story-photo-card {
		min-width: min(260px, 76vw);
		padding: 8px;
	}

	.story-image,
	.story-image-placeholder {
		height: clamp(240px, 78vw, 360px);
		max-width: 72vw;
	}

	.story-nav {
		font-size: 31px;
		height: 44px;
		width: 44px;
	}

	.hero-arch {
		border-radius: 82px 82px 8px 8px;
		min-height: 460px;
	}

	.admin-form button {
		justify-self: stretch;
	}
}
