@charset "utf-8";
@import url(NotoSansKr.css);

body {
	width: 960px;
	margin: 0 auto;
    font-family: 'Noto Sans KR', sans-serif;
}


/* 온라인 신고센터 제목 크기 (기존 font-size: 30px) */
.btn_title_large_css {
    font-size: 30px;
}

/* 하단 4개 버튼 제목 크기 (기존 font-size: 27px) */
.btn_title_medium_css {
    font-size: 27px;
}

/* 링크 텍스트 중앙 정렬 (기존 text-align: center) */
.link_btns .btn_centered_css {
    text-align: center;
    display: block; /* text-align이 적용되도록 block 처리 */
}


/* -----------------------
   버튼 영역
----------------------- */

.micro_wrap {
	padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.micro_wrap ul.link_btns {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.micro_wrap ul.link_btns li {
	width: calc(50% - 8px);
	border-radius: 100px;
	position: relative;
	overflow: hidden;
	text-align: center;
	background: linear-gradient(90deg, #26316b, #468fac);
	box-shadow:
		inset 0 2px 3px rgba(255,255,255,0.25),
		inset 0 -2px 4px rgba(0,0,0,0.2),
		0 6px 12px rgba(0,0,0,0.15);
	transition: all .25s ease;

}


/* 은은한 라이트 배경 */

.micro_wrap ul.link_btns li::before{
	content:"";
	position:absolute;
	top:-40%;
	left:-20%;
	width:140%;
	height:140%;
	background: radial-gradient(
		circle at center,
		rgba(255,255,255,0.08),
		rgba(255,255,255,0.03),
		transparent 40%
	);
	transform: rotate(25deg);
	pointer-events:none;
}

.micro_wrap ul.link_btns li a {
	display:flex;
	flex-direction: column;
	align-items:center;
	justify-content:center;
	position:relative;
	height:80px;
	text-decoration:none;
	font-size:22px;
	font-weight:500;
	color:#fff;
	border-radius: 100px;
	z-index:1;
	overflow:hidden;
	transition:all .3s ease;
}
/* .micro_wrap ul.link_btns li a::after {
	content: "";
	position: absolute;
	background: url(images/arrow_right4.png) no-repeat center / contain;
	width: 20px;
	height: 20px;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform .2s ease;
	border-radius: 100px;
} */

.micro_wrap ul.link_btns li:hover a::after {
	transform: translateY(-50%) translateX(4px);
}

.micro_wrap ul.link_btns li a:hover{
	background: #26316b;
}

.micro_wrap ul.link_btns li:hover{
	transform:translateY(-3px);
}

.micro_wrap ul.link_btns li.w100 {
    width: 100%;
}

/* -----------------------
    Textbox (콜센터)
----------------------- */

.call_box {
    display: flex;
    justify-content: center;
	flex: 1;
	gap: 5px;
	padding: 15px;
    border-radius: 8px;
	text-align: center;
	font-size: 22px;
    font-weight: 500;
	color: #555;
    text-decoration: none;
}

.call_box .call_icon {
    width: 22px;
	margin-right: 5px;
}
.call_box span.font-bold {
	font-weight: 800;
}
.call_box span br,
.call_box span + br {
	display: none;
}

.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.call_box .absolute.btns{
	right: 30px;
}

.flex {
	display: flex;
	justify-content: space-between;
}
.call_box.flex {
	padding-left: 0px;
	padding-right: 0px;
	align-items: center;
}

.video_btns {
	font-size: 19px;
    display: flex;
	max-width: 175px;
    align-items: center;
    gap: 5px;
    justify-content: center;
    background: #f1f1f1;
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 600;
	letter-spacing: -1px;
}
.video_btns img{
	height: 28px;
}

/* -----------------------
   모바일
----------------------- */

@media screen and (max-width:960px) {

	body {
		width: 100%;
	}

	.micro_wrap ul.link_btns li {
		width: calc(50% - 8px);
	}
	.micro_wrap ul.link_btns li a {
		height: 70px;
		font-size: 24px;
	}
	.micro_wrap ul.link_btns li a span{
		font-size: 22px;
	}
	.call_box {
		font-size: 21px;
	}

	.call_box.flex {
		flex-direction: column;
		padding-left: 0;
		padding-right: 0;
	}

}

@media screen and (max-width: 767px) {
	.micro_wrap ul.link_btns li a::after {
		display: none;
	}
	.call_box .call_icon {
		width: 18px;
	}
	.call_box {
		font-size: 18px;
		flex-direction: column;
	}
	.call_box span br,
	.call_box span + br {
		display: block;
	}
}

@media screen and (max-width:560px) {
	.micro_wrap ul.link_btns li {
		width: 100%;
	}
	.micro_wrap ul.link_btns li a {
		font-size: 18px;
	}
	.micro_wrap ul.link_btns li a span{
		font-size: 18px;
	}
    .call_box .call_icon {
        vertical-align: middle;
    }
}