@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
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;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
html {
    overflow-y: scroll;
    box-sizing: border-box;
    font-size: 62.5%;
}
body {
    line-height: 1;
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: none;
    font-family: "Inter", "Roboto", sans-serif !important;
    background: var(--indexBg);
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
a {
    text-decoration: none;
    display: flex;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
img {
    width: 100%;
}
button {
    color: #333;
    border: 0;
    background: none;
    padding: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
body.modal-open {
    overflow: visible !important;
}

body.modal-open[style] {
    padding-right: 0 !important;
}

.modal {
    background-color: rgba(0, 0, 0, 0.7) !important;
}
.no-scroll {
    overflow: hidden;
    height: 100%;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}
.pc {
    display: flex;
}
.mb {
    display: none;
}
@media (max-width: 980px) {
    .pc {
        display: none;
    }
    .mb {
        display: flex;
    }
}
.con {
    flex: 1;
    padding: 0 0 7.5rem 28rem;
    min-height: 100vh;
    position: relative;
    transition: 0.5s;
    container-name: contain_box;
    contain: inline-size;
}
.con.on {
    padding: 0 0 7.5rem 8rem;
    transition: 0.5s;
}
.wrap {
    display: flex;
}

.modal {
    background-color: rgba(255, 255, 255, 0) !important;
}
.modal-lg,
.modal-xl {
    max-width: 2560px;
    padding-left: 100px;
}
.slick-slide {
    width: 100vw;
    min-height: 50vh;
}
.mod_close {
    max-width: 50px;
}
.modal-header {
    display: flex;
    justify-content: flex-end;
    border: 0;
}
.modal-footer {
    border: 0;
}
.slick-initialized .slick-slide {
    padding: 0 10px;
    opacity: 0.2;
}
.slick-active.slick-center {
    opacity: 1;
}

.strategy_page {
    display: grid;
    grid-template-columns: 35rem 1fr;
    gap: 1rem;
}

/* 모바일일 때 (예: 768px 이하) */
@media (max-width: 768px) {
    .strategy_page {
        grid-template-columns: 1fr; /* 한 줄로 세로 배치 */
    }
    .strategy_left_panel,
    .strategy_center_panel {
        width: 100%;
    }
}