/* header */
.gaya-header {
    position:sticky;
    top:0;
    z-index:50;
    background:#fff;
    border-bottom:1px solid #eee;
}

.gaya-header__inner {
    width: min(1920px, calc(100% - 15px));
    height: 78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

}

.gaya-logo {
    display:flex;
    align-items: center;
	align-items: flex-end;
    gap: 32px;
    font-weight: 900;
    line-height: 1.15;
	position: relative;
}
.gaya-logo:before {
	content: '';
	position: absolute;
	background: #ccc;
	width: 1px;
	height: 28px;
	left: 60%;
	z-index: 1;
}


.gaya-logo__mark {
    width:52px;
    height:52px;
    border-radius:12px;
    background:#f3f8eb;
    border:2px solid #dfead6;
}

.gaya-logo small {
    display:block;
    font-weight:700;
}
.gaya-logo .o--logo- { 
	height: 35px;
}
.gaya-logo .o--logo-1 {
	display: block;
}
.gaya-logo .o--logo-2 {
	display: none;
}
.gaya-logo .s-1 {
    font-size: 11px;
    color: #28963A;
	letter-spacing: 0;
}
.gaya-logo .s-2 {
    font-size: 18px;
    letter-spacing: 1.5px;
	color: #555;
}

.gaya-nav {
    display: flex;
    align-items: center;
    gap: 45px;
    font-size: 18px;
}

.gaya-nav a { 
	color: #555; 
    font-weight: 600;
}

.gaya-nav a:hover {
	color: #45A936;
	font-weight: 600;
}
.gaya-nav a.qna__page {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
    background: #d7efa4;
	margin-left: 10px;

	background: #6EB92C;
    color: #fff;
}

.gaya-header__btn {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	height:46px;
	padding: 0 40px;
	border-radius:999px;
	background: #28963A !important;
	color: #fff !important;
	font-weight: 600;
	box-shadow:0 8px 18px rgba(40,150,58,.22);
	font-size: 17px;
	margin-right: 10px; 
}

.gaya-header__btn:hover {
    color: #fff !important;
    background: #8bba29 !important;
}

.gaya-mobile-btn,
.gaya-mobile-menu { display: none; }

.gaya-login-notice {
	margin-top: 12px;

	color: rgba(255,255,255,.82);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.02em;
	word-break: keep-all;
}


@media screen and (max-width: 1080px) {
	.gaya-header__inner {
        justify-content: flex-start;
        gap: 12px;
    }

    .gaya-nav {
        display: none;
    }

    .gaya-mobile-btn {
		display: flex;
		align-items: center;
		justify-content: center;

		order: 1;
        flex: 0 0 42px;
		border: 0;
	}

    .gaya-header__inner {
        gap: 14px;
    }

	.gaya-logo {
		order: 2;
        flex: 1 1 auto;
        min-width: 0;
        gap: 12px;
	}

    .gaya-header__btn {
		order: 3;
        flex: 0 0 auto;
		height: 42px;
        padding: 0 20px;
        font-size: 15px;
    }
	.gaya-logo .s-1 { font-size: 11px; }
	.gaya-logo .s-2 {}
	.gaya-logo .o--logo- { height: 30px; }
    .gaya-logo .o--logo-1 {
		display: none;
    }
	.gaya-logo .o--logo-2 { display: block; }

    .gaya-logo:before {
		display: none;
    }


	/* 모바일 햄버거 */
	.gaya-mobile-btn {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;

		order: 1;
		flex: 0 0 42px;
		padding: 8px; 
		background: #fff;
	}

	.gaya-mobile-btn span {
		display: block;
		width: 24px;
		height: 2px;
		margin: 3px 0;
		background: #222;
		border-radius: 999px;
		transition: .25s ease;
	}

	.gaya-mobile-btn:hover {
		background: transparent;
	}
	.gaya-mobile-btn:hover span {
		color: #444;
		background: #444;
	}

	/* 모바일 메뉴 */
	.gaya-mobile-menu {
		display: none;

		position: sticky;
		top: 78px;
		left: 0;

		width: 100%;

		padding: 20px 24px;

		background: #fff;

		border-top: 1px solid #eee;
		border-bottom: 1px solid #eee;
		box-shadow: 0 10px 24px rgba(0,0,0,.06);
		box-sizing: border-box;

		z-index: 40;
	}

	.gaya-mobile-menu a {
		display: block;

		padding: 14px 0;

		color: #222;
		font-size: 17px;
		font-weight: 700;

		border-bottom: 1px solid #f1f1f1;
	}

	.gaya-mobile-menu a:last-child {
		border-bottom: 0;
	}

	/* active */
	.gaya-mobile-menu.is-open {
		display: block;
	}

	/* 햄버거 active */
	.gaya-mobile-btn.is-active span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.gaya-mobile-btn.is-active span:nth-child(2) {
		opacity: 0;
	}

	.gaya-mobile-btn.is-active span:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}
}

@media screen and (max-width: 578px) {
	.gaya-header__inner { 
		gap: 5px;
		width: min(1920px, calc(100% - 8px));
	}
	.gaya-header__btn { height: 35px; }
}

@media (max-width: 410px) {
	.gaya-header a .main-title { display: none; }
}