/* =========================================================
   GAYA TOUR MAIN CSS
   - :root / var() 미사용 버전
   - 기존 CSS 전체 덮어쓰기용
========================================================= */

/* hero */
.tour-hero {
	position: relative;
	min-height: 760px;
	overflow: hidden;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.02) 0%,
			rgba(255, 247, 232, 0.1) 58%,
			rgba(248, 241, 230, 1) 100%
		),
		url("/public/assets/img/CompBulkRegGayaTour/banner/bg--1.png") center bottom / cover no-repeat;
}

.tour-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 42%, rgba(255, 239, 180, 0.42), transparent 31%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
	pointer-events: none;
}

.tour-hero__inner {
	position: relative;
	z-index: 2;
	min-height: 760px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 86px 0 80px;
	text-align: center;
}

.tour-hero__content {
	max-width: 1040px;
	margin: 0 auto;
}

.tour-hero__ribbon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 520px;
	height: 58px;
	margin: 0 0 8px;
	padding: 0 56px;
	background: #7a3b1b;
	color: #fffaf2;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.02em;
	clip-path: polygon(6% 0, 94% 0, 100% 50%, 94% 100%, 6% 100%, 0 50%);
	box-shadow: 0 12px 22px rgba(73, 35, 16, 0.18);
}

.tour-hero__title {
	margin: 0;
	padding-top: 15px;
	color: #6a351c;
	font-weight: 950;
	line-height: 1.15;
	letter-spacing: -0.065em;
	text-shadow:
		4px 4px 0 #fff,
		-4px -4px 0 #fff,
		4px -4px 0 #fff,
		-4px 4px 0 #fff,
		0 12px 22px rgba(59, 31, 15, 0.2);
}

.tour-hero__title span,
.tour-hero__title strong {
	display: block;
	font-family: 'Aggravo';
}

.tour-hero__title span {
	font-size: clamp(68px, 7.4vw, 88px);
}

.tour-hero__title strong {
	font-size: clamp(74px, 8.2vw, 102px);
	font-weight: 950;
}

.tour-hero__desc {
	margin: 26px 0 0;
	font-size: clamp(19px, 1.7vw, 28px);
	font-weight: 700;
	line-height: 1.35;
	color: #3d2113;
	text-shadow: 0 2px 10px rgba(255, 255, 255, 0.95);
}

.tour-hero__desc .point--color {
	color: #f36b13;
	font-weight: 900;
}

.tour-hero__desc::first-line {
	color: #6a351c;
}

.tour-hero__btns {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin-top: 38px;
}

.tour-main-btn,
.tour-sub-btn {
	min-width: 220px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	font-size: 20px;
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.tour-main-btn {
	background: #5a2c18;
	color: #fff;
	box-shadow: 0 16px 26px rgba(57, 28, 13, 0.24);
}

.tour-sub-btn {
	background: rgba(255, 253, 248, 0.94);
	color: #3d2113;
	border: 1px solid rgba(70, 38, 22, 0.18);
	box-shadow: 0 12px 24px rgba(80, 45, 25, 0.14);
}

.tour-main-btn::after,
.tour-sub-btn::after {
	content: "›";
	margin-left: 12px;
	font-size: 28px;
	line-height: 1;
}

.tour-main-btn:hover,
.tour-sub-btn:hover {
	transform: translateY(-3px);
}

.tour-main-btn:hover {
	background: #74391f;
}

.tour-main-btn.is-disabled {
	background: #8c7b70;
	cursor: default;
	box-shadow: none;
}

.tour-hero__summary {
	width: min(660px, 100%);
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin-top: 64px;
}

.tour-summary-card,
.tour-summary-memo {
	min-height: 84px;
	padding: 22px 26px;
	border-radius: 18px;
	background: rgba(255, 253, 248, 0.94);
	border: 1px solid rgba(90, 44, 24, 0.1);
	box-shadow: 0 16px 34px rgba(55, 32, 18, 0.12);
	text-align: left;
}

.tour-summary-card--title {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	font-size: 17px;
	font-weight: 900;
	color: #8a522c;
}

.tour-summary-card span {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 900;
	color: #8a522c;
}

.tour-summary-card strong {
	display: block;
	font-size: 23px;
	font-weight: 950;
	line-height: 1.35;
	color: #3b2418;
}

.tour-summary-memo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background: rgba(255, 251, 238, 0.96);
	transform: rotate(-2deg);
	font-size: 33px;
	font-weight: 900;
	line-height: 1.45;
	color: #4b2414;
	letter-spacing: 1px;
	border-radius: 18px;
}

.tour-summary-memo::before {
	content: "";
	position: absolute;
	top: -22px;
	left: 50%;
	width: 120px;
	height: 38px;
	background: rgba(218, 189, 126, 0.52);
	transform: translateX(-50%) rotate(3deg);
}

.tour-summary-memo::after {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1px solid rgba(75, 36, 20, 0.2);
	border-radius: 12px;
	pointer-events: none;
	z-index: 1;
}

.tour-summary-memo > * {
	position: relative;
	z-index: 2;
}

/* common section */
.tour-section {
	position: relative;
	padding: 82px 0;
	overflow: hidden;
}

.tour-section__title {
	position: relative;
	text-align: center;
	margin-bottom: 38px;
	z-index: 2;
}

.tour-section__title .title--wrap {
	position: relative;
	display: inline-block;
}

.tour-section__title span {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 950;
	letter-spacing: 0.16em;
	color: #d8853e;
}

.tour-section__title h2 {
	position: relative;
	z-index: 2;
	margin: 0;
	font-size: clamp(34px, 3vw, 48px);
	font-weight: 800;
	line-height: 1.2;
	color: #4b2414;
}


.tour-section__title p {
	position: relative;
	z-index: 2;
	margin: 14px 0 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	color: #6d5548;
}

/* 발자취 장식 */
.tour-footprints {
	position: absolute;
	left: 1.5%;
	top: 95px;
	width: 360px;
	height: 620px;
	z-index: 0;
	opacity: 0.18;
	pointer-events: none;
	transform: rotate(-10deg);
}

.tour-footprints i {
	position: absolute;
	display: block;
	width: 58px;
	height: 82px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.tour-footprints i.foot-left {
	background-image: url("/public/assets/img/CompBulkRegGayaTour/right--foot3.png");
}
.tour-footprints i.foot-right {
	background-image: url("/public/assets/img/CompBulkRegGayaTour/left--foot3.png");
}

.tour-footprints i:nth-child(1) {
	left: 155px;
	top: 0;
	transform: rotate(-22deg);
}

.tour-footprints i:nth-child(2) {
	left: 70px;
	top: 82px;
	transform: rotate(-5deg);
}

.tour-footprints i:nth-child(3) {
	left: 170px;
	top: 165px;
	transform: rotate(1deg);
}

.tour-footprints i:nth-child(4) {
	left: 62px;
	top: 252px;
	transform: rotate(-12deg);
}

.tour-footprints i:nth-child(5) {
	left: 185px;
	top: 342px;
	transform: rotate(2deg);
}

.tour-footprints i:nth-child(6) {
	left: 80px;
	top: 432px;
	transform: rotate(-10deg);
}

.tour-footprints i:nth-child(7) {
	left: 200px;
	top: 520px;
	transform: rotate(10deg);
}

.tour-section__title,
.tour-section .tour-card-list,
.tour-section .tour-course-list,
.tour-section .tour-card-grid,
.tour-info__grid,
.tour-theme__grid,
.tour-apply__inner,
.tour-award__grid {
	position: relative;
	z-index: 2;
}
.tour-section__title .line--- {
    display: flex;
    align-items: center;
    justify-content: center; 
	gap: 10px;
}
.tour-section__title .line--- img { 
	height: 45px; 
}

/* info cards */
.tour-info {
	padding-top: 66px;
	padding-bottom: 0;
	background: #f8f1e6;
}

.tour-info__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.tour-info-card {
	min-height: 238px;
	padding: 24px 30px;
	border-radius: 20px;
	background: #fffdf8;
	border: 1px solid rgba(126, 86, 55, 0.1);
	box-shadow: 0 16px 34px rgba(83, 54, 34, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-info-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 42px rgba(83, 54, 34, 0.12);
}

.tour-info-card .icon--img-wrap {
	width: 100%;
	height: 80px;
	margin: 0 auto 20px;
	padding: 20px;
	border: 1px solid rgba(126, 86, 55, 0.08);
	border-radius: 50px;
	background: #f8f3ea;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tour-info-card:nth-child(1) .icon--img-wrap {
	background: rgba(111, 150, 91, 0.14);
}

.tour-info-card:nth-child(2) .icon--img-wrap {
	background: rgba(216, 133, 62, 0.13);
}

.tour-info-card:nth-child(3) .icon--img-wrap {
	background: rgba(139, 90, 60, 0.12);
}

.tour-info-card:nth-child(4) .icon--img-wrap {
	background: rgba(232, 197, 143, 0.22);
}

.tour-info-card .icon--img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tour-info-card i {
	width: 58px;
	height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f2e6d4;
	font-style: normal;
	font-size: 28px;
	margin-bottom: 18px;
}

.tour-info-card h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 800;
	color: #3b2418;
	text-align: center;
}

.tour-info-card p {
	margin: 14px 0 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	color: #5e493c;
	text-align: center;
}

.tour-info-card > p:not(:first-of-type) {
	margin-top: 0;
}

.tour-info-card .file--download {
	display: block;
	margin: 30px auto 0;
	text-align: center;
}

.tour-info-card a {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 750;
    color: #315d8d;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 10px;
}

.tour-info-card a span {
    position: relative;
    display: inline-block;
	font-weight: 600;
	transition: all .2s;
}

.tour-info-card a span:hover {
	font-weight: 800;
}

.tour-info-card a span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #315d8d;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.tour-info-card a:hover span::after {
    transform: scaleX(1);
}

/* .tour-info-card a::after {
    content: "›";
    margin-left: 8px;
    font-size: 20px;
    line-height: 1;
} */

.tour-info-card:nth-child(1) .tour-info-card__icon {
  background: #eef2e5;
}

.tour-info-card:nth-child(2) .tour-info-card__icon {
  background: #f8eadf;
}

.tour-info-card:nth-child(3) .tour-info-card__icon {
  background: #f3e5dc;
}

.tour-info-card:nth-child(4) .tour-info-card__icon {
  background: #f7efd9;
}

/* / */

.tour-info {
    position: relative;
    max-width: 1440px;
    margin: -34px auto 20px;
    padding: 18px;
    border-radius: 34px;
    background: rgba(255, 250, 241, 0.92);
    box-shadow: 0 10px 5px rgba(74, 43, 25, 0.12);
    backdrop-filter: blur(10px);
}

.tour-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tour-info-card {
  border-radius: 24px;
  background: #fff;
  padding: 28px 22px 26px;
  border: 1px solid rgba(113, 75, 48, 0.1);
}

.tour-info-card__icon {
  width: 86px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 22px;
  background: #f3eadb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-info-card__icon img,
.tour-info-card__icon i,
.tour-info-card__icon svg {
  width: 30px;
  height: 30px;
}

/* 심사발표 및 일정 */
/* 심사 및 발표 일정 */
.tour-screening {
	position: relative;
	padding: 0 20px 26px;
	background: #f7f0e6;
}

.tour-screening::before {
	content: "";
	position: absolute;
	right: 5.5%;
	top: 50%;
	width: 190px;
	height: 92px;
	background: url("/public/assets/img/CompBulkRegGayaTour/stamp.png") no-repeat center / contain;
	opacity: 0.12;
	transform: translateY(-50%);
	pointer-events: none;
}

.tour-screening__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 300px 1fr;
	align-items: center;
	gap: 34px;
	max-width: 1440px;
	margin: 0 auto;
	padding: 38px 44px;
	border: 1px solid rgba(101, 65, 42, 0.15);
	border-radius: 28px;
	background: rgba(255, 252, 246, 0.78);
	box-shadow: 0 18px 42px rgba(71, 45, 28, 0.07);
	backdrop-filter: blur(4px);
}

.tour-screening__head {
	display: flex;
	align-items: center;
	gap: 18px;
}

.tour-screening__icon {
	position: relative;
	flex: 0 0 auto;
	width: 78px;
	height: 78px;
	border-radius: 22px;
	background: #fff4df;
	box-shadow: inset 0 0 0 1px rgba(112, 70, 42, 0.1);
}

.tour-screening__icon::before {
	content: "";
	position: absolute;
	left: 17px;
	top: 18px;
	width: 44px;
	height: 38px;
	border: 3px solid #9b6239;
	border-radius: 8px;
	background:
		linear-gradient(#9b6239, #9b6239) 0 11px / 100% 3px no-repeat,
		linear-gradient(90deg, rgba(155, 98, 57, 0.24) 1px, transparent 1px) 0 18px / 11px 11px,
		linear-gradient(rgba(155, 98, 57, 0.24) 1px, transparent 1px) 0 18px / 11px 11px,
		#fffaf0;
}

.tour-screening__icon::after {
	content: "";
	position: absolute;
	right: 11px;
	bottom: 10px;
	width: 28px;
	height: 28px;
	border: 3px solid #dc8a46;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
}

.tour-screening__icon span {
	position: absolute;
	right: 21px;
	bottom: 18px;
	width: 2px;
	height: 12px;
	background: #dc8a46;
	transform-origin: bottom center;
	transform: rotate(-35deg);
	z-index: 1;
}

.tour-screening__icon span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 9px;
	height: 2px;
	background: #dc8a46;
	transform-origin: left center;
	transform: rotate(55deg);
}

.tour-screening__title span {
	display: block;
	margin-bottom: 8px;
	color: #c16d2e;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
}

.tour-screening__title h2 {
	margin: 0;
	color: #4a2b1b;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.04em;
}

.tour-screening__title p {
	margin-top: 10px;
	color: #7b6758;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
}

.tour-screening__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 42px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tour-screening__list li {
	position: relative;
	min-height: 150px;
	padding: 34px 22px 24px;
	border: 1px solid rgba(105, 71, 48, 0.16);
	border-radius: 18px;
	background: rgba(255, 252, 247, 0.92);
	text-align: center;
	box-shadow: 0 10px 22px rgba(74, 43, 27, 0.045);
}

.tour-screening__list li + li::before {
	content: "";
	position: absolute;
	left: -31px;
	top: 50%;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(96, 72, 52, 0.58);
	transform: translateY(-50%);
}

.tour-screening__list li + li::after {
	content: "";
	position: absolute;
	left: -25px;
	top: 50%;
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}

.tour-screening__num {
	position: absolute;
	left: 50%;
	top: -20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	transform: translateX(-50%);
	box-shadow: 0 8px 16px rgba(74, 43, 27, 0.13);
}

.tour-screening__list li:nth-child(1) .tour-screening__num {
	background: #2f793c;
}

.tour-screening__list li:nth-child(2) .tour-screening__num {
	background: #c86814;
}

.tour-screening__list li:nth-child(3) .tour-screening__num {
	background: #5a321f;
}

.tour-screening__content strong {
	display: block;
	color: #3f281d;
	font-size: 20px;
	font-weight: 750;
	line-height: 1.35;
	letter-spacing: -0.03em;
}

.tour-screening__content p {
	margin-top: 15px;
	color: #58301f;
	font-size: 20px;
	font-weight: 650;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.tour-screening__notice {
	grid-column: 2 / 3;
	margin-top: -14px;
	color: #6f6259;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
    padding-left: 0;
    list-style: none;
    display: flex; gap: 20px;
    justify-content: center;
}
.tour-screening__notice li {  }

/* theme */
.tour-theme {
	position: relative;
	/* background:
		radial-gradient(circle at 8% 20%, rgba(183, 124, 69, 0.07), transparent 25%),
		radial-gradient(circle at 92% 82%, rgba(111, 150, 91, 0.08), transparent 26%),
		#fffaf2; */
}

.tour-theme .stamp--bg--shadow {
    transform: rotate(170deg);
    width: 30%;
    height: 40%;
    opacity: 0.2;
    position: absolute;
    right: -13%;
    z-index: -1;
    top: 0;
}

.tour-theme::after {
	content: "";
	position: absolute;
	right: 7%;
	bottom: 15%;
	width: 300px;
	height: 130px;
	border-top: 2px dashed rgba(111, 150, 91, 0.24);
	transform: rotate(-8deg);
	pointer-events: none;
	z-index: 1;
}

.tour-theme__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.tour-theme__grid article {
	padding: 18px 18px 26px;
	border-radius: 20px;
	background: #fffdf8;
	border: 1px solid rgba(126, 86, 55, 0.1);
	box-shadow: 0 14px 30px rgba(83, 54, 34, 0.08);
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-theme__grid article:hover {
	transform: translateY(-5px);
	box-shadow: 0 22px 42px rgba(83, 54, 34, 0.12);
}

.tour-theme__img {
	height: 150px;
	margin-bottom: 20px;
	border-radius: 16px;
	overflow: hidden;
	background: #f2e7d8;
}

.tour-theme__img img {
	width: 103%;
	height: 103%;
	object-fit: contain;
	object-position: bottom;
	display: block;
}

.tour-theme__img.img_size__ img { object-fit: cover; }

.tour-theme__grid strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	height: 36px;
	margin-bottom: 14px;
	padding: 0 18px;
	background: #5a2c18;
	color: #fff;
	border-radius: 999px;
	font-size: 18px;
	font-weight: 800;
}

.tour-theme__grid article:nth-child(1) strong {
	background: #6b3a24;
}

.tour-theme__grid article:nth-child(2) strong {
	background: #6f965b;
}

.tour-theme__grid article:nth-child(3) strong {
	background: #8b5a3c;
}

.tour-theme__grid article:nth-child(4) strong {
	background: #d8853e;
}

.tour-theme__grid p {
	margin: 0;
	font-size: 16px;
	font-weight: 650;
	line-height: 1.35;
	color: #594336;
}

/* apply */
.tour-apply {
	background: #f3eadc;
}

.tour-apply__inner {
	display: grid;
	grid-template-columns: 1.45fr 0.8fr;
	gap: 42px;
	align-items: stretch;
}

.tour-step {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	position: relative;
}

.tour-step article {
	position: relative;
	padding: 30px 22px;
	border-radius: 22px;
	background: #fffdf8;
	border: 1px solid rgba(126, 86, 55, 0.1);
	box-shadow: 0 14px 30px rgba(83, 54, 34, 0.08);
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-step article:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 40px rgba(83, 54, 34, 0.12);
}

.tour-step article::after {
	content: "→";
	position: absolute;
	right: -17px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(95, 125, 162, 0.7);
	font-size: 24px;
	font-weight: 900;
}

.tour-step article:last-child::after {
	display: none;
}

.tour-step__icon {
	width: 84px;
	height: 84px;
	margin: 0 auto;
	border-radius: 18px;
	background: #fff4dc;
	color: #7a4529;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	font-weight: 900;
}

.tour-step article:nth-child(1) .tour-step__icon {
	background: rgba(232, 197, 143, 0.26);
}

.tour-step article:nth-child(2) .tour-step__icon {
	background: rgba(216, 133, 62, 0.16);
}

.tour-step article:nth-child(3) .tour-step__icon {
	background: rgba(111, 150, 91, 0.17);
}

.tour-step article:nth-child(4) .tour-step__icon {
	background: rgba(139, 88, 126, 0.14);
}

.tour-step__icon img {
	width: 58px;
	height: 48px;
	object-fit: contain;
}

.tour-step b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 75px;
	margin-bottom: 7px;
	border-radius: 999px;
	background: #572a0a;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.tour-step article:nth-child(2) b {
	background: #b86a2c;
}

.tour-step article:nth-child(3) b {
	background: #3f7e4b;
}

.tour-step article:nth-child(4) b {
	background: #8b587e;
}

.tour-step h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
	color: #3b2418;
}

.tour-step p {
	margin: 12px 0 0;
	font-size: 16px;
	font-weight: 650;
	line-height: 1.35;
	color: #5e493c;
}

.tour-apply__notice {
	position: relative;
	padding: 36px 38px;
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(255, 248, 234, 0.96)),
		#fffdf8;
	border: 1px solid rgba(216, 133, 62, 0.16);
	box-shadow: 0 18px 36px rgba(83, 54, 34, 0.09);
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

.tour-apply__notice::before {
	/* content: ""; */
	position: absolute;
	top: -16px;
	left: 50%;
	width: 110px;
	height: 34px;
	background: rgba(218, 189, 126, 0.42);
	transform: translateX(-50%) rotate(-2deg);
	border-radius: 2px;
}

.tour-apply__notice .effect--bg {
	position: absolute; 
    bottom: -10px;
    right: -40px;
    width: 90px;
	transform: rotate(2deg);
}

.tour-apply__notice h3 {
	margin: 0 0 22px;
	font-size: 28px;
	font-weight: 800;
	color: #274766;
	line-height: 1.25;
}

.tour-apply__notice ul {
	margin: 0;
	padding-left: 20px;
}

.tour-apply__notice li {
	position: relative;
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.55;
	color: #4f443e;
}

.tour-apply__notice li::before {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	background: #6f965b;
	border-radius: 50%;
	top: 10px;
	left: -12px;
}

.tour-apply__btns {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.tour-outline-btn,
.tour-guide-link {
	min-width: 180px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border-radius: 9px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.tour-outline-btn {
	background: #fffdf8;
	border: 1px solid rgba(90, 45, 27, 0.42);
	color: #4b2414;
}

.tour-outline-btn::after {
	content: "›";
	margin-left: 10px;
	font-size: 22px;
	line-height: 1;
}

.tour-guide-link {
	background: #5a2d1b;
	border: 1px solid #5a2d1b;
	color: #fff;
}

.tour-guide-link::after {
	content: "›";
	margin-left: 8px;
	font-size: 20px;
	line-height: 1;
}

.tour-outline-btn:hover,
.tour-guide-link:hover {
	transform: translateY(-2px);
}

.tour-guide-link:hover {
	background: #3f1f12;
	border-color: #3f1f12;
}

.tour-step__guide {
	position: relative;
	background: #fff8ea;
	border-color: rgba(90, 45, 27, 0.2);
}

.tour-step__guide-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
	padding: 10px 16px;
	border-radius: 999px;
	color: #c14e00;
	font-size: 14px;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.25s ease;
}

.tour-step__guide-btn::after {
	content: "›";
	margin-left: 7px;
	font-size: 18px;
	line-height: 1;
}

.tour-step__guide-btn:hover {
	transform: translateY(-2px);
}

/* award */
.tour-award {
	position: relative;
	background:
		radial-gradient(circle at 50% 0%, rgba(232, 197, 143, 0.18), transparent 34%),
		#fffaf2;
	border: 0;
	box-shadow: none;
}

.tour-award::before {
	content: "";
	position: absolute;
	left: -80px;
	top: 120px;
	width: 300px;
	height: 300px;
	border-radius: 48% 52% 45% 55%;
	background: rgba(112, 69, 40, 0.055);
	transform: rotate(-18deg);
	pointer-events: none;
}

.tour-award::after {
	content: "";
	position: absolute;
	right: -120px;
	bottom: 60px;
	width: 390px;
	height: 390px;
	border-radius: 50%;
	background: rgba(111, 150, 91, 0.075);
	pointer-events: none;
}

.tour-award .tour-inner {
	position: relative;
}
.tour-award .tour-inner .stamp--bg--shadow-2 {
    position: absolute;
    top: 0;
    right: -25%;
    opacity: 0.2;
    width: 30%;
    z-index: 3;
}

.tour-award__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	align-items: stretch;
}

.tour-award__grid article {
	position: relative;
	min-height: 315px;
	padding: 30px 28px;
	border-radius: 24px;
	background: #fffdf8;
	border: 1px solid rgba(126, 86, 55, 0.1);
	box-shadow: 0 16px 34px rgba(83, 54, 34, 0.08);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-award__grid article:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 46px rgba(83, 54, 34, 0.12);
}

.tour-award__grid article::after {
	content: "";
	position: absolute;
	right: -44px;
	bottom: -44px;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background: rgba(216, 133, 62, 0.07);
	pointer-events: none;
}

.tour-award__grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 84px;
	height: 25px;
	margin: 10px 0 15px;
	padding: 0 14px;
	border-radius: 999px;
	background: #f0e3cf;
	color: #6a351c;
	font-size: 14px;
	font-weight: 800;
}

.tour-award__grid h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
	color: #3b2418;
}

.tour-award__grid p {
	margin: 14px 0 0;
	font-size: 17px;
	font-weight: 650;
	line-height: 1.58;
	color: #5e493c;
}

.tour-award__grid article img.trophy--img {
    display: block;
    width: 100%;
    max-width: 210px;
    height: 100%;
    margin: 0 auto 22px;
    object-fit: contain;
    position: absolute;
    bottom: 50px;
    right: -45px;
}
.tour-award__grid article img.trophy--img--bg {
    width: 100%;
    display: block;
    position: absolute;
	bottom: 1px;
    z-index: 0;
}
.tour-award__grid article img.trophy--img--icon {
    width: 60px;
    display: block;
    position: absolute;
    right: 20px;
    bottom: 10px;
    z-index: 0;
}
.tour-award__grid article img.trophy--img--icon-2 {
    width: 55%;
    display: block;
    position: absolute;
    right: 20px;
    bottom: 10px;
    z-index: 0;
}


/* 메인 시상 카드 */
.tour-award__main {
	background:
		linear-gradient(180deg, rgba(112, 62, 36, 0.92), rgba(76, 35, 21, 0.96)),
		url("/public/assets/img/CompBulkRegGayaTour/banner/bg--2.png") center / cover no-repeat !important;
	color: #fffaf2;
	position: relative;
	overflow: hidden;
	box-shadow: 0 22px 44px rgba(83, 54, 34, 0.2);
}

.tour-award__main::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 66px;
	width: 230px;
	height: 230px;
	background: radial-gradient(circle, rgba(255, 229, 160, 0.46), rgba(255, 229, 160, 0.13) 38%, transparent 68%);
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 0;
}

.tour-award__main::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 42px;
	width: 132px;
	height: 22px;
	background: rgba(255, 236, 180, 0.42);
	border-radius: 999px;
	filter: blur(2px);
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 0;
}

.tour-award__main > * {
	position: relative;
	z-index: 1;
}

.tour-award__main span {
	background: rgba(255, 255, 255, 0.18);
	color: #fff7e9;
}

.tour-award__main h3,
.tour-award__main strong {
	display: block;
	margin: 0;
	font-size: clamp(46px, 5vw, 58px);
	font-weight: 750;
	line-height: 1;
	color: #fff;
}

.tour-award__main p {
	color: rgba(255, 255, 255, 0.92);
	font-size: 24px;
	font-weight: 800;
}

.tour-award__trophy {
	position: relative;
	width: 100%;
	height: 100%;
	margin-top: auto;
	padding-top: 22px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.tour-award__trophy img {
	width: min(82%, 230px);
	height: auto;
	display: block;
	object-fit: contain;
	filter: drop-shadow(0 14px 18px rgba(35, 18, 10, 0.22));
}

/* 시상 카드별 포인트 */
.tour-award__grid article:nth-child(2) span {
	background: rgba(111, 150, 91, 0.18);
	color: #4f733d;
}

.tour-award__grid article:nth-child(3) span {
	background: rgba(216, 133, 62, 0.18);
	color: #9b5626;
}

.tour-award__grid article:nth-child(4) span {
	background: rgba(139, 90, 60, 0.15);
	color: #6a351c;
}

/* bottom */
.tour-bottom {
	background: #f8f1e6;
	padding-top: 50px;
}

.tour-bottom__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.25fr 1fr;
	gap: 22px;
}

.tour-contact-card,
.tour-login-card,
.tour-cta-card {
	padding: 34px 34px;
	border-radius: 22px;
	background: #fffdf8;
	border: 1px solid rgba(126, 86, 55, 0.1);
	box-shadow: 0 15px 32px rgba(83, 54, 34, 0.08);
}

/* 카드 상단 포인트 라인 */
/* .tour-contact-card::before,
.tour-login-card::before {
	content: "";
	position: absolute;
	left: 36px;
	top: 30px;
	width: 44px;
	height: 5px;
	border-radius: 999px;
	pointer-events: none;
} */

/* 문의처 포인트 */
/* .tour-contact-card::before {
	background: #315d8d;
} */

/* 로그인 안내 포인트 */
/* .tour-login-card::before {
	background: #6f965b;
} */

/* 오른쪽 아래 은은한 장식 */
.tour-contact-card::after,
.tour-login-card::after {
	content: "";
	position: absolute;
	right: -38px;
	bottom: -42px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	pointer-events: none;
}

/* 문의처는 블루 계열 */
.tour-contact-card::after {
	background:
		radial-gradient(circle at 35% 35%, rgba(49, 93, 141, 0.12), transparent 42%),
		rgba(49, 93, 141, 0.05);
}

/* 로그인은 그린 계열 */
.tour-login-card::after {
	background:
		radial-gradient(circle at 35% 35%, rgba(111, 150, 91, 0.14), transparent 42%),
		rgba(111, 150, 91, 0.06);
}

.tour-contact-card h3,
.tour-login-card h3 {
	position: relative;
	z-index: 2;
	margin: 0 0 20px;
	padding-top: 18px;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.25;
	color: #274766;
}

.tour-contact-card strong,
.tour-contact-card p,
.tour-login-card p,
.tour-login-card a {
	position: relative;
	z-index: 2;
}

.tour-contact-card strong {
	display: block;
	margin-bottom: 18px;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.45;
	color: #3b2418;
}

.tour-contact-card p,
.tour-login-card p {
	margin: 8px 0;
	font-size: 17px;
	font-weight: 650;
	line-height: 1.55;
	color: #5e493c;
}

.tour-login-card a {
	min-width: 190px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 22px;
	border-radius: 9px;
	border: 1px solid rgba(49, 93, 141, 0.75);
	background: #fffdf8;
	color: #315d8d;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.tour-login-card a:hover {
	transform: translateY(-2px);
	background: rgba(49, 93, 141, 0.06);
	box-shadow: 0 10px 20px rgba(49, 93, 141, 0.1);
}

.tour-contact-card,
.tour-login-card {
	position: relative;
	overflow: hidden;
	min-height: 230px;
	background:
		linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 250, 242, 0.92));
}
.card--22 { 
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.card--22 .img--card { width: 60px; }


.tour-contact-card h3,
.tour-login-card h3,
.tour-cta-card h3 {
	margin: 0 0 18px;
	font-size: 26px;
	font-weight: 750;
	color: #274766;
}

.tour-contact-card strong {
	display: block;
	margin-bottom: 16px;
	font-size: 17px;
	font-weight: 700;
	color: #3b2418;
}

.tour-contact-card p,
.tour-login-card p {
	margin: 8px 0;
	font-size: 17px;
	font-weight: 650;
	line-height: 1.55;
	color: #5e493c;
}

.tour-login-card a,
.tour-cta-card a {
	min-width: 190px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	border-radius: 9px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.25s ease, background 0.25s ease;
}

.tour-login-card a {
	border: 1px solid #315d8d;
	color: #315d8d;
	background: #fffdf8;
}

.tour-login-card a:hover {
	transform: translateY(-2px);
	background: rgba(49, 93, 141, 0.06);
}

/* 여기서부터 수정한 부분 */

/* .tour-cta-card h3 {
	color: #4b2414;
	line-height: 1.35;
}

.tour-cta-card a {
	background: #5a2c18;
	color: #fff;
}

.tour-cta-card a:hover {
	transform: translateY(-2px);
	background: #74391f;
}

.tour-cta-card a::after {
	content: "›";
	margin-left: 10px;
	font-size: 22px;
}

.tour-cta-card a.is-disabled {
	background: #8c7b70;
} */

.tour-cta-card {
/* 	position: relative;
			overflow: hidden;
			background:
		url("/public/assets/img/CompBulkRegGayaTour/banner/bg--3.png") center center / 110% auto no-repeat,
		linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
		linear-gradient(135deg, #fff3cf, #eaf0c8); */

		position: relative;
		overflow: hidden;
		min-height: 230px;
		padding: 38px 36px;
		border-radius: 22px;
		background:
			linear-gradient(90deg, rgba(255, 253, 248, 0.94) 0%, rgba(255, 253, 248, 0.78) 44%, rgba(255, 253, 248, 0.18) 72%),
			url("/public/assets/img/CompBulkRegGayaTour/banner/bg--3.png") right 8px bottom -2px / 76% auto no-repeat,
			linear-gradient(135deg, #fff3cf, #eaf0c8);
		border: 1px solid rgba(126, 86, 55, 0.1);
		box-shadow: 0 18px 38px rgba(83, 54, 34, 0.09);
}
/* 오른쪽 위 빈 공간 보완용 빛 */
.tour-cta-card::before {
	content: "";
	position: absolute;
	right: -48px;
	top: -54px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(255, 238, 165, 0.28);
	pointer-events: none;
}
/* 버튼 아래 길/코스 느낌 */
.tour-cta-card::after {
	content: "";
	position: absolute;
	left: 38px;
	bottom: 32px;
	width: 150px;
	height: 40px;
	border-bottom: 2px dashed rgba(122, 69, 41, 0.22);
	border-radius: 50%;
	transform: rotate(-4deg);
	pointer-events: none;
}

.tour-cta-card h3 {
	position: relative;
	z-index: 2;
	margin: 0 0 24px;
	color: #4b2414;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.25;
}

.tour-cta-card a {
	position: relative;
	z-index: 2;
	min-width: 190px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
	border-radius: 10px;
	background: #5a2c18;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 12px 24px rgba(83, 54, 34, 0.18);
	transition: transform 0.25s ease, background 0.25s ease;
}

.tour-cta-card a:hover {
	transform: translateY(-2px);
	background: #74391f;
}

.tour-cta-card a::after {
	content: "›";
	margin-left: 10px;
	font-size: 22px;
	line-height: 1;
}

/* footer */
.tour-footer {
	background: #4b2b1d;
	color: #fff8ea;
	padding: 34px 0;
}

.tour-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.tour-footer__inner .logo--wrap {
	display: flex;
	gap: 20px;
}

.tour-footer__inner .logo--wrap .tour-logo {
	height: 45px;
	object-fit: contain;
	min-width: fit-content;
}

.tour-footer__inner .logo--wrap .tour-logo img {
	opacity: 0.75;
}

.tour-footer strong {
	display: block;
	margin-bottom: 3px;
	font-size: 19px;
	font-weight: 800;
	color: rgba(255, 248, 234, 0.75);
}

.tour-footer p {
	margin: 0;
	font-size: 13.5px;
	color: rgba(255, 248, 234, 0.75);
}

/* responsive */
@media (max-width: 1500px) {
	.tour-theme .stamp--bg--shadow {
		height: initial; 
		width: 27%;
	}
	.tour-award .tour-inner .stamp--bg--shadow-2 {
		display: none;
	}
	.tour-apply__notice .effect--bg { display: none; }

	/* 심사 및 발표 일정 */
	.tour-screening { padding: 0; }
	.tour-screening__title h2 { font-size: 24px; }
	.tour-screening__content strong { font-weight: 700; }
	.tour-screening__content p { font-size: 18px; margin-top: 8px; }
}

@media (max-width: 1280px) {
	.tour-inner {
		width: min(100% - 48px, 1180px);
	}

	.tour-header__inner {
		width: calc(100% - 40px);
	}

	.tour-nav {
		gap: 34px;
	}

	.tour-hero__ribbon {
		min-width: 440px;
		font-size: 22px;
	}

	.tour-info__grid,
	.tour-theme__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tour-award__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tour-bottom__grid {
		grid-template-columns: 1fr;
	}
	.tour-theme__img {
	    width: fit-content;
	    margin: 0 auto 20px;
	}
	.tour-apply__notice .effect--bg {
		right: -20px;
	}
}

@media (max-width: 1024px) {
	.tour-nav,
	.tour-header__btn {
		display: none;
	}

	.tour-mobile-btn {
		display: block;
	}

	.tour-logo {
		min-width: auto;
	}

	.tour-hero {
		min-height: 680px;
	}

	.tour-hero__inner {
		min-height: 680px;
		padding-top: 70px;
	}

	.tour-hero__summary {
		grid-template-columns: 1fr 1fr;
	}

	.tour-summary-memo {
		grid-column: 1 / -1;
	}

	.tour-apply__inner {
		grid-template-columns: 1fr;
	}

	.tour-step {
		grid-template-columns: repeat(2, 1fr);
	}

	.tour-step article::after {
		display: none;
	}
	.tour-apply__notice .effect--bg {
		right: 10px;
	}
	
	/* 심사 및 발표 일정 */
	.tour-screening__title { text-align: center; }
	.tour-screening__inner {
		grid-template-columns: 1fr;
		gap: 34px;
		padding: 36px 30px;
	}

	.tour-screening__head {
		justify-content: center;
		text-align: left;
	}

	.tour-screening__notice {
		grid-column: auto;
		margin-top: 0;
	}
}

@media (max-width: 768px) {
	.mo-only {
		display: block;
	}

	.tour-inner {
		width: calc(100% - 32px);
	}

	.tour-header__inner {
		width: calc(100% - 28px);
		height: 72px;
	}

	.tour-logo img {
		width: 46px;
	}

	.tour-logo strong {
		font-size: 23px;
	}

	.tour-logo small {
		font-size: 11px;
	}

	.tour-mobile-menu {
		top: 72px;
	}

	.tour-hero {
		min-height: 660px;
		background-position: center bottom;
	}

	.tour-hero__inner {
		min-height: 660px;
		justify-content: flex-start;
		padding: 68px 0 42px;
	}

	.tour-hero__ribbon {
		min-width: auto;
		width: 100%;
		height: 44px;
		padding: 0 22px;
		font-size: 16px;
	}

	.tour-hero__title {
		text-shadow:
			2px 2px 0 #fff,
			-2px -2px 0 #fff,
			2px -2px 0 #fff,
			-2px 2px 0 #fff,
			0 10px 18px rgba(59, 31, 15, 0.18);
	}

	.tour-hero__title span {
		font-size: 48px;
	}

	.tour-hero__title strong {
		font-size: 52px;
	}

	.tour-hero__desc {
		margin-top: 18px;
		font-size: 17px;
	}

	.tour-hero__btns {
		flex-direction: column;
		gap: 12px;
		margin-top: 26px;
	}

	.tour-main-btn,
	.tour-sub-btn {
		width: 100%;
		min-width: 0;
		height: 54px;
		font-size: 17px;
	}

	.tour-hero__summary {
		grid-template-columns: 1fr;
		margin-top: 24px;
	}

	.tour-summary-card,
	.tour-summary-memo {
		min-height: auto;
		padding: 18px 20px;
	}

	.tour-summary-card strong {
		font-size: 20px;
	}

	.tour-summary-memo {
		font-size: 19px;
	}

	.tour-section {
		padding: 56px 0;
	}

	.tour-section__title {
		margin-bottom: 26px;
	}

	.tour-section__title h2 {
		font-size: 30px;
	}

	.tour-section__title p {
		font-size: 16px;
	}

	.tour-footprints {
		left: -60px;
		top: 120px;
		width: 260px;
		height: 480px;
		opacity: 0.1;
	}

	.tour-footprints i {
		width: 42px;
		height: 62px;
	}

	.tour-info__grid,
	.tour-theme__grid,
	.tour-award__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.tour-info-card {
		min-height: auto;
		padding: 26px 24px;
	}

	.tour-theme__img {
		height: 180px;
	}

	.tour-step {
		grid-template-columns: 1fr;
	}

	.tour-apply__notice {
		padding: 28px 24px;
	}

	.tour-award__grid article {
		min-height: auto;
	}

	.tour-award__main {
		min-height: 340px;
	}

	.tour-award__main h3,
	.tour-award__main strong {
		font-size: 48px;
	}

	.tour-footer__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	/* tour-contact 섹션 */
	.tour-cta-card {
		min-height: 260px;
		padding: 30px 26px 128px;
		background:
			linear-gradient(180deg, rgba(255, 253, 248, 0.92) 0%, rgba(255, 253, 248, 0.58) 55%, rgba(255, 253, 248, 0.08) 100%),
			url("/public/assets/img/CompBulkRegGayaTour/banner/bg--3.png") right bottom / 100% auto no-repeat,
			linear-gradient(135deg, #fff3cf, #eaf0c8);
	}

	.tour-cta-card h3 {
		font-size: 24px;
	}

	.tour-cta-card::after {
		display: none;
	}

	/* 제출내용 및 유의사항 섹션 */
	.tour-apply__notice h3 { font-size: 24px; }

	/* 시상내역 섹션 */
	.tour-award__grid article img.trophy--img--icon-2 { width: 25%; max-width: 100px; }
	.tour-award__grid .local--point { min-height: 300px; }
	.tour-award__main h3, .tour-award__main strong { font-size: 34px; }

	/* 심사 및 발표 일정 */
	.tour-screening {
		padding: 38px 16px 28px;
	}

	.tour-screening__inner {
		padding: 30px 22px;
		border-radius: 22px;
	}

	.tour-screening__head {
		align-items: flex-start;
		justify-content: center;
	}

	.tour-screening__icon {
		width: 64px;
		height: 64px;
		border-radius: 18px;
	}

	.tour-screening__icon::before {
		left: 14px;
		top: 15px;
		width: 36px;
		height: 31px;
	}

	.tour-screening__icon::after {
		width: 24px;
		height: 24px;
	}

	.tour-screening__title h2 {
		font-size: 27px;
	}

	.tour-screening__list {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.tour-screening__list li {
		min-height: auto;
		padding: 30px 20px 22px;
	}

	.tour-screening__list li + li::before,
	.tour-screening__list li + li::after {
		display: none;
	}

	.tour-screening__content strong {
		font-size: 18px;
	}

	.tour-screening__content p {
		font-size: 17px;
	}

}

@media (max-width: 578px) {
	/* 메인 */
	.tour-summary-memo { font-size: 15px; }

	.tour-hero__title { padding-top: 10px; }
	.card--22 .img--card { width: 20px; }
	.tour-award__grid article img.trophy--img--icon { width: 30px; }
	.tour-award__grid article img.trophy--img--icon-2 { width: 30%; bottom: initial; }


	.tour-hero__title span { font-size: 33px; }
	.tour-info-card h3 { font-size: 22px; }
	.tour-hero__title strong { font-size: 40px; }
	.tour-hero__ribbon { height: 33px; padding: 0 8px; }
	.tour-main-btn, .tour-sub-btn { height: 52px; font-size: 18px; }
	.tour-hero__inner { gap: 20px; }

	.tour-info-card .icon--img-wrap { border-radius: 50px; }

	 /* course theme */
	 .tour-section__title span { margin-bottom: 5px; }
	 .tour-section__title h2 { font-size: 30px; }
	 
	/* 시상내역 */
	.tour-award__grid h3 { font-size: 22px; }

	/* 제출내용 및 유의사항 */
	.tour-outline-btn, .tour-guide-link {
		min-width: initial;
		width: 100%;
		display: flex;
		
	}
	 /* 하단 문의처 및 로그인 안내 */
	 .card--22 { flex-direction: column-reverse; }
	 .tour-contact-card h3, .tour-login-card h3 { 
		 font-size: 22px; 
		 padding-top: 8px; 
		 text-align: center;
	     margin: 0 0 13px;
	 }
	 .tour-contact-card strong { text-align: center; }
	 .tour-contact-card p, .tour-login-card p { text-align: center; margin: 8px 0 0; }
	 .tour-login-card a, .tour-cta-card a { display: flex; }
	 .tour-award__grid span { margin: 10px 0 8px; }

	 /* 심사 및 발표 일정 */
	 .tour-screening__notice { flex-direction: column; gap: 0px; }
}
@media (max-width: 480px) {
	/* 심사 및 발표 일정 */
	.tour-screening__head {
		flex-direction: column;
		gap: 14px;
		text-align: center;
	}

	.tour-screening__icon {
		margin: 0 auto;
	}

	.tour-screening__title h2 {
		font-size: 22px;
	}

	.tour-screening__title p {
		font-size: 14px;
	}

	.tour-screening__notice {
		font-size: 12px;
	}

	/* 최상단 메인 */
	.tour-info-card p { font-size: 15px; }

}
@media (max-width: 420px) {
	.tour-hero__title span {
		font-size: 42px;
	}
	.tour-contact-card, .tour-login-card, .tour-cta-card { padding: 25px 25px; }
}
