@charset "UTF-8";

:root {
    --bg: #f7f7f7;
    --text: #222;
    --muted: #a9a9a9;
    --border: #e1e1e1;
    --surface: #ffffff;
    --blue: #26a9de;
    --blue-dark: #006296;
    --blue-soft: rgba(38, 169, 222, 0.12);
    --accent: rgba(255, 242, 94, 0.9);
    --radius-lg: 2.4rem;
    --radius-md: 2rem;
    --header-inner: 9rem;
    --gnb: 6rem;
}

.no-scroll {
    overflow: hidden;
}

.pc-only {
    display: block;
}

.mobile-only {
    display: none;
}

.sr-only {
    position: absolute;
    width: 0.1rem;
    height: 0.1rem;
    padding: 0;
    margin: -0.1rem;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.skip-link {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 9999;
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    background: #111827;
    color: #fff;
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

.section-inner {
    max-width: 128rem;
    width: 100%;
    margin: 0 auto;
}

/* 헤더 */
.header {
    background: #fff;
    border-bottom: 0.1rem solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scroll-down {
    transform: translateY(calc(-1 * var(--header-inner) - var(--gnb) - 0.1rem));
    transition: transform 0.6 cubic-bezier(0.4, 0, 0.2, 1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0;
    height: var(--header-inner);
    max-width: 128rem;
    margin: 0 auto;
    transition: height 0.4s ease;
}

.gnb {
    max-width: 128rem;
    margin: 0 auto;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 99;
}

.mobile-menu-btn > div {
    width: 1.9rem;
    height: 0.2rem;
    background: #303030;
}

.mobile-menu-btn > div:nth-child(2) {
    background: #303030;
    width: 1.2rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 40%;
    min-width: 28.5rem;
    background: #fff;
    height: 100vh;
    z-index: 100;
    padding-top: 5.7rem;
    transition: right 0.6s ease;
    overflow-y: scroll;
}

.mobile-menu::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu > ul > li:nth-child(even) {
    background: #f8f9f9;
}

.mobile-menu > ul > li > a {
    display: flex;
    font-size: 1.6rem;
    padding: 2.4rem 3rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.04rem;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.mobile-menu .menu-item {
    position: relative;
}

.mobile-menu .menu-item:has(.menu-dropdown) > a {
    position: relative;
}

.mobile-menu .menu-item:has(.menu-dropdown) > a::after {
    content: "";
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    background: url("../../assets/img/common/ico-dropdown-arrow.svg") center/contain no-repeat;
    width: 1.1rem;
    height: 0.7rem;
    transition: transform 0.2s ease-in-out;
}

.mobile-menu .menu-item.active > a {
    background-color: var(--blue);
    color: #fff;
}

.mobile-menu .menu-item.active > a::after {
    background-image: url("../../assets/img/common/ico-dropdown-arrow-wh.svg");
}

.mobile-menu .menu-item.active:has(.menu-dropdown) > a::after {
    transform: translateY(-50%) rotate(0);
}

.mobile-menu .menu-dropdown {
    display: none;
    overflow: hidden;
    padding: 0;
    background: #f8f9f9;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.mobile-menu .menu-dropdown > li {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.04rem;
}

.mobile-menu .menu-dropdown > li.is-active {
    color: var(--blue);
}

.mobile-menu .menu-dropdown > li > a {
    display: flex;
    padding: 0.8rem 3rem;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 1.4rem;
    right: 2rem;
    width: 3.2rem;
    height: 3.2rem;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
}

.mobile-menu .close-btn::before,
.mobile-menu .close-btn::after {
    content: "";
    position: absolute;
    width: 2.6rem;
    height: 0.2rem;
    background: #303030;
    transition: background-color 0.2s ease-in-out;
}

.mobile-menu .close-btn::before {
    transform: rotate(45deg);
}

.mobile-menu .close-btn::after {
    transform: rotate(-45deg);
}

.mobile-menu .close-btn:hover::before,
.mobile-menu .close-btn:hover::after {
    background: #303030;
}

.mobile-menu-dimmed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    height: 100vh;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    cursor: pointer;
}

.mobile-menu-dimmed.open {
    opacity: 0.6;
    pointer-events: auto;
}

.logo-area {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    width: 20rem;
    transition: 0.4s;
}

.logo-text {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    font-weight: 400;
    font-size: 3rem;
    color: #191919;
    font-family: "Spectral", "Times New Roman", serif;
    font-style: italic;
}

.header-quick-links-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-quick-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 1.6rem;
    border-radius: 99.9rem;
    height: 4.4rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: -0.064rem;
    position: relative;
    overflow: hidden;
}

.header-quick-links::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 30%,
        rgb(255, 255, 255) 50%,
        rgba(255, 255, 255, 0.5) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(0);
    opacity: 0;
    pointer-events: none;
}

.header-quick-links:hover::before {
    animation: header-quick-shimmer 0.8s ease-out;
}

.header-quick-links.home {
    background: linear-gradient(90deg, #57b7e0, #7557e0);
}

.header-quick-links.center {
    background: linear-gradient(90deg, #30b5fe, #167cf9);
}

.header-quick-links.tv {
    background: linear-gradient(90deg, #5773e0, #1a3ce5);
}

.header-quick-links.talk {
    background: linear-gradient(90deg, #e0575a, #ef070b);
}

.header-quick-links .ico-box {
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 99.9rem;
    flex-shrink: 0;
}

.header-quick-links .ico-box img {
    width: auto;
    height: auto;
}

.header-quick-links .text-box {
    letter-spacing: -0.064rem;
    font-weight: 400;
}

@keyframes header-quick-shimmer {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    100% {
        transform: translateX(360%);
        opacity: 0;
    }
}

.header-gnb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 1.2rem 0;
    height: 6rem;
}

.gnb-list {
    display: flex;
    align-items: center;
}

.gnb-item {
    position: relative;
}

.gnb-link {
    position: relative;
    font-size: 1.7rem;
    color: #333;
    padding: 0;
    border-radius: 0;
    letter-spacing: -0.068rem;
    display: block;
    height: 6rem;
    line-height: 6rem;
    padding: 0 1.5rem;
}

.gnb-link::before {
    display: block;
    content: "";
    width: 0;
    height: 3px;
    position: absolute;
    left: 50%;
    bottom: -0.1rem;
    transform: translateX(-50%);
    background: #26a9de;
    transition: width 0.3s ease-in-out;
}

.gnb-link.is-active {
    color: var(--blue);
}

.gnb-link.is-active::before,
.gnb-link:hover::before {
    width: calc(100% - 3rem);
}

.gnb-dropdown {
    position: absolute;
    top: calc(100% + 0.1rem);
    left: -1.6rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.15);
    min-width: 16rem;
    z-index: 100;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
        opacity 0.3s ease-in-out,
        transform 0.3s ease-in-out;
}

.gnb-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.gnb-item:has(.gnb-dropdown.open) .gnb-link::before {
    width: calc(100% - 3rem);
}

.gnb-dropdown-link {
    display: block;
    width: 19rem;
    padding: 1.3rem 1.6rem;
    font-size: 1.5rem;
    color: #404040;
    letter-spacing: -0.06rem;
    text-align: center;
    border-bottom: 1px solid #e1e1e1;
    transition:
        background 0.1s ease-in-out,
        color 0.1s ease-in-out;
}

.gnb-dropdown-link:hover,
.gnb-dropdown-link.is-active {
    background: var(--blue);
    text-decoration: none;
    color: #fff;
}

.gnb-dropdown-link:last-child {
    border-bottom: 0;
}

.header-search {
    display: flex;
    align-items: center;
}

.header-search .search-box form {
    display: inline-flex;
    align-items: center;
    width: 21.8rem;
    padding: 0.8rem 1.2rem;
    border-radius: 99.9rem;
    border: 0.1rem solid var(--border);
    background: #ffffff;
    gap: 1rem;
    transition: border-color 0.2s ease;
}

.header-search .search-box:hover form,
.header-search .search-box:has(.search-input:focus) form,
.header-search .search-box:has(.search-input:active) form {
    border-color: var(--blue);
}

.header-search .search-box:hover form .search-submit-btn svg path,
.header-search .search-box:has(.search-input:focus) form .search-submit-btn svg path,
.header-search .search-box:has(.search-input:active) form .search-submit-btn svg path {
    fill: var(--blue);
}

.header-search .search-box input {
    order: 2;
}

.header-search .search-box button {
    order: 1;
}

.header-search .search-input {
    width: 100%;
    flex: 1;
    border: 0;
    background: transparent;
    outline: none;
    font-size: 1.6rem;
    color: #191919;
    font-weight: 300;
    letter-spacing: -0.064rem;
    padding: 0;
    border-radius: 0;
}

.header-search .search-input::-moz-placeholder {
    color: #a9a9a9;
}

.header-search .search-input::placeholder {
    color: #a9a9a9;
}

.header-search .search-icon {
    width: 2.4rem;
    height: 2.4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-search .search-icon svg path {
    transition: fill 0.2s ease;
}

/* 푸터 */
.site-footer {
    margin-top: 0;
    color: #fff;
}

.footer-top {
    background: #222;
    padding: 4rem 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
    max-width: 128rem;
    margin: 0 auto;
}

.footer-info {
    flex: 1;
}

.footer-logo {
    width: 20rem;
    height: 5.3rem;
    margin-bottom: 1.6rem;
    border-radius: 0.4rem;
}

.footer-text-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    font-size: 1.6rem;
    color: #929292;
    letter-spacing: -0.04rem;
    line-height: 2.88rem;
}

.footer-text-group > div {
    display: flex;
    gap: 2rem;
}

.footer-text {
    margin: 0;
    display: inline;
}

.footer-latest {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 48.9rem;
}

.footer-latest .basic-list .basic-list-title {
    color: #fff;
}

.footer-latest .basic-list .basic-list-item::before,
.footer-latest .basic-list .basic-list-item::after {
    display: none;
}

.footer-swiper-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.footer-swiper {
    flex: 1;
    overflow: hidden;
}

.footer-swiper-item {
    display: grid;
    grid-template-columns: 3.3rem 1fr 12rem;
    gap: 2.4rem;
    align-items: start;
    padding: 1rem 0;
}

.footer-swiper-item .basic-list-title {
    color: #fff;
}

.footer-swiper-button {
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    background: rgba(31, 31, 31, 0.8);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.footer-swiper-button:hover {
    background: rgb(31, 31, 31);
}

.footer-swiper-button:hover svg path {
    fill-opacity: 1;
}

.footer-swiper-button svg {
    width: 100%;
    height: 100%;
}

.footer-swiper-button svg path {
    transition: fill-opacity 0.3s ease;
}

.footer-nav-btn {
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    background: #191919;
    padding: 2rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    margin: 0;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-btn {
    display: flex;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 0.6rem;
    border: 1px solid #444;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
    transition: border-color 0.3s ease;
}

.footer-social-btn svg path {
    transition: fill-opacity 0.3s ease;
}

.footer-social-btn:hover {
    border-color: #fff;
}

.footer-social-btn:hover svg path {
    fill-opacity: 1;
}

.quick-menu {
    position: fixed;
    top: calc(var(--header-inner) + var(--gnb) + 20vh);
    right: 0;
    box-shadow: 0 -0.1rem 0.4rem rgba(0, 0, 0, 0.1);
    padding: 2.4rem 1.6rem;
    border-radius: 10px 0 0 10px;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    z-index: 5;
    transform: translateX(100%);
    opacity: 0;
    transition:
        opacity 0.3s ease,
        transform 0.6s ease;
}

.quick-menu.active {
    opacity: 1;
    transform: translateX(0);
}

.quick-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.quick-menu ul li {
    text-align: center;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #e1e1e1;
}

.quick-menu ul li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.quick-menu ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: #444;
    font-size: 1.4rem;
    line-height: 140%;
    letter-spacing: -0.28px;
    transition: color 0.3s ease;
}

.quick-menu ul li a:hover {
    color: var(--blue);
}

.quick-menu ul li i {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quick-menu ul li i .icon-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.quick-menu ul li i > svg:not(.icon-effect) {
    position: relative;
    z-index: 2;
}

.quick-menu ul li.menu-top i .icon-effect,
.quick-menu ul li.menu-call i .icon-effect,
.quick-menu ul li.menu-reserve i .icon-effect {
    left: calc(50% + 0.6rem);
    top: calc(50% - 0.6rem);
}

.quick-menu ul li.menu-online i .icon-effect {
    left: calc(50% + 0.8rem);
    top: calc(50% - 0.8rem);
}

/* basic-list */
.basic-list {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.basic-list-items {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    position: relative;
}

.basic-list-item > a {
    display: grid;
    grid-template-columns: 3.3rem 1fr 12rem;
    gap: 4rem;
    align-items: start;
    padding: 1rem 0;
    position: relative;
    padding-bottom: 2rem;
    margin-top: -1px;
}

.basic-list-item > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.1rem;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgb(225, 225, 225) 30%,
        rgb(225, 225, 225) 70%,
        transparent 100%
    );
    pointer-events: none;
}

.basic-list-item > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.1rem;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgb(225, 225, 225) 30%,
        rgb(225, 225, 225) 70%,
        transparent 100%
    );
    pointer-events: none;
}

.basic-list-item > a:hover .basic-list-no {
    color: #000;
}

.basic-list-item > a:hover .ico-box .ico {
    animation: ico-img-hover 0.5s ease-in-out;
}

.ad-banner-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ad-banner-area .ad-banner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ad-banner-area .ad-banner .img-box {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ad-banner-area .ad-banner .text-box p {
    color: #b5b5b5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.flag-type {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 3.7rem;
    color: #fff;
    padding: 0.4rem 1.2rem;
    font-size: 2.4rem;
    font-weight: 500;
}

.flag-type.blue {
    background: #486eeb;
}

.flag-type.blue::after {
    background: #486eeb;
}

.flag-type.sky {
    background: #26a9de;
}

.flag-type.sky::after {
    background: #26a9de;
}

.flag-type::after {
    content: "";
    width: 0.6rem;
    height: 3.7rem;
    margin-left: 0;
    position: absolute;
    right: -1.2rem;
}

.badge-box {
    display: flex;
    gap: 1rem;
}

.tag-box {
    display: flex;
    gap: 0.6rem;
}

.badge-type {
    display: inline-flex;
    padding: 0.4rem 1.2rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border: 1px solid #303030;
    color: #303030;
    border-radius: 100rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.072rem;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
}

.badge-type.blue {
    color: #486eeb;
    border-color: #486eeb;
}

.badge-type.sky {
    color: var(--blue);
    border-color: var(--blue);
}

.tag-box .badge-type {
    font-size: 1.7rem;
    padding: 0.5rem 1.4rem;
    font-weight: 500;
}

.tag-box .badge-type.tag-title {
    background: var(--blue);
    color: #fff;
}

.tag-box button {
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.tag-box button:hover {
    background: var(--blue);
    color: #fff;
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: "Pretendard", sans-serif;
}

.btn.radius {
    padding: 0.8rem 1.2rem;
    border-radius: 100rem;
    font-size: 1.6rem;
    color: #676767;
    background: rgba(0, 0, 0, 0.05);
}

.btn.submit {
    background: var(--blue);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 0.6rem;
}

.btn .ico {
    width: 1.6rem;
    height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn p {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn .reply-count,
.btn .view-count {
    display: inline-block;
}

.share-box {
    position: relative;
    display: flex;
    align-items: center;
}

.share-box .share-icon-box {
    display: flex;
    gap: 0.6rem;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-left: 1rem;
}

.share-box .share-icon-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 100%;
    opacity: 0;
    transform: translateX(-20px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.share-box .share-icon-box .share-icon-facebook {
    background: #516eab;
}

.share-box .share-icon-box .share-icon-twitter {
    background: #29c5f6;
}

.share-box .share-icon-box .share-icon-instagram {
    background: linear-gradient(218deg, #6749d1 12.28%, #e2239c 47.92%, #f7248a 65.74%, #fdd365 83.56%);
}

.share-box .share-icon-box .share-icon-kakao {
    background: #f9e000;
}

.share-box .share-icon-box .share-icon-pinterest {
    background: #ca212a;
}

.share-box .share-icon-box .share-icon-link {
    background: #7bbf6a;
}

.share-box.active .share-icon-box {
    opacity: 1;
    pointer-events: auto;
}

.share-box.active .share-icon-box a {
    opacity: 1;
    transform: translateX(0);
}

.share-box.active .share-icon-box a:nth-child(1) {
    transition-delay: 0s;
}

.share-box.active .share-icon-box a:nth-child(2) {
    transition-delay: 0.2s;
}

.share-box.active .share-icon-box a:nth-child(3) {
    transition-delay: 0.4s;
}

.share-box.active .share-icon-box a:nth-child(4) {
    transition-delay: 0.6s;
}

.share-box.active .share-icon-box a:nth-child(5) {
    transition-delay: 0.8s;
}

.share-box.active .share-icon-box a:nth-child(6) {
    transition-delay: 1s;
}

.share-box .btn {
    flex: 1 0 auto;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.share-box .btn svg path {
    transition:
        fill-opacity 0.2s ease,
        fill 0.2s ease;
}

/* 게시판 */
.board-view {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.board-view .board-head {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.board-view .board-head .title-box .title {
    font-size: 3.2rem;
    line-height: 120%;
}

.board-view .board-head .board-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.board-view .board-head .board-info .btn {
    gap: 0.4rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.board-view .board-head .sub-navi a:hover {
    color: #000;
}

.board-view .board-content {
    position: relative;
    padding-bottom: 4rem;
    line-height: 1.4;
    font-weight: 300;
}

.board-view .next-prev-box .thumb-label {
    font-size: 1.6rem;
}

.board-view .next-prev-box .thumb-title {
    font-size: 2rem;
    flex: 0 0 4.8rem;
    max-height: 4.8rem;
}

.entry-content p {
    margin-bottom: 1em;
}
.entry-content p:last-child {
    margin-bottom: 0;
}
.entry-content strong {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0.6em;
    font-size: 1.1em;
}
.entry-content details summary {
    margin-bottom: 0.4em;
}
.entry-content details p {
    font-size: 0.8em;
    padding-left: 1em;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.3;
    font-weight: 600;
}
.entry-content h1 {
    font-size: 2em;
}
.entry-content h2 {
    font-size: 1.5em;
}
.entry-content h3 {
    font-size: 1.25em;
}
.entry-content ul,
.entry-content ol {
    margin: 0 0 1em;
    padding-left: 2em;
}
.entry-content li {
    margin-bottom: 0.25em;
}
.entry-content blockquote {
    margin: 1em 0;
    padding-left: 1em;
    border-left: 4px solid #ddd;
}

.next-prev-box {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.next-prev-box .prev-box,
.next-prev-box .next-box {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 50%;
}

.next-prev-box .prev-box:hover .next-btn svg path,
.next-prev-box .prev-box:hover .prev-btn svg path,
.next-prev-box .next-box:hover .next-btn svg path,
.next-prev-box .next-box:hover .prev-btn svg path {
    fill: var(--blue);
}

.next-prev-box .prev-box .no-empty,
.next-prev-box .next-box .no-empty {
    text-align: center;
    width: 100%;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: -0.064rem;
    padding: 5rem 0;
}

.no-posts {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0;
    font-size: 2.4rem;
    font-weight: 600;
}

.line {
    position: relative;
    width: 0.1rem;
    flex-shrink: 0;
    align-self: stretch;
}

.line::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0.1rem;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgb(225, 225, 225) 30%,
        rgb(225, 225, 225) 70%,
        transparent 100%
    );
    pointer-events: none;
}

.opacity-line {
    position: relative;
    width: 100%;
}

.opacity-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.1rem;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgb(225, 225, 225) 30%,
        rgb(225, 225, 225) 70%,
        transparent 100%
    );
    pointer-events: none;
}

.reply-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.reply-area .reply-title {
    position: relative;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.reply-area .reply-title::before {
    content: "";
    width: 65%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 35%;
    right: 0;
    height: 0.1rem;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgb(225, 225, 225) 30%,
        rgb(225, 225, 225) 70%,
        transparent 100%
    );
    pointer-events: none;
}

.reply-area .reply-list {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.reply-area .reply-list-empty .no-comments {
    font-size: 1.6rem;
    font-weight: 300;
    color: #999;
    text-align: center;
    padding: 8rem 0;
}

.reply-area .reply-list .reply-item > div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e1e1e1;
}

.reply-area .reply-list .reply-item .reply-sub {
    margin: 0 0 0 4rem;
    padding: 3.4rem 0;
}

.reply-area .reply-list .reply-info {
    display: flex;
    align-items: center;
}

.reply-area .reply-list .reply-info .userId {
    font-weight: 500;
    color: #000;
}

.reply-area .reply-list .reply-info .date {
    position: relative;
    color: #999;
    font-size: 1.4rem;
    font-weight: 500;
    padding-left: 1.4rem;
}

.reply-area .reply-list .reply-info .date::before {
    display: block;
    content: "";
    width: 3px;
    height: 3px;
    background: #999;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 0.7rem;
    transform: translateY(-50%);
}

.reply-area .reply-list .reply-more {
    display: flex;
    justify-content: flex-end;
}

.reply-area .reply-list .reply-more button {
    padding: 0.4rem 1rem;
    border: 1px solid #e1e1e1;
    color: #474747;
    font-weight: 300;
    transition: border-color 0.2s ease;
}

.reply-area .reply-list .reply-more button:hover {
    border-color: #474747;
}

.reply-area .reply-list .content {
    color: #474747;
    font-weight: 300;
    line-height: 1.4;
}

.reply-area .reply-apply {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reply-area .reply-apply .input-box {
    display: flex;
    gap: 2rem;
}

.reply-area .reply-apply .btn-group {
    display: flex;
    justify-content: flex-end;
}

.reply-area .no-empty {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    color: var(--muted);
    padding: 10rem 0;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    display: none;
}

.checkbox-group input[type="checkbox"] + label {
    position: relative;
    font-size: 1.4rem;
    color: #777;
    cursor: pointer;
    display: flex;
    line-height: 1.4;
}

.checkbox-group input[type="checkbox"] + label::before {
    display: flex;
    content: "";
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    border: 1px solid #d1d5db;
    border-radius: 0.4rem;
    background: #fff;
    transition: all 0.1s ease-in-out;
    margin-right: 1rem;
    flex: 1 0 auto;
}

.checkbox-group input[type="checkbox"] + label::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 0.6rem;
    width: 0.9rem;
    height: 0.7rem;
    background: url("../../assets/img/common/ico-check-wh.svg") center/contain no-repeat;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}

.checkbox-group input[type="checkbox"]:checked + label::before {
    background: var(--blue);
    border-color: var(--blue);
}

.checkbox-group input[type="checkbox"]:checked + label::after {
    opacity: 1;
}

@keyframes ico-img-hover {
    0% {
        transform: translateY(0);
    }

    70% {
        transform: translateY(-0.6rem);
    }

    100% {
        transform: translateY(0);
    }
}

.basic-list-no {
    font-weight: 700;
    color: #d5d5d5;
    font-size: 3.2rem;
    font-family: "Poppins", sans-serif;
    font-style: italic;
    padding-top: 1.8rem;
    transition: color 0.1s ease-in-out;
}

.basic-list-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 1rem;
}

.basic-list-title {
    display: block;
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.064rem;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 4.8rem;
}

.basic-list-date {
    margin: 0;
    font-size: 1.6rem;
    color: var(--muted);
    font-weight: 400;
}

.basic-list-thumb {
    position: relative;
    width: 12rem;
    height: 12rem;
}

.basic-list-thumb .image-box {
    width: 100%;
    height: 100%;
    border-radius: 999.9rem;
    background: #e5e7eb;
    position: relative;
    overflow: hidden;
}

.basic-list-thumb .image-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.basic-list-thumb .ico-box {
    position: absolute;
    right: 0;
    top: 0;
    background: url("../../assets/img/common/list-path.svg") center/contain no-repeat;
    width: 5.9rem;
    height: 5.8rem;
}

.basic-list-thumb .ico-box .ico {
    display: block;
    position: relative;
    transform: translateY(0);
}

.basic-list-thumb .ico-box .ico.img {
    width: 1.7rem;
    height: 1.7rem;
    background: url("../../assets/img/common/ico-img.svg") center/contain no-repeat;
    top: 1rem;
    left: 3rem;
}

.basic-list-thumb .ico-box .ico.video {
    width: 0.9rem;
    height: 1.1rem;
    background: url("../../assets/img/common/ico-video.svg") center/contain no-repeat;
    top: 1.4rem;
    left: 3.6rem;
}

/* 페이지네이션 */
.pagination {
    display: flex;
    gap: 0;
    margin-top: 4rem;
    align-items: center;
    justify-content: flex-start;
    margin-left: -0.4rem;
}

.page-btn {
    width: 2rem;
    height: 2rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.7rem;
    font-size: 2rem;
    color: #333;
}

.page-btn svg path {
    transition: stroke 0.2s ease;
}

.page-btn:hover svg path {
    stroke: var(--blue);
}

.page-num {
    min-width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.4rem;
    border: 0.1rem solid #e5e5e5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: #fff;
    color: #333;
    margin: 0 0.4rem;
    letter-spacing: -0.004rem;
    transition:
        background 0.1s ease-in-out,
        color 0.1s ease-in-out,
        border-color 0.1s ease-in-out;
}

.page-num.is-active,
.page-num:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

@media (max-width: 1280px) {
    .section-inner,
    .footer-inner,
    .gnb {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .header-inner {
        padding: 0 2rem;
    }

    /* 헤더 */
    .logo-area {
        gap: 1.4rem;
    }

    .header-quick-links-group {
        gap: 1rem;
    }

    .header-quick-links-group .header-quick-links {
        min-height: 4rem;
        padding: 0.8rem 1.4rem;
    }

    .header-quick-links-group .header-quick-links .text-box {
        font-size: 1.4rem;
    }

    .basic-list-item > a {
        gap: 3rem;
    }

    .flag-type {
        font-size: 2rem;
    }

    .quick-menu {
        pointer-events: none;
    }

    .quick-menu.active {
        opacity: 0;
    }

    .badge-type {
        font-size: 1.7rem;
    }

    .board-view .board-head .title-box .title {
        font-size: 2.8rem;
    }

    /* 푸터 */
    .footer-text-group > div {
        flex-wrap: wrap;
        gap: 0 2rem;
    }
}

@media (max-width: 1024px) {
    :root {
        --header-inner: 6.8rem;
    }

    ::-webkit-scrollbar {
        display: none;
    }

    .header {
        position: sticky;
        top: 0;
        width: 100%;
    }

    .header.scroll-down {
        transform: translateY(0);
    }

    .header-quick-links-group,
    .gnb {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .logo {
        width: 15rem;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    .page-btn svg {
        width: 1.6rem;
        height: 1.6rem;
    }

    /* 푸터 */
    .footer-inner {
        flex-wrap: wrap;
        gap: 4rem;
    }

    .footer-info {
        order: 1;
    }

    .footer-latest {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-inner: 4.5rem;
    }

    .pc-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    body {
        font-size: 1.4rem;
    }

    .logo-area {
        gap: 0.6rem;
    }

    .logo {
        width: 10rem;
    }

    .container {
        padding: 0 1.8rem;
    }

    .tag-box {
        justify-content: center;
        flex-wrap: wrap;
    }

    .tag-box .badge-type {
        padding: 0.3rem 1.4rem;
    }

    .badge-type {
        font-size: 1.6rem;
    }

    .flag-type {
        font-size: 1.8rem;
        height: 3.2rem;
    }

    .flag-type::after {
        height: 3.2rem;
    }

    .share-box .share-icon-box a {
        width: 2.6rem;
        height: 2.6rem;
        padding: 0.6rem;
    }

    .share-box .share-icon-box a svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .board-view .board-head {
        gap: 1.2rem;
    }

    .board-view .board-head .title-box .title {
        font-size: 2.4rem;
    }

    .board-view .board-content {
        padding-bottom: 0;
    }

    .basic-list-item > a {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .basic-list-no {
        padding-top: 0;
    }

    .basic-list-body {
        width: calc(100% - 12rem);
        gap: 1rem;
    }

    .basic-list-thumb {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 10rem;
        height: 10rem;
    }

    .basic-list-title {
        font-size: 1.8rem;
    }

    .basic-list-date {
        font-size: 1.2rem;
    }

    .pagination {
        margin-left: -0.2rem;
    }

    .page-num {
        margin: 0 0.2rem;
    }

    .btn p {
        font-size: 1.4rem;
    }

    .next-prev-box {
        flex-direction: column;
        gap: 4rem;
    }

    .next-prev-box .next-box,
    .next-prev-box .prev-box {
        width: 100%;
    }

    .next-prev-box .next-box a,
    .next-prev-box .prev-box a {
        width: 100%;
        align-items: center;
    }

    .next-prev-box .next-box .thumb-label,
    .next-prev-box .prev-box .thumb-label {
        font-size: 1.4rem;
    }

    .next-prev-box .next-box .thumb-title,
    .next-prev-box .prev-box .thumb-title {
        font-size: 1.8rem;
        flex: 0 0 auto;
        max-height: none;
    }

    .next-prev-box .next-box .no-empty {
        padding: 4rem 0 3rem 0;
    }

    .next-prev-box .prev-box .no-empty {
        padding: 3rem 0 4rem 0;
    }

    .next-prev-box .line {
        width: 100%;
    }

    .next-prev-box .line::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 0.1rem;
        width: auto;
        background: linear-gradient(
            to right,
            transparent 0%,
            rgb(225, 225, 225) 30%,
            rgb(225, 225, 225) 70%,
            transparent 100%
        );
        pointer-events: none;
    }

    .reply-area .reply-title {
        font-size: 1.8rem;
        padding: 0.5rem 0;
    }

    .reply-area .reply-list {
        gap: 1.4rem;
    }

    .reply-area .reply-list .reply-info .date {
        font-size: 1.2rem;
    }

    .reply-area .reply-list .reply-info .date::before {
        width: 0.2rem;
        height: 0.2rem;
    }

    .reply-area .reply-list .reply-item .reply-sub {
        padding: 2.4rem 0;
    }

    .reply-area .reply-list .reply-more button {
        font-size: 1.4rem;
    }

    .reply-area .reply-apply .input-box {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .reply-area .reply-apply .input-box input {
        width: 100%;
        flex: 0 0 auto;
    }

    .reply-area .no-empty {
        padding: 5rem 0;
    }

    .footer-swiper .footer-swiper-item {
        position: relative;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .footer-swiper .footer-swiper-item .basic-list-no {
        color: rgba(213, 213, 213, 0.2);
    }

    .footer-text-group > div {
        flex-wrap: wrap;
        width: 100%;
        gap: 0;
    }

    .footer-text {
        display: block;
        width: 100%;
        height: 2.9rem;
        font-size: 1.2rem;
    }

    .footer-bottom-inner {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-copy {
        width: 100%;
        font-size: 1.2rem;
    }
}
