/*
@font-face {
    font-family: 'NanumBarunGothic';
    src: url('https://cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWeb.woff') format('woff'),
         url('https://cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWeb.eot');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'NanumBarunGothic';
    src: url('https://cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWebBold.woff') format('woff'),
         url('https://cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWebBold.eot');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'NanumBarunGothic';
    src: url('https://cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWebLight.woff') format('woff'),
         url('https://cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWebLight.eot');
    font-weight: 300;
    font-display: swap;
}
*/

@font-face {
    font-family: 'Cafe24Surround';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/Cafe24Ssurround.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

h1,
h2,
h3,
h4 {
    display: block !important;
}

html,
body,
.page_content {
    /*font-family: 'NanumBarunGothic', sans-serif !important;*/
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    word-break: keep-all;
    color: #333;
}

.section {
    padding: 80px 0;
    background-position: center;
    background-size: cover;
}

.container {
    /* max-width: 1080px; */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.display-font {
    font-family: 'Cafe24Surround', 'NanumBarunGothic', sans-serif;
}

.memoment-font {
    font-family: "Gamja Flower", sans-serif;
    font-weight: 400;
    font-style: normal;
}


/* COMMON */
.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-center {
    justify-content: center;
}

.justify-self-start {
    justify-self: start;
}

.justify-self-end {
    justify-self: end;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.ms-auto {
    margin-left: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-24 {
    margin-top: 24px !important;
}

.mt-40 {
    margin-top: 40px;
}

.border-radius-8 {
    border-radius: 8px !important;
}

.border-radius-12 {
    border-radius: 12px !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.line-height-1 {
    line-height: 1;
}

.section-title {
    /* font-size: 28px; */
    font-size: 30px;
    font-weight: 700;
    /* margin-bottom: 16px; */
    margin-bottom: 24px;
    line-height: 1.3;
}

.section-description {
    /* font-size: 14px; */
    font-size: 16px;
    max-width: 600px;
    word-break: keep-all;
    line-height: 1.6;
}

/* GRID UTILS */
.card-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.two-by-two-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.card-flex-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    /* font-family: system-ui, -apple-system, sans-serif; */
    line-height: 1;
    text-decoration: none;
    padding: 6px 12px;
    font-weight: 700;
}

.badge svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.fill-current {
    fill: currentColor;
    width: 1em;
    height: 1em;
}


/* SIZE MODIFIERS */
.badge-lg {
    padding: 12px 16px;
    font-size: 28px;
    gap: 2px;
    letter-spacing: 1px;
}

.badge-md {
    padding: 8px 16px;
    font-size: 16px;
    gap: 2px;
}

.badge-sm {
    padding: 4px 10px;
    font-size: 12px;
    gap: 2px;
}

/* THEME/COLOR MODIFIERS */
.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.text-orange {
    color: #ff7600;
}

.text-light-orange {
    color: #ffa800;
}

.text-dark-brown {
    color: #894b1e;
}

.text-light-brown {
    color: #c2885b;
}

.bg-dark-brown {
    background-color: #894b1e;
}

.bg-sky-blue {
    background-color: #daf3ff;
}

.bg-tangerine {
    background-color: #ffebd5;
}

.badge-orange {
    background-color: #ff7600;
    color: #ffffff;
}

.badge-black {
    background-color: #333333;
    color: #ffffff;
}

.badge-blue {
    color: #ffffff;
    background-color: #003fbc;
}

.badge-yellow {
    color: #333;
    background-color: #ffdd4a;
}

.checkbox {
    display: flex; 
    gap: 8px; 
    align-items: center;
    font-size: 14px;
}

.checkbox svg {
    fill: currentColor;
    width: 1em;
    height: 1em;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* MEDIA QUERY */
@media (min-width: 897px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 896px) {
    .section {
        padding: 40px 0;
    }

    .card-grid {
        margin-top: 24px;
        gap: 24px;
    }

    .section-title {
        margin-bottom: 8px;
        /* font-size: 24px; */
        font-size: 26px;
    }

    .desktop-only {
        display: none !important;
    }

    .checkbox {
        font-size: 13px;
    }
}


@media (max-width: 480px) {
    .card-grid {
        margin-top: 16px;
        gap: 16px;
    }
}