@charset "utf-8";

/* ==================================================
	공통 틀 CSS
================================================== */
.mcontents {
	position: relative;
	max-width: 100%;
	overflow-x: hidden;
}

/* ==================================================
	공통 사항
================================================== */
/* 타이틀 */
.main-text {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--rem-20);
}

.main-text h2 {
	font-size: 6rem;
	font-weight: var(--font-bd);
	line-height: 1.1;
	letter-spacing: -0.02em;
	word-break: keep-all;
}

.main-text .highlight {
	color: var(--brand-color-main);
}

.main-text p {
	font-size: var(--rem-20);
	color: var(--color-gray1);
}

/* Overlay */
.main_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 80%);*/
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 45%);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1600px) {
	.main-text h2 {
		font-size: 5.2rem;
	}
}

@media screen and (max-width: 1024px) {
	.main-text h2 {
		font-size: 4.6rem;
	}

	/* [추가 2026-04-02 공통 사항 반응형] 768px(1.6rem) 전 단계 — 제목·본문 비율 급변 완화 */
	.main-text p,
	.main-text .sec-desc {
		font-size: var(--rem-18);
	}
}

@media screen and (max-width: 768px) {
	.main-text h2 {
		font-size: 3.6rem;
	}

	.main-text .sec-desc,
	.main-text p {
		font-size: 1.6rem;
	}
}

@media screen and (max-width: 640px) {
	.main-text h2 {
		font-size: 3rem;
	}
}

/* ==================================================
	메인 공통 컴포넌트 — main-label / main-cta
	(main.html 여러 section 공통)
================================================== */
/* ----- 공통: main-label ----- */
.main-label {
	position: relative;
	height: 4rem;
}

.main-label__bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 3rem;
	height: 100%;
	border-radius: 25px 0 0 25px;
	background: linear-gradient(90deg, #2180ff 0%, rgba(33, 128, 255, 0) 100%);
}

.main-label__txt {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	height: 100%;
	padding-left: 1.6rem;
	font-family: var(--font-Paperlogy);
	font-size: 1.4rem;
	font-weight: var(--font-md);
	color: var(--brand-color-dmain);
	line-height: 1.1;
	letter-spacing: 0.02em;
}

/* ----- 공통: main-cta ----- */
.main-cta {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 1.5rem 3.6rem;
	border-radius: 3rem;
	text-decoration: none;
	color: var(--color-white);
	background:
		linear-gradient(270deg, rgb(33, 128, 255) 0%, rgba(33, 128, 255, 0) 20%),
		linear-gradient(90deg, rgba(2, 16, 43, 0.8) 0%, rgba(2, 16, 43, 0.8) 100%);
	transition: transform 0.35s ease;
}

.main-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: 0;
	pointer-events: none;
	opacity: 0;
	background: linear-gradient(105deg,
			rgba(33, 129, 255, 0) 0%,
			rgba(33, 128, 255, 0.5) 50%,
			rgb(33, 128, 255) 100%);
	background-size: 220% 100%;
	background-position: 0% 50%;
	transition: opacity 0.3s ease, background-position 0.75s cubic-bezier(0.45, 0, 0.2, 1);
}

.main-cta:hover::before {
	opacity: 1;
	background-position: 100% 50%;
}

.main-cta:hover {
	transform: translateY(-1px);
}

.main-cta__txt,
.main-cta__icon {
	position: relative;
	z-index: 1;
}

.main-cta__txt {
	font-size: 2rem;
	font-weight: var(--font-rg);
	line-height: 1;
	white-space: nowrap;
}

.main-cta__txt strong {
	font-weight: var(--font-bd);
}

.main-cta__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* ----- 공통: main-label / main-cta 반응형 ----- */
@media screen and (max-width: 1400px) {
	.main-cta__txt {
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 800px) {
	.main-cta {
		padding: 1.2rem 2.4rem;
	}

	.main-cta__txt {
		font-size: 1.6rem;
		white-space: normal;
	}
}

@media screen and (max-width: 600px) {
	.main-label {
		width: 12rem;
		height: 3.6rem;
	}

	.main-label__txt {
		font-size: 1.2rem;
		padding-left: 1.2rem;
	}
}

@media (prefers-reduced-motion: reduce) {

	.main-cta,
	.main-cta::before {
		transition: none;
	}

	.main-cta:hover {
		transform: none;
	}

	.main-cta:hover::before {
		opacity: 0;
		background-position: 0% 50%;
	}
}

/* ==================================================
	메인비주얼
================================================== */
.hero-section {
	position: relative;
}

.hero-banner {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 78rem;
	overflow: hidden;
	margin: 0 auto;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s ease-in-out, visibility 1s;
	z-index: 1;
}

.hero-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* 첫 로드: 깜빡임 없이 첫 슬라이드만 바로 노출(scale 1.05, 글씨 숨김) → 다음 프레임에 active로 애니 재생 */
.hero-slide.hero-initial {
	opacity: 1;
	visibility: visible;
	z-index: 2;
	transition: none;
}

.hero-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.05);
	transition: transform 6s ease-out;
}

.hero-slide.active .hero-bg-img {
	transform: scale(1);
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.hero-text {
	position: relative;
	z-index: 3;
	width: var(--px-base);
	text-align: left;
	color: var(--color-white);
}

.hero-text.ag_right {
	text-align: right;
}

.hero-text .hero-text-line {
	display: block;
	opacity: 0;
	transform: translateY(2.4rem);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active .hero-text .hero-text-line:nth-of-type(1) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.hero-slide.active .hero-text .hero-text-line:nth-of-type(2) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.55s;
}

.hero-text h2 {
	font-family: var(--font-Paperlogy);
	font-size: 6rem;
	font-weight: var(--font-bd);
	line-height: 1.3;
	text-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}

.hero-text p {
	margin-top: 2rem;
	font-family: var(--font-Paperlogy);
	font-size: 2rem;
	font-weight: var(--font-md);
	line-height: 1.3;
	text-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}

/* scroll down */
.hero-scroll {
	position: absolute;
	right: calc(var(--header-inner-padding) - 1rem);
	bottom: 0;
	/* transform: translateY(-50%); */
	z-index: 10;
	width: 2rem;
	height: 34%;
	display: flex;
	flex-direction: column;
	align-items: center;
	pointer-events: none;
}

.hero-scroll .txt {
	margin-top: 4.4rem;
	font-size: var(--rem-16);
	font-weight: var(--font-md);
	color: var(--color-white);
	letter-spacing: 0;
	white-space: nowrap;
	line-height: 1;
	transform: rotate(90deg);
	transform-origin: center;
}

.hero-scroll::before,
.hero-scroll::after {
	content: "";
	position: absolute;
	display: block;
	width: 0.2rem;
	height: calc(100% - 10rem);
	top: 10.5rem;
	left: 50%;
	margin-top: 0;
}

.hero-scroll::before {
	transform: translateX(-50%);
	/* background: linear-gradient(180deg, #868e96 0%, #ffffff 100%); */
}

.hero-scroll::after {
	transform: translateX(-50%);
	background: linear-gradient(180deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0) 30%,
			rgba(255, 255, 255, 0.95) 50%,
			rgba(255, 255, 255, 0) 70%,
			rgba(255, 255, 255, 0) 100%);
	background-size: 100% 300%;
	background-position: 0 0%;
	animation: heroScrollFlow 1.8s linear infinite;
	opacity: 1;
}

@keyframes heroScrollFlow {
	0% {
		transform: translateX(-50%);
		background-position: 0 100%;
	}

	100% {
		transform: translateX(-50%);
		background-position: 0 0%;
	}
}

/* Hero Controls */
.hero-slider-controls {
	position: absolute;
	bottom: 5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 2rem;
	z-index: 10;
	background: rgba(0, 0, 0, 0.5);
	padding: 1rem 2.5rem;
	border-radius: 3rem;
}

.page-current,
.page-total {
	color: var(--color-white);
	font-size: 1.6rem;
	font-weight: var(--font-sb);
}

.progress-bar {
	width: 10rem;
	height: 0.2rem;
	background: rgba(255, 255, 255, 0.2);
	position: relative;
}

.progress-inner {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0%;
	background: var(--color-white);
}

.arrow {
	cursor: pointer;
	display: flex;
	align-items: center;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1600px) {
	.hero-banner {
		height: 68rem;
	}

	.hero-text h2 {
		font-size: 5.6rem;
	}

	.hero-slider-controls {
		bottom: 4rem;
		padding: 0.9rem 2.2rem;
		gap: 1.8rem;
	}
}

@media screen and (max-width: 1024px) {
	.hero-banner {
		height: 50rem;
	}

	.hero-text h2 {
		font-size: 5rem;
	}

	.hero-slider-controls {
		bottom: 3rem;
		padding: 0.8rem 2rem;
		gap: 1.5rem;
		border-radius: 2.5rem;
	}

	.progress-bar {
		width: 8rem;
	}
}

@media screen and (max-width: 768px) {
	.hero-banner {
		height: 42rem;
	}

	.hero-text h2 {
		font-size: 3.6rem;
		line-height: 1.35;
	}

	.hero-slider-controls {
		bottom: 2rem;
		padding: 0.6rem 1.5rem;
		gap: 1.2rem;
		border-radius: 2rem;
	}

	.page-current,
	.page-total {
		font-size: 1.4rem;
	}

	.progress-bar {
		width: 6rem;
	}
}

@media screen and (max-width: 640px) {
	.hero-banner {
		height: 36rem;
	}

	.hero-text h2 {
		font-size: 2.8rem;
	}

	.hero-slider-controls {
		bottom: 1.5rem;
		padding: 0.5rem 1.2rem;
		gap: 1rem;
	}
}

/* ==================================================
	사업영역
================================================== */
.business-section {
	position: relative;
	height: 58rem;
	background: url('../../lib/images/main/business.jpg') no-repeat center center / cover;
	color: var(--color-white);
	overflow: hidden;
}

.business-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(2, 16, 43, 0.6);
	pointer-events: none;
	z-index: 0;
}

/* ----- section 전용: business-section ----- */
.business-section .main-label__txt {
	color: var(--color-white);
}

.business-container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--px-base);
	height: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	align-items: stretch;
	gap: 9rem;
}

.business-intro {
	width: 32rem;
	max-width: 100%;
	justify-content: center;
	align-items: flex-start;
}

.business-heading {
	margin: 0;
	font-size: 6rem;
	font-weight: var(--font-bd);
	line-height: 1.1;
	letter-spacing: -0.02em;
	word-break: keep-all;
}

.business-heading span {
	display: block;
}

.business-grid {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: stretch;
}

.business-item {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 1.2rem;
	padding: 0 5rem;
	border-left: 1px solid rgba(2, 16, 43, 0.25);
	box-sizing: border-box;
}

.business-item:hover {
	background: rgba(2, 16, 43, 0.35);
}

.business-item__num {
	font-family: var(--font-Paperlogy);
	font-size: 1.6rem;
	font-weight: var(--font-bd);
	color: #00b0f0;
	line-height: normal;
}

.business-item__line {
	display: block;
	width: 2.5rem;
	height: 2px;
	background: #00b0f0;
}

.business-item__title {
	margin: 0;
	font-size: 3.2rem;
	font-weight: var(--font-bd);
	color: var(--color-white);
	line-height: normal;
	word-break: keep-all;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1600px) {

	.business-section {
		height: 54rem;
	}

	.business-container {
		padding-left: var(--spacing);
		gap: 8rem;
	}

	.business-intro {
		width: 26rem;
	}

	.business-heading {
		font-size: 5.2rem;
	}

	.business-item {
		padding: 0 3.2rem;
	}

	.business-item__title {
		font-size: 2.8rem;
	}
}

@media screen and (max-width: 1400px) {
	.business-container {
		gap: 4rem;
	}

	.business-intro {
		width: 24rem;
	}

	.business-heading {
		font-size: 4.6rem;
	}

	.business-item {
		padding: 0 2.4rem;
	}

	.business-item__title {
		font-size: 2.4rem;
	}
}

@media screen and (max-width: 1024px) {
	.business-section {
		height: unset;
		padding: 8rem 0 6rem;
	}

	.business-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 5rem;
	}

	.business-intro {
		width: 100%;
	}

	.business-heading span {
		display: inline-block;
	}

	.business-grid {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.business-item {
		flex: none;
		min-height: 14rem;
		padding: 2.4rem 2rem;
		border-left: 1px solid rgba(2, 16, 43, 0.3);
		border-top: 0;
	}

	.business-item:nth-child(3n + 1) {
		border-left: 0;
	}

	.business-item:nth-child(n + 4) {
		border-top: 1px solid rgba(2, 16, 43, 0.3);
	}
}

@media screen and (max-width: 800px) {
	.business-section {
		padding: 6rem 0;
	}

	.business-heading {
		font-size: var(--rem-40);
	}

	.business-grid {
		flex-direction: column;
	}

	.business-item__title {
		font-size: 2.2rem;
	}
}

@media screen and (max-width: 600px) {
	.business-section {
		padding: 5rem 0;
	}

	.business-heading {
		font-size: 2.8rem;
	}

	.business-item__num {
		font-size: 1.4rem;
	}

	.business-item__title {
		font-size: var(--rem-18);
	}
}

/* ==================================================
	연구개발
================================================== */
.about-section {
	position: relative;
	padding: 12rem 0;
	background: url('../../lib/images/main/company_bg.jpg') no-repeat center center;
	background-size: cover;
	color: var(--color-white);
	overflow: hidden;
}

.about-section::after {
	content: '';
	position: absolute;
	top: var(--rem-30);
	left: var(--rem-30);
	right: var(--rem-30);
	height: calc(100% - 6rem);
	border-radius: var(--rem-50);
	opacity: 0.9;
	background: linear-gradient(180deg, rgba(186, 206, 235, 0.35) 0%, rgba(2, 16, 43, 0.00) 100%);
}

.about-container {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	max-width: var(--px-base);
	padding: 0 var(--header-inner-padding);
}

.about-section .main-text {
	align-items: center;
}

.about-section .main-text .main-label__txt {
	color: var(--color-white);
}

.about-section .main-text p {
	color: var(--color-white);
}

.about-carousel-wrapper {
	margin-top: 7rem;
}

.about-carousel {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
	gap: var(--rem-20);
}

/* Slick 적용 시 레이아웃 */
.about-carousel.slick-initialized {
	display: block;
}

.about-carousel,
.about-carousel .slick-list {
	overflow: visible;
}

.about-carousel .slick-track {
	display: flex;
	align-items: stretch;
}

.about-card {
	position: relative;
	display: block;
	border-radius: 3rem;
	overflow: hidden;
	flex-shrink: 0;
	box-sizing: border-box;
	border-radius: var(--rem-20);
	background: rgba(0, 0, 0, 0.30);
	backdrop-filter: blur(6px);
	padding: 3rem 3rem 5rem;
	/* box-shadow: 0 0 20px rgba(0, 176, 240, 0.80); */
}

/* 모바일/터치에서 a:focus(border-radius: 5px)로 라운드가 바뀌는 현상 방지 */
.about-card:focus,
.about-card:focus-visible,
.about-card:active {
	outline: none;
}

.about-card-img-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: inherit;
	z-index: 0;
}

.about-img {
	object-fit: cover;
	transition: 0.6s;
}

.about-card:hover .about-img {
	transform: scale(1.05);
}

.about-text-layer {
	z-index: 5;
	opacity: 0.8;
	transform: translateY(1.4rem);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-carousel .about-card:hover .about-text-layer {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

.about-text-layer h3 {
	font-size: var(--rem-24);
	margin-bottom: 1rem;
}

.about-text-layer p {
	font-size: var(--rem-16);
	overflow-wrap: break-word;
	word-break: keep-all;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1660px) {
	.about-section {
		padding: 8rem 0;
	}

	.about-section::after {
		top: var(--rem-30);
		left: calc(var(--header-inner-padding)/2);
		right: calc(var(--header-inner-padding)/2);
	}

	.about-carousel-wrapper {
		margin-top: 6rem;
		overflow: hidden;
	}

	.about-text-layer {
		bottom: 4rem;
		left: 5rem;
		right: 5rem;
	}
}

@media screen and (max-width: 1024px) {
	.about-section {
		padding: 8rem 0;
	}

	.about-tabs {
		margin-top: 4rem;
		gap: 1.2rem;
	}

	.about-carousel-wrapper {
		margin-top: 5rem;
	}

	.about-carousel {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
	}

	.about-text-layer {
		bottom: 3rem;
		left: 4rem;
		right: 4rem;
	}

	.about-img {
		width: 8rem;
	}
}

@media screen and (max-width: 800px) {
	.about-section {
		padding: 6rem 0;
	}

	.about-carousel-wrapper {
		margin-top: 3rem;
	}

	.about-text-layer {
		bottom: 2rem;
		left: 2.5rem;
		right: 2.5rem;
	}

}

@media screen and (max-width: 600px) {
	.about-section {
		padding: 5rem 0;
	}

	.about-text-layer {
		bottom: 1.8rem;
		left: 2rem;
		right: 2rem;
	}

	.about-img {
		width: 6rem;
	}

	.about-text-layer h3 {
		font-size: 2rem;
	}

	.about-text-layer p {
		font-size: 1.3rem;
	}
}

/* ==================================================
	About US
================================================== */
.pr-section {
	padding: 14rem 0 12rem;
	background: url('../../lib/images/main/pr_bg.jpg') no-repeat right center #e2e6e8;
	background-size: cover;
}

.pr-container {
	display: flex;
	align-items: stretch;
	gap: 12rem;
	max-width: var(--px-base);
	margin: 0 auto;
	padding: 0 var(--header-inner-padding);
}


.contact-area {
	flex: 0.9;
	display: flex;
}

.pr-hero-card {
	display: block;
	position: relative;
	border-radius: var(--rem-20);
	overflow: hidden;
	min-height: 6rem;
	flex: 1;
	width: 100%;
	text-decoration: none;
}

/* 모바일/터치에서 a:focus(border-radius: 5px)로 라운드가 바뀌는 현상 방지 */
.pr-hero-card:focus,
.pr-hero-card:focus-visible,
.pr-hero-card:active {
	border-radius: 3rem;
	outline: none;
}

.pr-hero-card-img-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: inherit;
	z-index: 0;
}

.pr-hero-card .main_overlay {
	transition: background 0.4s ease;
}

.pr-hero-card:hover .pr-img {
	transform: scale(1.05);
}

.pr-hero-card:hover .main_overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
	/*background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 70%);*/
}

.pr-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.pr-hero-card h3 {
	position: absolute;
	top: 50%;
	width: 100%;
	color: var(--color-white);
	font-size: 2.6rem;
	text-align: center;
	z-index: 5;
	transition: transform 0.3s ease;
	transform: translateY(-30%);
}

.pr-hero-card h3>img {
	height: 5rem;
	display: block;
	margin: 0 auto 1rem;
}

.pr-hero-card:hover h3 {
	transform: translateY(-20%);
}

.notice-area {
	flex: 1.1;
	display: flex;
	flex-direction: column;
}

.notice-area .main-text {
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: calc(100% - 23rem - 2rem) 21rem;
}

.notice-area .main-text .main-label {
	grid-column-start: 1;
	grid-column-end: 3;
}

.notice-area .main-text .main-cta {
	color: var(--brand-color-dmain);
	background: linear-gradient(270deg, rgb(33, 128, 255) 0%, rgb(220, 227, 240) 20%), linear-gradient(90deg, rgba(220, 227, 240, 0.8) 0%, rgba(220, 227, 240, 0.8) 100%);
}

.notice-area .main-text .main-cta:hover {
	color: var(--color-white);
}

.notice-grid {
	display: grid;
	margin: 4rem 0 0;
}

.notice-grid-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 2rem 0;
	border-bottom: 1px solid #DEE2E6;
}


.notice-grid-item .notice-grid-item-t {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex-basis: calc(100% - 8rem);
	width: calc(100% - 8rem);
}

.notice-grid-item__tit {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: var(--rem-20);
	font-weight: var(--font-md);
	color: var(--brand-color-dmain);
}

.notice-grid-item__txt {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	max-height: 30px;
	line-height: 1.8;
	height: auto;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	font-size: var(--rem-14);
	font-weight: var(--font-md);
	color: rgba(0, 0, 0, 0.4);
}

.notice-grid-item .item-label {
	display: grid;
	justify-items: center;
	gap: 1rem;
	width: 7rem;
	flex-basis: 7rem;
}

.notice-grid-item .item-label .notice-grid-item__icon {
	width: var(--rem-20);
	height: var(--rem-20);
	object-fit: contain;
}

.notice-grid-item .item-label span {
	font-size: var(--rem-14);
	font-weight: var(--font-md);
	color: rgba(0, 0, 0, 0.4);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1400px) {

	.pr-section {
		padding: 10rem 0 8rem;
	}

	.pr-container {
		gap: 8rem;
	}

	.pr-hero-card h3>img {
		height: 4.5rem;
	}
}

@media screen and (max-width: 1024px) {

	.pr-section {
		padding: 8rem 0;
	}

	.pr-container {
		flex-direction: column;
		gap: 6rem;
	}

	.notice-grid {
		margin: 3rem 0 0;
	}

	.pr-hero-card {
		height: 20rem;
		border-radius: 1.3rem;
	}

	.pr-hero-card h3 {
		font-size: var(--rem-20);
	}

	.pr-hero-card h3>img {
		height: var(--rem-38);
	}
}

@media screen and (max-width: 768px) {

	.pr-section {
		padding: 6rem 0;
	}

	.notice-grid {
		margin: 2rem 0;
	}

	.notice-grid-item__tit {
		font-size: var(--rem-18);
	}

	.pr-container {
		gap: 3rem;
	}

	.pr-hero-card h3 {
		font-size: var(--rem-17);
	}

	.pr-hero-card h3>img {
		height: var(--rem-30);
	}
}

@media screen and (max-width: 640px) {

	.pr-section {
		padding: 5rem 0;
	}

	.pr-hero-card {
		min-height: 20rem;
	}
}

/* ==================================================
	스크롤 진입 reveal 애니메이션 (공통)
.reveal + data-animation + .is-visible, --reveal-delay
================================================== */
.reveal {
	opacity: 0;
	transition: opacity 0.75s ease-out, transform 0.75s ease-out;
	transition-delay: var(--reveal-delay, 0);
}

.reveal.is-visible {
	opacity: 1;
}

/* fade-up */
.reveal[data-animation="fade-up"] {
	transform: translateY(2.8rem);
}

.reveal.is-visible[data-animation="fade-up"] {
	transform: translateY(0);
}

/* slide-up (아래에서 위로) */
.reveal[data-animation="slide-up"] {
	transform: translateY(3.6rem);
}

.reveal.is-visible[data-animation="slide-up"] {
	transform: translateY(0);
}

/* slide-left (왼쪽에서 슬라이드 인) */
.reveal[data-animation="slide-left"] {
	transform: translateX(-3.2rem);
}

.reveal.is-visible[data-animation="slide-left"] {
	transform: translateX(0);
}

/* scale-in (살짝 확대 등장) */
.reveal[data-animation="scale-in"] {
	transform: scale(0.97);
}

.reveal.is-visible[data-animation="scale-in"] {
	transform: scale(1);
}

/* fade-in (opacity만) */
.reveal[data-animation="fade-in"] {
	transform: none;
}

.reveal.is-visible[data-animation="fade-in"] {
	opacity: 1;
}