@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

/* reset.css 기본 예시 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    word-break: keep-all;

}

a {
    color: inherit;
    /* 부모 요소 텍스트 색상 상속 */
    text-decoration: none;
    /* 밑줄 제거 */
}

/* HTML5 요소를 블록 요소로 지정 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* 리스트 스타일 제거 */
ol,
ul {
    list-style: none;
}

/* 인용부호 제거 */
blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}

/* 테이블 border 겹침 제거 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    font-size: clamp(14px, 1vw + 0.5rem, 16px);
    --font-ko: 'Pretendard';
    --color--bg1: linear-gradient(180deg, #FFF 37.27%, #E3F6E4 78.04%, #CCF0F0 100%);
    --color-primary: #06F;
    --color-primary-hover: #0054D1;
    ;
}

html {
    scroll-behavior: smooth;
    /* 부드럽게 이동 */
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
}

/* 타이포그래피 */
h1 {
	font-size: clamp(2.2rem, 5vw, 3rem);
    letter-spacing: -1px;    font-weight: 800;
    line-height: 1.3;
    font-family: var(--font-ko);
    background: linear-gradient(270deg, #06F 50%, #8CC081 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    /* 32px ~ 48px */
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--font-ko);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    /* 20px ~ 32px */
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--font-ko);
}

p {
    font-size: clamp(1.3rem, 1.5vw, 1.3rem);
    /* 16px ~ 18px */
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--font-ko);
}

.flx {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    gap: 100px;
}

.txt_right
/* section_6 */

#section_6 {
    width: 100%;

    background: linear-gradient(180deg, #FFF 37.27%, #CCF0F0 57.48%, #CCF0F0 100%);


}

h1 {}

.card_img {
    margin-top: 40px;
}

.card_img_wrap {
    position: relative;
}

.card_img_wrap::after {
    position: absolute;
    background-image: url("../img/circle.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 772px;
    height: 772px;
    content: '';
    display: block;
    top: -14px;
    right: -40px;

    /* 회전 애니메이션 */
    animation: spin 20s linear infinite;
    transform-origin: center;
    /* 회전 기준: 가운데 */
}

.card_img_wrap::before {
    position: absolute;
    background-image: url("../img/cicle_2.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 510px;
    height: 510px;
    content: '';
    display: block;
    top: 113px;
    right: 88px;
    /* 회전 애니메이션 */
    animation: spin 20s linear infinite;
    transform-origin: center;
    /* 회전 기준: 가운데 */
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card_wrap {
    width: 100%;
    margin: 100px 100px;
}

.card_1,
.card_2,
.card_3 {
    padding: 100px;
    width: 100%;
    border: 1px solid #ebebeb;
    height: 700px;
    border-radius: 50px;
    background: #FFF;
    box-shadow: 0 20px 30px 0 rgba(16, 24, 40, 0.04);
}

#features_2 h1 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
    font-family: var(--font-ko);
    background-clip: text;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    color: var(--color-primary);
    font-weight: 700;
    background: transparent;
}


#features_2 h1 span {
    text-underline-offset: 12px;
    text-decoration: underline;
    text-decoration-thickness: 0.3rem;
    text-decoration-color: var(--color-primary);
    ;
    opacity: 1;
    animation: animate 2s infinite;
}



@keyframes animate {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.card_box {
    width: 40%;
    height: 232px;
    border: 1px solid #e8e8eb;
    border-radius: 10px;
}

.tit_center {
    text-align: center;
    margin-bottom: 60px;
}

.card_box_wrap {
    display: flex;
    /*justify-content: space-around;*/
    flex-wrap: wrap;
    gap: 20px;
}

/*.card_box:nth-child(3), .card_box:nth-child(4){
    margin-top:4%;
}*/

.card_box {
    position: relative;
    background: linear-gradient(90deg, #fff 0%, #eef5ff 60%);
    box-shadow: 0 4px 8px #eceef0;
    padding: 40px;
    box-sizing: border-box;
}

.card_box h2 {
    font-size: 30px;
    color: var(--color-primary);
}

.card_box .txt_area p {
    margin-top: 20px;
}

.card_box img {
    width: 50%;
    position: absolute;
    right: -7px;
    bottom: -4px;
}

#features {
    min-height: 70vh;
}

#process {
    padding-top: 36vh;
}

.process_timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process_line {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    z-index: 0;
}

.process_line_fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #0066FF 0%, #0052CC 100%);
    border-radius: 2px;
    width: 0;
    transition: width 2s cubic-bezier(0.65, 0, 0.35, 1);
}

.process_steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

.process_step.active {
    opacity: 1;
}

.process_step {
    text-align: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.process_step.active .step_circle {
    background: linear-gradient(135deg, #389EFE 0%, #0062F4 100%);
    border-color: transparent;
    color: white;
    transform: scale(0.8);
    box-shadow: 0 10px 30px rgba(0, 98, 244, 0.5);
}

.process_step.active .step_circle:after {
    border-color: rgba(0, 99, 246, 0.4);
}

.step_circle:after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.step_circle {
    width: 136px;
    height: 136px;
    background: #ffffff;
    border: 4px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-family: 'pretendard';
    font-weight: 700;
    color: #999999;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.step_circle+h2 {
    font-size: 20px;
    margin-top: 20px;
    color: var(--color-primary);
}

.step_circle+h2+p {
    margin-top: 7px;
}

.step_num {
    position: absolute;
    bottom: 2.555556%;
    left: 2.571429%;
    font-size: 1rem;
    font-weight: 600;
}

.step_titnum {
    color: #7CB688;
}

.step_num .dot {
    display: inline-block;
    width: .3125rem;
    height: .3125rem;
    background-color: #7CB688;
    border-radius: 100%;
    margin: 0 .375rem;
    vertical-align: middle;
}

/* nav */

section {
    min-height: 100vh;
    /* 각 섹션을 화면 크기만큼 확보 */
}

.section_intro_txt_in {
    background: var(--color--bg1);
}

#intro {
    margin-top: 100px;
    padding: 0px 100px;
    display: flex;
    /* flex 레이아웃 */
    flex-direction: column;
    /* 세로 방향으로 배치 */
    justify-content: center;
    /* 세로 중앙 정렬 */
    align-items: center;
    text-align: center;
}

#intro .img,
#intro_2 img {
    height: 60vh;
}

#intro_2 {
    padding: 0px 100px;
    display: flex;
    /* flex 레이아웃 */
    flex-direction: column;
    /* 세로 방향으로 배치 */
    justify-content: center;
    /* 세로 중앙 정렬 */
    align-items: flex-start;
    text-align: left;
    transform: translateY(-140px);
}

#intro_2 .con img {
    margin-top: 80px;
}


p {
    margin-top: 30px;
}

.site-header {
    position: fixed;
    /* 상단 고정 */
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #eee;
    z-index: 1000;
    vertical-align: middle;
}

.gnb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 100px;

}

.gnb h1 {
    font-family: var(--font-ko);
    line-height: 0;

}

.site-header nav a {
    font-family: var(--font-ko);
    line-height: 0;
    font-weight: 700;
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

.pin-section {
    position: relative;
    overflow: hidden;
}

.bg-words {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40vh;
    transform: translateY(90vh);
    opacity: 0.05;
    font-weight: 900;
    pointer-events: none;
    z-index: 1;
    padding: 0 100px;
}

.bg-words h2 {
    font-size: 10vw;
    color: rgba(17, 113, 239);
}

.txt_right {
    text-align: right;
}

.txt_left {
    text-align: left;
}

.pin-section h1,
.pin-section p {
    position: relative;
    z-index: 2;
    transition: text-align 0.4s ease;
}

.pin-section h2.align-left {
    text-align: left;
}

.after {
    min-height: 100vh;
    display: grid;
    place-content: center;
    background: #111;
}

.pin-section h1,
.pin-section p {
    position: relative;
    z-index: 2;
    transition: text-align 0.4s ease;
}

.pin-section h2.align-left {
    text-align: left;
}

#contact {
    height: 50vh
}

.site-footer ul {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    font-family: 'pretendard';
}

.site-footer ul li:after {
    content: '';
    width: 1px;
    height: 12px;
    background: #fff;
    display: inline-block;
    margin-left: 12px;
}

.site-footer ul li:last-child:after {
    display: none;
}

.site-footer {
    background: #000;
    padding: 24px 100px;
}

.site-footer * {
    color: #fff;
}

.site-footer h6 {
    font-size: 1.875rem;
}

.footer_flx {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.footer_flx p {
    width: 48%;
}


.site-footer p {
    opacity: 0.5;
    font-size: 0.75rem;
}


body {
    --bg-color: white;
    background-color: var(--bg-color);
}

/* 1) 섹션과 무대 높이 확보 */

.big {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
}

#section_6 {
    /* 스크롤할 여유를 만들어 sticky가 ‘붙어’ 보이게 */
    min-height: 250vh;
    /*display: grid;*/
    place-items: start center;
    padding-top: 8vh;
    padding-bottom: 100vh;
    margin-top: 400px;
    padding-right: 100px;
    padding-left: 100px;
}

.card_wrap {
    position: relative;
    height: 50vh;
    margin-top: 30px;
}

.card_wrap+div {
    width: 40%;
}

/* 2) 카드들을 sticky + 겹침 오프셋 */
.card_1,
.card_2,
.card_3 {
    position: sticky;
    min-height: 50vh;
    box-sizing: border-box;
}

.card_inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.card_inner img {
    width: 100%;
}

/* 겹쳐 보이게 음수 마진 (오프셋) + 레이어 순서 */
.card_1 {
    z-index: 3;
    bottom: 12vh;
    background-image: url(/assets/img/bgbg.png);
    background-size: cover;

}

.card_2 {
    background-image: url(/assets/img/bgbg2.png);
    background-size: cover;

}

.card_wrap h1 {
    /*margin-top: -100px;
    min-width: 548px;*/
    margin-top: -120px;
}

.card_2 {
    z-index: 2;
    bottom: 7vh;
    margin-top: 55px;
}

.card_3 {
    z-index: 1;
    bottom: 1vh;
    margin-top: 104px;
}


.material-symbols-outlined {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

.review_wrap {
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.review {
    border: 1px solid #E8E8EB;
    padding: 24px 20px;
    width: 484px;
    height: 274px;
    border-radius: 22px;
    text-align: left;
    box-sizing: border-box;
    box-shadow: 0 20px 30px 0 rgba(209, 213, 217, 0.15);

}

.review_body {
    font-size: 20px;
    color: #000;
    line-height: 140%;
    margin-top: 10px;
    padding-bottom: 14px;
    font-weight: 500;
    border-bottom: 1px solid #E8E8E8;
}

.badge {
    background: #F0F9FF;
    padding: 6px;
    border-radius: 4px;
    display: inline-block;

}

.badge p {
    color: #175CD3;
    font-weight: 700;
    margin: 0;
}

.consulting_now {
    overflow: hidden;
box-sizing:border-box;
}

.consulting_now_con {
    border-bottom: 1px solid #ebebeb;
    display: grid;
    grid-template-columns: 100px 150px 150px 100px;
    /* 열 크기: 시간 / 이름 / 금액 / 상태 */
    column-gap: 150px;
    padding: 20px;
    align-items: center;
    text-align: center;
    margin-left: 100px;
    margin-right: 100px;

    /* 가운데 정렬 */
}

/* === [NOW 리스트 애니메이션 전용 추가 CSS] === */
#now .consulting_now_list {
    display: flex;
    flex-direction: column;
    width: 100%;
    will-change: transform;
    transition: transform .45s ease;
}

@media (prefers-reduced-motion: reduce) {
    #now .consulting_now_list {
        transition: none;
    }
}

.consulting_now h6 {
    font-weight: 600;
    vertical-align: middle;
    min-width: 70px;
}


.red {
    color: red;
}

.badge_green {
    background-color: #45D848;
    padding: 8px;
    border-radius: 4px;
    display: inline-block;
}

.badge_red {
    background-color: red;
    padding: 8px;
    border-radius: 4px;
    display: inline-block;
}

.badge_green p,
.badge_red p {
    color: white;
    font-weight: 700;
    margin: 0;
	font-size:1rem;
}

.contact_wrap {
    margin-top: 60px;
    display: flex;
    justify-content: space-evenly;
    padding: 0px 100px;
    gap: 20px;
}

.contact_con {
    display: flex;
    justify-content: space-between;
    background-color: white;
    width: 484px;
    border-radius: 22px;
    padding: 50px 40px;
    box-sizing: border-box;

}

.contact_con p {
    margin-top: 10px;
}

.marquee {
    display: flex;
    white-space: nowrap;
}

.marquee_inner {
    display: flex;
    gap: 16px;
    /* 카드 간격 */
    animation: marquee 30s linear infinite;
}

/* .card_img_wrap{display: none;} */
.marquee_inner_2 {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    /* 카드 간격 */
    animation: marquee-right 30s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
        /* 절반 만큼 이동 */
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.review_bottom h6 {
    padding-left: 10px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.50);
    font-family: Pretendard;
    font-weight: 600;
}

.review_bottom {
    display: flex;
    align-items: center;
}

.avatar {
    background-color: #E3F6E4;
    width: 48px;
    height: 48px;
    border-radius: 80px;
    padding: 5px 0;
    box-sizing: border-box;
    border: 1px solid #90c79b6f;
    margin-top: 12px;
}

.avatar span {
    font-size: 32px;
    text-align: center;
    display: block;
    color: #90C79B;
}


#now {
    /* background-image: url(/assets/img/section_8.png); */
    background-size: cover;
    background-position: center center;
}

#now,
#contact {
    min-height: 70vh;
}


.consulting_now {
    width: 1220px;
    height: 580px;
    border-radius: 20px;
    background-color: white;
    margin: 0 auto;
    border: 10px solid rgba(238, 238, 238, 0.80);
    font-family: Pretendard;
}

section {
    padding: 150px 20px;
}

#contact {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-flow: column;
    gap: 20px;
}

#contact p {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}

.primary_btn {
    display: flex;
    justify-content: center;
    align-items: middle;

    border-radius: 40px;
    padding: 14px 20px;
    background: linear-gradient(90deg, #207BE2 0%, #0267FD 100%);
    cursor: pointer;
}
.primary_btn p{
 font-size: clamp(1rem, 1.5vw, 1rem);
}

.primary_btn img {
    width: 26px;
    height: 26px;
    margin-right: 8px
}

.primary_btn:hover {
    background: rgb(21, 95, 180) 0%;

}

#contact_2 h1 {
    text-align: center;

    -webkit-text-fill-color: #fff;
}

.primary_btn P {
    margin: 0;
    color: #fff;
}

#contact_2 {
    background-image: url(/assets/img/bg_cirle.png??2022);
    background-size: contain;
  background-repeat: no-repeat;
    background-position: center bottom;
    min-height: 70vh;
}

.card_box_wrap {
    max-width: 1064px;
    margin: 0 auto;
    justify-content: center;

}



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


    nav {
        display: none;
    }

    .flx {
        flex-direction: column;
        margin-top: 120px;
    }

    /**section08**/
    .consulting_now {
        width: 100%;
    }

}

@media screen and (min-width: 769px) and (max-width: 1024px) {
.gnb{ padding: 6px 16px }
.contact_wrap{padding:0;}
.contact_wrap p{font-size:16px;}

    .site-footer {
        padding: 40px 20px;
    }

    .card_box {
        width: 36%;
    }


    /**section06**/
    #section_6 {
        padding-right: 20px;
        padding-left: 20px;
    }

    .card_1,
    .card_2,
    .card_3 {
        padding: 60px;
    }

    .con img {
        width: 80%;
    }

    .card_img {
        width: 100%;
    }

}

@media screen and (max-width: 768px) {
.m_hide{ display: none;}
    .bg-words h2 {
    font-size: 50px;
}

    .card_img {
        width: 100%;
    }

    .card_img_wrap::before,
    .card_img_wrap::after {
        display: none;
    }

    .consulting_now_con {
        grid-template-columns: minmax(40px, 0.9fr) minmax(40px, 1.2fr) minmax(80px, 1fr) auto;
        column-gap: clamp(4px, 2.5vw, 12px);
        padding: clamp(6px, 2.5vw, 12px);
        align-items: center;
        margin-left: 4px;
        margin-right: 4px;
	

    }

    #intro {
        padding: 0px 16px;
    }


    /**section02**/
    section {
        padding: 60px 20px;
    }

    #intro_2 .con img {
        height: auto;
    }

    #intro_2 {
        padding: 0 16px
    }

    .flx {
        flex-direction: column;
        margin-top: 100px;
    }

    nav {
        display: none;
    }

    .gnb,
    .site-footer {
        padding: 20px 16px;
    }

    nav a {
        display: none;
    }

    .card_box {
        width: 30%;
	padding:30px;
    }
     .card_box .txt_area p{
	max-width:60%;
	letter-spacing: -1px;	
}


    /**section05**/
    #process {
        margin-top: 60px;
    }

    .process_line {
        display: none;
    }

    .process_steps {
        display: block;
    }

    .step_circle {
        width: 80px;
        height: 80px;
    }

    .process_step.active {
        margin-top: 40px;
    }

    .step_circle+h2+p {
        margin-top: 8px;
    }

    /**section06**/
    #section_6 {
        min-height: 200vh;
        padding-bottom: 0vh;
        padding-right: 16px;
        padding-left: 16px;
        margin-top: 100px;
    }

    #now,
    #contact {
        min-height: 40vh;
    }

    .card_1,
    .card_2,
    .card_3 {
        border-radius: 20px;
        padding: 20px;
        height: 350px;
    }

    .card_inner>div {
        width: 100%;
   text-align:center;
    }

.card_inner {
    flex-direction: column;
    
}

.step_num{ text-align:left!important;}

    .card_inner img {
margin: 0 auto;
        width: 45%;
        display: block;
	padding-bottom: 20px;
    }

    /**section10**/
    .contact_wrap {
        flex-direction: column;
    }

.card_wrap h1{margin-top: 0px;}

    .contact_con {
        width: 100%;
    }

}

@media screen and (max-width: 680px) {
    section#intro {
        min-height: 60vh;
    }

    section {
        min-height: auto;
    }

    .card_box {
        width: 100%;
    }

    .footer_flx p {
        width: 100%;
    }

    #intro .img,
    #intro_2 img {
        width: 100%;
        height: auto;
    }

    #intro_2 .con img {
        margin-top: 40px;
    }

    .contact_wrap {
        padding: 0;
    }


    .footer_flx p:last-child {
        margin-top: 10px;
    }
}
/**모바일 우측여백 침범방지**/
@media (max-width: 768px){
#process {
    padding-top: 2vh;
}

  #section_6{ padding-inline: 16px; }
  .card_wrap{ max-width: 100%; margin: 20px auto; }
  .card_1, .card_2, .card_3{ padding: 20px; }

    #section_6 .card_2 h1{
    white-space: normal;
    word-break: keep-all;      /* 한국어 단위 유지 */
    overflow-wrap: normal;     /* anywhere 해제 */
    line-height: 1.25;
  }
.br-m{
    display: block;            
    width: 100%;
    height: 0;
  }

  .site-header .gnb{
    display: flex;
    align-items: center;    
    padding: 10px 12px;
    gap: 8px;
    min-height: 48px;       
  }

  /* 로고 크기 축소 (폭/높이 자동 비율) */
  .logo img {
    height: clamp(18px, 4.5vw, 24px);
    width: auto;

  }

  /* 전화 버튼: 한 줄 유지 + 크기 축소 */
  .primary_btn {
    display: flex;                
    align-items: center;           
    justify-content: center;       
    gap: 6px;
    padding: 8px 12px;             
    border-radius: 9999px;
    white-space: nowrap;           
  }
  .primary_btn img {
    width: clamp(14px, 3.8vw, 18px);
    height: clamp(14px, 3.8vw, 18px);
  }
  .primary_btn p {
    font-size: clamp(12px, 3.6vw, 14px); 
    line-height: 1;                      
  }

  /*줄바꿈 시도 방지용*/
  .site-header a[aria-label^="전화"] { flex-shrink: 0; }
  .logo { flex: 0 0 auto; }


}