/* ============================================
   archive-100.css — 삼화 아카이브 100 페이지
   ============================================ */

/* ── Base ── */
.archive-100-page {
	overflow-x: hidden;
}

.archive-100-main {
	position: relative;
}

/* ============================================
   1. Section 01–02: Intro Hero (mask → fullbleed expand)
   ============================================ */

.ar-intro {
	background: #fff;
	z-index: 1;
	--ar-intro-title-color: #171B1E;
	--ar-intro-subtitle-color: #171B1E;
}

@media (min-width: 768px) and (max-width: 1023px) {
	.ar-intro__title {
		font-size: 48px;
	}

	.ar-intro__subtitle {
		font-size: 20px;
	}

	.ar-intro__content {
		top: calc(var(--header-h, 90px) + 10vh);
	}

	.ar-intro__scroll-cta {
		font-size: 16px;
	}
}

/* Centering handled by common-intro.css */

.ar-intro__bg-img {
	filter: saturate(0.3);
}

.ar-intro__bg-dimmed {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.1);
}

br.mo-only {
	display: none;
}

/* page-specific intro overrides (base styles in common-intro.css) */
.ar-intro__title {
	font-family: 'Pretendard', sans-serif;
	color: var(--ar-intro-title-color);
	letter-spacing: -2px;
}

.ar-intro__subtitle {
	font-family: 'Pretendard', sans-serif;
	letter-spacing: -0.48px;
	color: var(--ar-intro-subtitle-color);
}

.ar-intro__scroll-cta {
	letter-spacing: 0.5px;
	opacity: 0;
	z-index: 3;
	color: #A4A8AB;
}


/* ============================================
   2. Filter Section
   ============================================ */

.ar-filter {
	position: relative;
	padding: 80px 0 40px;
	background: #FFFFFF;
}

.ar-filter__container {
	max-width: 1624px;
	margin: 0 auto;
	padding: 0 80px;
	box-sizing: border-box;
}

.ar-filter__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #CCC;
	padding-bottom: 30px;
}

.ar-filter__title {
	font-family: 'Pretendard', sans-serif;
	font-weight: 600;
	font-size: 70px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #FF5722;
	margin: 0;
}

.ar-filter__buttons {
	display: flex;
	gap: 10px;
}

.ar-filter__btn {
	padding: 10px 24px;
	border-radius: 999px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.01em;
	background: transparent;
	color: #171B1E;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.25s cubic-bezier(0.42, 0, 0.58, 1), 
	            color 0.25s cubic-bezier(0.42, 0, 0.58, 1),
	            border-color 0.25s cubic-bezier(0.42, 0, 0.58, 1);
	white-space: nowrap;
}

@media (hover: hover) {
	.ar-filter__btn:hover {
		background: #F5F5F5;
	}
}

.ar-filter__btn:focus-visible {
	outline: 2px solid #FF5722;
	outline-offset: 3px;
}

.ar-filter__btn.active {
	background: #171B1E;
	color: #FFFFFF;
}


/* ============================================
   3. Archive Grid
   ============================================ */

.ar-grid {
	padding: 40px 0 120px;
	background: #FFFFFF;
}

.ar-grid__container {
	position: relative;
	max-width: 1624px;
	margin: 0 auto;
	padding: 0 80px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	justify-content: center;
	box-sizing: border-box;
}

.ar-grid__fade-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 358.5px;
	background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
	pointer-events: none;
	z-index: 5;
}

/* Grid Item */
.ar-grid__item {
	position: relative;
	width: 358.5px;
	height: 358.5px;
	aspect-ratio: 1/1;
	overflow: hidden;
	background: #F5F5F5;
	cursor: pointer;
	transition: transform 0.3s cubic-bezier(0.42, 0, 0.58, 1);
	padding: 59px;
}

.ar-grid__item:focus-visible {
	outline: 2px solid #FF5722;
	outline-offset: 3px;
}

@media (hover: hover) {
	.ar-grid__item:hover::after {
		opacity: 1;
	}

	.ar-grid__item:hover .ar-grid__hover-icon {
		opacity: 1;
	}

	.ar-grid__item--add:hover {
		transform: none;
	}

	.ar-grid__add-btn:hover {
		color: #171B1E;
	}
}

.ar-grid__hover-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid #F6F6EE;
	background-color: transparent;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 10;
	pointer-events: none;
}

.ar-grid__hover-icon svg {
	width: 24px;
	height: 24px;
	fill: #F6F6EE;
}

.ar-grid__item-inner {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ar-grid__item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(74, 74, 74, 0.56);
	backdrop-filter: blur(30px);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
	pointer-events: none;
}

.ar-grid__item-inner::after {
	display: none;
}

.ar-grid__item-image-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ar-grid__item-image {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: center;
	transition: filter 0.3s ease;
	display: block;
}

/* Add New Item Card */
.ar-grid__item--add {
	background: #FFFFFF;
	border: 2px solid #E6E8EA;
	cursor: default;
}

.ar-grid__add-btn {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	cursor: pointer;
	color: #A4A8AB;
	transition: color 0.25s ease;
}

.ar-grid__add-icon {
	width: 60px;
	height: 60px;
}

/* Load More Button */
.ar-grid__load-more-wrap {
	max-width: 1464px;
	margin: 60px auto 0;
	padding: 0 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.ar-grid__load-more-btn {
	width: 160px;
	height: 57px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 24px;
	background: transparent;
	border: 1.5px solid #DDDDDD;
	border-radius: 999px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -0.36px;
	color: #171B1E;
	cursor: pointer;
	transition: border-color 0.3s ease, 
	            color 0.3s ease;
	box-sizing: border-box;
}

.ar-grid__load-more-btn svg {
	flex-shrink: 0;
	transition: color 0.3s ease;
}

.ar-grid__load-more-btn:focus-visible {
	outline: 2px solid #FF5722;
	outline-offset: 3px;
}

.ar-grid__load-more-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}

@media (hover: hover) {
	.ar-grid__load-more-btn:hover {
		border-color: #FF4E1C;
		color: #FF4E1C;
	}
}


/* ============================================
   4. Detail Modal (Figma: node-id=2816-22674)
   ============================================ */

.ar-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	visibility: hidden;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ar-modal[aria-hidden="false"] {
	display: block;
	visibility: visible;
	pointer-events: auto;
	opacity: 1;
}

.ar-modal__overlay {
	position: absolute;
	inset: 0;
	background: #171B1E;
	opacity: 1;
}

.ar-modal__panel {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100vw;
	height: 100vh;
	transform: translate(-50%, -50%);
	background: #FFFFFF;
	overflow-y: auto;
	overflow-x: hidden;
}

/* Back Button */
.ar-modal__back {
	position: absolute;
	right: 80px;
	top: calc(80 / 1024 * 100vh);
	width: 74px;
	height: 74px;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 10;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.25s ease;
}

@media (hover: hover) {
	.ar-modal__back:hover {
		opacity: 0.7;
	}
}

/* Navigation Buttons */
.ar-modal__nav {
	position: absolute;
	bottom: calc(60 / 1080 * 100vh);
	left: 50%;
	width: 56px;
	height: 56px;
	background: transparent;
	border: 1px solid #CCCCCC;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: opacity 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) {
	.ar-modal__nav:hover {
		opacity: 0.7;
		border-color: #999999;
	}
}

.ar-modal__nav svg {
	width: 20px;
	height: 20px;
}

.ar-modal__nav svg path {
	stroke: #CCCCCC;
}

.ar-modal__nav--prev {
	transform: translateX(calc(-100% - 6px));
}

@media (hover: hover) {
	.ar-modal__nav--prev:hover {
		transform: translateX(calc(-100% - 6px));
	}
}

.ar-modal__nav--next {
	transform: translateX(6px);
}

@media (hover: hover) {
	.ar-modal__nav--next:hover {
		transform: translateX(6px);
	}
}

.ar-modal__nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}

.ar-modal__content {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: calc(100% - 120px);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
	padding-top: calc(200 / 1080 * 100vh);
}

.ar-modal__carousel {
	position: relative;
	width: 100%;
	flex: 0 0 auto;
	height: calc(480 / 1080 * 100vh);
	overflow: visible;
	cursor: grab;
	-webkit-user-select: none;
	user-select: none;
}

.ar-modal__carousel:active {
	cursor: grabbing;
}

/* Custom drag cursor (PC only) */
.ar-modal__cursor {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 100px;
	pointer-events: none;
	z-index: 20;
	opacity: 0;
	will-change: transform, opacity;
	transition: opacity 0.2s ease;
}

.ar-modal__cursor.is-visible {
	opacity: 1;
}

.ar-modal__carousel.is-custom-cursor {
	cursor: none;
}

.ar-modal__carousel.is-custom-cursor:active {
	cursor: none;
}

.ar-modal__carousel-track {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: min(480px, 50vh);
	transform: translateY(-50%);
}

.ar-modal__carousel-item {
	position: absolute;
	left: 0;
	top: 50%;
	will-change: transform;
	transform-origin: center center;
	filter: drop-shadow(14px 14px 30px rgba(0, 0, 0, 0.25));
}

.ar-modal__carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	pointer-events: none;
}

.ar-modal__text {
	position: relative;
	width: min(511px, 26.6vw);
	height: calc(166 / 1080 * 100vh);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	flex-shrink: 0;
	padding-top: 0;
	margin-top: calc(60 / 1080 * 100vh);
}

.ar-modal__tag {
	display: inline-block;
	font-family: "Google Sans Flex", system-ui, sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	color: #FF3100;
	margin-bottom: 12px;
}

.ar-modal__tag:empty {
	display: none;
}

.ar-modal__title {
	font-family: "Pretendard", system-ui, sans-serif;
	font-weight: 600;
	font-size: 48px;
	letter-spacing: -0.96px;
	line-height: 62px;
	margin: 0 0 8px 0;
	color: #171B1E;
}

.ar-modal__title:empty {
	display: none;
}

.ar-modal__description {
	font-family: "Pretendard", system-ui, sans-serif;
	font-weight: 400;
	font-size: 20px;
	letter-spacing: -0.4px;
	line-height: 30px;
	color: #4A4D50;
	margin: 0;
}

.ar-modal__description:empty {
	display: none;
}

.ar-modal__tag:not(:empty) + .ar-modal__title:not(:empty) {
	margin-top: 0;
}

.ar-modal__title:not(:empty) + .ar-modal__description:not(:empty) {
	margin-top: 8px;
}

.ar-modal__tag:not(:empty) + .ar-modal__description:not(:empty) {
	margin-top: 12px;
}

.ar-modal__tag:empty + .ar-modal__title:empty + .ar-modal__description:not(:empty) {
	margin-top: 0;
}

/* ============================================
   6. Sub Banner (푸터 직전)
   ============================================ */

.anniversary-sub-banner {
	position: relative;
	background: #171B1E;
}

.anniversary-sub-banner__inner {
	display: flex;
	align-items: stretch;
}

.anniversary-sub-banner__item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 90px 0 70px;
	text-decoration: none;
	color: #fff;
}

.anniversary-sub-banner__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 22px;
}

.anniversary-sub-banner__text {
	font-family: 'Pretendard', sans-serif;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: -0.64px;
	color: #fff;
	margin: 0;
	text-align: center;
}

.anniversary-sub-banner__text span {
	display: block;
}

.anniversary-sub-banner__text strong {
	font-weight: 600;
}

.anniversary-sub-banner__go-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	color: #fff;
}

.anniversary-sub-banner__go-btn-circle {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid #fff;
	transition: background 400ms cubic-bezier(0.42, 0, 0.34, 0.99),
				border-color 400ms cubic-bezier(0.42, 0, 0.34, 0.99);
}

.anniversary-sub-banner__go-btn-arrows {
	position: relative;
	z-index: 1;
	width: 24px;
	height: 24px;
	overflow: hidden;
}

.anniversary-sub-banner__go-btn-arrow {
	position: absolute;
	top: 0;
	left: 0;
}

.anniversary-sub-banner__go-btn-arrow--default {
	transform: translateX(0);
	transition: transform 200ms cubic-bezier(0.42, 0, 0.34, 0.99);
}

.anniversary-sub-banner__go-btn-arrow--hover {
	transform: translateX(-100%);
	transition: transform 200ms cubic-bezier(0.42, 0, 0.34, 0.99);
}

@media (hover: hover) and (min-width: 1024px) {
	.anniversary-sub-banner__item:hover .anniversary-sub-banner__go-btn-arrow--default {
		transform: translateX(100%);
		transition: transform 200ms cubic-bezier(0.42, 0, 0.34, 0.99);
	}

	.anniversary-sub-banner__item:hover .anniversary-sub-banner__go-btn-arrow--hover {
		transform: translateX(0);
		transition: transform 200ms cubic-bezier(0.42, 0, 0.34, 0.99) 40ms;
	}

	.anniversary-sub-banner__item:hover .anniversary-sub-banner__go-btn-circle {
		background: #FF4E1C;
		border-color: #FF4E1C;
	}

	.anniversary-sub-banner__item:hover .anniversary-sub-banner__go-btn--left {
		transform: rotate(180deg);
	}
}

.anniversary-sub-banner__go-btn--left {
	transform: rotate(180deg);
}

.anniversary-sub-banner__divider {
	flex-shrink: 0;
	width: 1px;
	align-self: stretch;
	background: #666A6D;
}

.anniversary-sub-banner__line {
	width: 100%;
	height: 1px;
	background: #666A6D;
}

/* ============================================
   8. Utility Classes
   ============================================ */

/* Hide item by filter */
.ar-grid__item[data-category].hidden {
	display: none;
}

/* Body lock when modal open */
body.modal-open {
	overflow: hidden;
}


/* ============================================
   Large Desktop + short viewport: 1280px ~ 1535px (e.g. LG Gram)
   ============================================ */

@media (min-width: 1280px) and (max-width: 1535px) {
}


/* ============================================
   Small PC: 1024px ~ 1279px
   ============================================ */

@media (min-width: 1024px) and (max-width: 1279px) {
	.ar-intro__title {
		font-size: 48px;
	}

	.ar-intro__subtitle {
		font-size: 20px;
	}

	.ar-intro__content {
		top: calc(var(--header-h, 90px) + 10vh);
	}

	.ar-intro__scroll-cta {
		font-size: 16px;
	}
}


/* ============================================
   Small PC + short viewport (e.g. 1024×768 landscape tablet)
   ============================================ */

@media (min-width: 1024px) and (max-width: 1279px) and (max-height: 800px) {
}


/* ============================================
   RESPONSIVE: PC Fluid Grid (1200px ~ 1919px)
   ============================================ */

@media (min-width: 1200px) and (max-width: 1919px) {
	.ar-grid__container {
		grid-template-columns: repeat(4, 1fr);
	}

	.ar-grid__item {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
		padding: clamp(40px, 4vw, 59px);
	}
}


/* ============================================
   RESPONSIVE: Tablet (768px ~ 1199px)
   ============================================ */

@media (min-width: 768px) and (max-width: 1199px) {
	
	.ar-filter {
		padding: 80px 0 20px;
	}

	.ar-filter__container {
		max-width: none;
		padding: 0 40px;
	}

	.ar-filter__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.ar-filter__title {
		color: var(--Primitive-Red-Scale-500, #FF3100);
		font-family: var(--Family-Google-Sans-Flex, "Google Sans Flex");
		font-size: var(--Size-D3, 44px);
		font-style: normal;
		font-weight: 500;
		line-height: 100%;
	}

	.ar-filter__buttons {
		width: 100%;
		flex-wrap: wrap;
		gap: 12px;
	}

	.ar-filter__btn {
		padding: 8px 12px;
		font-family: var(--Family-Google-Sans-Flex, "Google Sans Flex");
		font-size: var(--Size-P2, 16px);
		font-style: normal;
		font-weight: 500;
		line-height: 140%;
		color: var(--Text-Secondary, #4A4D50);
		text-align: center;
	}

	.ar-grid {
		padding: 30px 0 120px;
	}

	.ar-grid__container {
		max-width: none;
		padding: 0 40px;
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}

	.ar-grid__item {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
		padding: clamp(32px, 5vw, 48px);
	}

	.ar-grid__hover-icon {
		width: 70px;
		height: 70px;
		border-width: 1.5px;
	}

	.ar-grid__hover-icon svg {
		width: 22px;
		height: 22px;
	}

	.ar-grid__load-more-wrap {
		max-width: none;
		padding: 0 40px;
		margin: 30px auto 0;
	}

	.ar-grid__load-more-btn {
		width: 140px;
		height: 54px;
		font-size: 16px;
		padding: 14px 20px;
	}

	.ar-modal__back {
		right: 40px;
		width: 64px;
		height: 64px;
	}

	.ar-modal__carousel {
		height: calc(320 / 1024 * 100vh);
		max-height: 400px;
	}

	.ar-modal__carousel-track {
		height: min(400px, 31.25vh);
	}

	.ar-modal__text {
		width: min(511px, 80vw);
		height: calc(137 / 1024 * 100vh);
		padding-top: 0;
		margin-top: calc(40 / 1024 * 100vh);
		gap: 0;
	}

	.ar-modal__tag {
		font-size: 18px;
		line-height: 140%;
		margin-bottom: 8px;
	}

	.ar-modal__title {
		font-size: 32px;
		letter-spacing: -0.64px;
		line-height: 130%;
		margin-bottom: 0;
	}

	.ar-modal__description {
		font-size: 18px;
		letter-spacing: -0.36px;
		line-height: 150%;
	}

	.ar-modal__nav {
		width: 46px;
		height: 46px;
		bottom: calc(80 / 1024 * 100vh);
	}

	.ar-modal__nav svg {
		width: 18px;
		height: 18px;
	}

	.ar-modal__nav--prev {
		transform: translateX(calc(-100% - 6px));
	}

	.ar-modal__nav--next {
		transform: translateX(6px);
	}

	.anniversary-sub-banner__item {
		padding: 50px 0 40px;
	}

	.anniversary-sub-banner__text {
		font-size: 20px;
		line-height: 150%;
		letter-spacing: -0.4px;
	}

	.anniversary-sub-banner__go-btn {
		width: 40px;
		height: 40px;
	}

	.anniversary-sub-banner__go-btn-circle {
		width: 40px;
		height: 40px;
	}

	.anniversary-sub-banner__go-btn-arrows {
		width: 16px;
		height: 16px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.anniversary-sub-banner__go-btn-arrow svg {
		width: 16px;
		height: 16px;
	}

	.anniversary-sub-banner__go-btn-arrow {
		position: relative;
	}

	.anniversary-sub-banner__go-btn-arrow--hover {
		display: none;
	}

	.anniversary-sub-banner__go-btn-arrow--default {
		transform: none;
	}

	
}


/* ============================================
   RESPONSIVE: Mobile (~ 767px)
   ============================================ */

@media (max-width: 767px) {
	
	br.mo-only {
		display: inline;
	}

	.ar-intro__scroll-cta {
		font-size: 14px;
		bottom: 24px;
	}

	.ar-filter {
		padding: 80px 0 26px;
	}

	.ar-filter__container {
		padding: 0 20px;
	}

	.ar-filter__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.ar-filter__title {
		font-size: clamp(32px, 8vw, 48px);
	}

	.ar-filter__buttons {
		width: 100%;
		flex-wrap: nowrap;
		gap: 8px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: none;
		scrollbar-width: none;
		padding-bottom: 4px;
	}

	.ar-filter__buttons::-webkit-scrollbar {
		display: none;
	}

	.ar-filter__btn {
		padding: 8px 12px;
		flex-shrink: 0;
		color: var(--Text-Secondary, #4A4D50);
		text-align: center;
		font-family: var(--Family-Google-Sans-Flex, "Google Sans Flex");
		font-size: var(--Size-P2, 16px);
		font-style: normal;
		font-weight: 500;
		line-height: 140%;
		min-height: auto;
	}

	.ar-grid {
		padding: 24px 0 80px;
	}

	.ar-grid__container {
		max-width: none;
		padding: 0 20px;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.ar-grid__item {
		width: 335px;
		height: 335px;
		aspect-ratio: auto;
		padding: clamp(24px, 6vw, 40px);
		margin: 0 auto;
	}

	.ar-grid__hover-icon {
		width: 64px;
		height: 64px;
		border-width: 1.5px;
	}

	.ar-grid__hover-icon svg {
		width: 20px;
		height: 20px;
	}

	.ar-grid__load-more-wrap {
		max-width: none;
		padding: 0 20px;
		margin: 40px auto 0;
	}

	.ar-grid__load-more-btn {
		width: 130px;
		height: 48px;
		font-size: 15px;
		padding: 12px 18px;
		gap: 8px;
	}

	.ar-grid__load-more-btn svg {
		width: 14px;
		height: 14px;
	}

	.ar-modal__back {
		right: 20px;
		top: calc(20 / 667 * 100vh);
		width: 64px;
		height: 64px;
	}

	.ar-modal__content {
		padding: 0;
		padding-top: calc(143 / 667 * 100vh);
	}

	.ar-modal__carousel {
		height: calc(185 / 667 * 100vh);
		max-height: 280px;
	}

	.ar-modal__carousel-track {
		height: min(280px, 27.7vh);
	}

	.ar-modal__text {
		width: min(295px, calc(100vw - 40px));
		height: calc(156 / 667 * 100vh);
		padding-top: 0;
		margin-top: calc(40 / 667 * 100vh);
		gap: 0;
	}

	.ar-modal__tag {
		font-size: 18px;
		line-height: 140%;
		margin-bottom: 4px;
	}

	.ar-modal__title {
		font-size: 32px;
		letter-spacing: -0.64px;
		line-height: 130%;
		margin-bottom: 0;
	}

	.ar-modal__description {
		font-size: 18px;
		letter-spacing: -0.36px;
		line-height: 150%;
		margin-top: 4px;
	}

	.ar-modal__nav {
		width: 46px;
		height: 46px;
		bottom: calc(40 / 667 * 100vh);
	}

	.ar-modal__nav svg {
		width: 18px;
		height: 18px;
	}

	.ar-modal__nav--prev {
		transform: translateX(calc(-100% - 6px));
	}

	.ar-modal__nav--next {
		transform: translateX(6px);
	}

	.anniversary-sub-banner__item {
		padding: 50px 0 40px;
	}

	.anniversary-sub-banner__text {
		font-size: 20px;
		line-height: 150%;
		letter-spacing: -0.4px;
	}

	.anniversary-sub-banner__go-btn {
		width: 40px;
		height: 40px;
	}

	.anniversary-sub-banner__go-btn-circle {
		width: 40px;
		height: 40px;
	}

	.anniversary-sub-banner__go-btn-arrows {
		width: 16px;
		height: 16px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.anniversary-sub-banner__go-btn-arrow svg {
		width: 16px;
		height: 16px;
	}

	.anniversary-sub-banner__go-btn-arrow {
		position: relative;
	}

	.anniversary-sub-banner__go-btn-arrow--default,
	.anniversary-sub-banner__go-btn-arrow--hover {
		transition: none;
	}

	.anniversary-sub-banner__go-btn-arrow--hover {
		display: none;
	}

	.anniversary-sub-banner__go-btn-arrow--default {
		transform: none;
	}

	.anniversary-sub-banner__go-btn-circle {
		transition: none;
	}

	.anniversary-sub-banner__inner {
		flex-direction: column;
	}

	.anniversary-sub-banner__item {
		border-bottom: 1px solid #666A6D;
	}

	.anniversary-sub-banner__divider {
		display: none;
	}
}


/* ============================================
   ACCESSIBILITY: Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
	.ar-grid__item,
	.ar-grid__item::after,
	.ar-grid__hover-icon svg,
	.ar-modal,
	.ar-modal__nav-btn,
	.ar-filter__btn,
	.ar-grid__load-more-btn {
		transition: none !important;
	}
	
	.ar-grid__item:hover {
		transform: none;
	}
	
	.ar-grid__load-more-btn:hover svg {
		transform: none;
	}
}
