/* ==========================================================================
   Leopon 2025 Theme - Root Variables
   ========================================================================== */
:root {
    --font-sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'Noto Serif KR', Georgia, 'Times New Roman', serif;
    --font-nanum: 'Nanum Gothic', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-square: 'NanumSquare', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #e0e0e0;
    --color-background: #ffffff;
    --color-background-light: #f9f9f9;
    --color-accent: #005a9c;
    --color-purple: #667eea;
    --color-like: #e91e63;
    --color-point-orange: #ff5600;
    --color-point-orange-light: #fe9c25;
}
/* ==========================================================================
   Page Loader
   ========================================================================== */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
}

.loader-inner {
    text-align: center;
    transform: scale(0.85);
}

.loader-logo {
    width: 258px;
    height: 150px;
    background-image: url('../img/leopon-logo.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    margin: -10px auto 0;
}

.loader-slogan {
    width: 210px;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: #eb3a1f;
    line-height: 1.55em;
    margin: 0 0 0 22px;
}

/* ==========================================================================
   Leopon 2025 Theme - Layout Styles
   기본 레이아웃 및 공통 스타일
   ========================================================================== */

html,body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
    min-height: 100vh;
    background: #292d2e;
    background: linear-gradient(180deg, rgba(41, 45, 46, 1) 0%, rgba(18, 17, 17, 1) 100%);
}

.inner-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 20px; /* 내부 여백 추가 */
}

@media (max-width: 768px) {
    .inner-container {
        padding: 12px;
    }
}

/* 사이트 소개 섹션 */
.site-introduction {
    max-width: 640px;
    margin: 1.2em auto 1.75em;
    padding: 20px 20px 12px;
    text-align: center;
    color: #dfdfdf;
    position: relative;
}

.site-introduction::before,
.site-introduction::after {
    content: '';
    width: 20px;
    height: 100%;
    display: block;
    border: 5px solid rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    position: absolute;
    margin: 0 20px;
    top: 0;
}

.site-introduction::before {
    border-right: none;
    left: 0;
}
.site-introduction::after {
    border-left: none;
    right: 0;
}
@media (max-width: 768px) {
    .site-introduction {
        margin-bottom: 1.5em;
        font-size: 0.95em;
    }
    .site-description {
        padding: 0 20px !important;
        font-size: 0.95em !important;
    }
    .site-description .desktop {
        display: none;
    }
    .site-introduction::before,
    .site-introduction::after {
        margin: 0 12px;
    }
}

.site-slogan {
    font-family: var(--font-serif);
    font-size: 1.2em;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75em;
}

.site-description {
    font-family: var(--font-square);
    font-size: 0.9em;
    line-height: 1.7;
    color: #85a6c1;
    word-break: keep-all;
    margin: 0 auto;
    padding: 0 55px;
}

.site-description span.highlight {
    animation: highlight-pulse 0.65s ease-in-out infinite alternate;
}

@keyframes highlight-pulse {
    from { color: #e4eef6; transform: scale(0.95); }
    to { color: #85a6c1; transform: scale(1.2); }
}

/* 인덱스 내 포스트 목록 스타일 */
.all-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.all-posts-list .post-item {
    --shadow-x: 5px;
    --shadow-y: 9px;
    --shadow-blur: 0px;
    --shadow-alpha: 0.12;
    background-color: #181818;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 20px 20px 20px 75px;
    font-size: 18px;
    overflow: hidden; /* 자식 요소인 .media-video가 둥근 모서리를 넘지 않도록 함 */
    box-shadow: var(--shadow-x) var(--shadow-y) var(--shadow-blur) rgba(0, 0, 0, var(--shadow-alpha));
    transition: box-shadow 0.1s ease-out, background-color 0.3s, border-color 0.3s;
    position: relative;
}

.all-posts-list .post-item:hover {
    background-color: #101010;
    border-color: #282828;
    cursor: pointer;
}

.all-posts-list .post-item.type-post,
.all-posts-list .post-item.type-popkive {
    /* background-color: ; */
}

/* 작품 타입의 비디오 영역은 클릭 가능하도록 커서 변경 */
.all-posts-list .post-item.type-work .media-video {
    cursor: default;
}

.all-posts-list .post-title {
    margin: 0 0 0.5em 0;
    font-family: var(--font-sans);
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    color: #dfdfdf;
}

.all-posts-list .post-title.blockquote {
    font-family: var(--font-serif);
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .all-posts-list .post-title.blockquote {
        font-size: 1em;
    }
}

.all-posts-list .post-subtitle {
    font-size: 12px;
    color: #888;
    margin: -0.5em 0 0.5em -0.25em;
    padding: 0.35em 0.5em 0.45em;
    line-height: 1;
    display: inline-block;
    background-color: #222222;
    border-radius: 4px;
    font-family: var(--font-sans);
}

.all-posts-list .post-excerpt {
    font-size: 0.85em;
    color: #80868b;
    line-height: 1.6;
    margin: 0.75em 0;
    word-break: keep-all;
}
.all-posts-list .post-excerpt p {
    margin: 0;
}

.all-posts-list .post-type-badge {
    display: inline-block;
    width: 32px;
    height: 22px;
    padding: 10px 5px;
    background-color: #3b3f48;
    color: #181818;
    font-family: var(--font-sans);
    font-size: 11px !important;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 22px;
    border-radius: 50%;
    position: absolute;
    left: 15px;
    top: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.all-posts-list .post-type-badge i {
    font-size: 16px; /* 아이콘 크기 조정 */
    line-height: 22px; /* 부모 높이에 맞춰 세로 중앙 정렬 */
}

/* 스크린 리더 전용 텍스트 숨김 */
.post-type-badge .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    border: 0;
}

.all-posts-list .post-item.type-post .post-type-badge    { background-color: #e3dfd9; }
.all-posts-list .post-item.type-popkive .post-type-badge { background-color: #ff6952; }
.all-posts-list .post-item.type-keyword .post-type-badge { color: #fff; }

/* 인덱스 페이지의 키워드/사실들 아이템 하단 연결된 포스트 목록 */
.linked-posts-list {
    margin-top: 1em;
    padding-top: 0.75em;
    border-top: 1px solid #2a2a2a;
}

.linked-posts-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.linked-posts-items li {
    font-size: 0.8em;
}

.linked-posts-items a {
    color: #888;
    text-decoration: none;
    background-color: #222;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s, background-color 0.2s;
}
.linked-posts-items a:hover {
    color: #eee;
    background-color: #333;
}

.all-posts-list .post-type-badge .two-lines {
    display: inline-block;
    line-height: 11px; /* 2줄 텍스트에 맞게 줄 간격 조정 */
    height: 100%;
    box-sizing: border-box;
}

.all-posts-list .post-diagram {
    position: relative;
    display: inline-flex;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 0 8px 20px;
}

.post-diagram::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: block;
    position: absolute;
    top: -1px;
    left: 6px;
    z-index: 3;
}

.post-diagram::after {
    content: '';
    width: calc(100% - 20px);
    height: 23px;
    border-left: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    border-radius: 0 0 0 10px;
    display: block;
    position: absolute;
    top: 0;
    left: 7px;
    background-color: #181818;

    transition: background-color 0.3s;
}

.post-item:hover .post-diagram::after {
    background-color: #101010;
}

.post-item-actions {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    margin-left: -55px;
    padding-top: 10px;
    border-top: 1px solid #212121;
}

.post-item-actions .action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: transparent;
    border: none;
    color: #80868b;
    font-size: 13px;
    font-family: var(--font-sans);
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: color 0.2s, background-color 0.2s;
}

.post-item-actions .action-btn:hover {
    color: #dfdfdf;
    background-color: #252525;
}

.post-item-actions .action-btn.view-link {
    text-decoration: none;
    margin-left: auto; /* 이 버튼을 오른쪽 끝으로 밀어냅니다. */
}

.post-item-actions .action-btn.like-btn.liked {
    color: var(--color-like);
}

.post-item-actions .action-btn.like-btn.liked i {
    font-weight: 900; /* fa-solid */
}

.post-item-actions .action-btn .like-count {
    font-weight: 600;
    display: none;
}

.post-diagram i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #181818;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    font-size: 12px;
    color: #d1d0d0;
    position: relative;
    z-index: 2;
}

/* --------------------------------------------------------------------------
   2. Main Layout (Top Header)
   -------------------------------------------------------------------------- */
body {
    padding-top: 145px; /* 헤더 높이에 맞춰 공간 조정 - 120px에서 80px로 줄임 */
}

main#site-content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 60px 40px 60px; /* 상단 패딩을 20px에서 10px로 줄임 */
}

body:not(.single-popkive):not(.single-post) main#site-content {
    padding: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding: 35px 0; /* 헤더 상하 여백 */
    background: #292d2e;
    background: linear-gradient(180deg, rgba(18, 17, 17, 0.98) 0%, rgba(18, 17, 17, 0.65) 50%, rgba(41, 45, 46, 0) 100%);
    /* border-bottom: 1px solid #fff; */
    z-index: 1000;
    will-change: padding;
}

/* 헤더 내부 컨텐츠 정렬용 */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 0 58px; /* .popkive-content와 동일한 좌우 여백 */
}

/* --------------------------------------------------------------------------
   3. Top Header & Navigation
   -------------------------------------------------------------------------- */

.site-logo {
    height: 3.75em; /* 로고 이미지 높이를 부모(h1)의 font-size에 따르도록 em 단위 사용 */
    width: auto;
    display: block;
    margin: 10px auto -10px;
}

body.home .site-title-link {
    display: block;
    text-align: center;
}
.site-title-link {
    display: block; /* 블록 요소로 변경 */
    margin-bottom: 14px; /* 제목과 바로가기 버튼 사이 여백 줄임 */
    text-decoration: none;
    color: inherit;
}

.site-main-title {
    font-family: var(--font-serif);
    font-size: 2.5em; /* 도입부(1.45em)의 1.2배 */
    font-weight: 600;
    line-height: 58px;
    color: #222;
    text-shadow: none;
    text-align: center; /* 중앙 정렬 */
    margin: 0; /* 하단 마진 완전 제거 */
}

.site-main-title span {
    vertical-align: text-bottom;
    cursor: pointer;
}

.site-nav {
    display: flex;
    flex-direction: row;
    gap: 4px;
    justify-content: center; /* 중앙 정렬 */
    opacity: 0; /* 초기에 숨김 */
    visibility: hidden; /* 초기에 숨김 */
    max-height: 0; /* 초기에 높이 0 */
    overflow: hidden; /* 넘치는 내용 숨김 */
    transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease; /* 부드러운 전환 효과 */
    width: 350px;
    position: absolute;
    left: calc(50% - 175px);
    bottom: -23px;
    padding: 5px 0;
    border-radius: 3px;
    border: 1px solid #b4bcd4;
    box-shadow: 6px 7px 0px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.site-nav.show {
    opacity: 1; /* 표시될 때 */
    visibility: visible; /* 표시될 때 */
    max-height: 50px; /* 표시될 때 충분한 높이 */
}

.site-nav .nav-icon {
    display: flex;
    align-items: center;
    font-size: 15px;
    padding: 5px; /* 패딩 조정 */
    border-radius: 3px;
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--color-text-light);
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
}

.site-nav .nav-icon.active {
    background-color: #dfe2eb;
    color: var(--color-text);
}

.site-nav .nav-icon.active i {
    color: var(--color-accent);
}

.post-diagram i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #181818;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    font-size: 12px;
    color: #d1d0d0;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .header-inner {
        padding: 0 20px; /* 모바일 콘텐츠 여백과 동일하게 */
    }
}

@media (max-width: 768px) {
    .site-main-title {
        font-size: 2.5em;
        will-change: font-size;
    }

    .site-nav {
        position: fixed;
        bottom: 15px;
        left: 15px;
        width: calc(100% - 40px);
        gap: 0;
        padding: 5px;
        z-index: 1001;
    }
    .site-nav.show {
        max-height: 65px;
    }
    /* 모바일에서 팝업 활성화 시 하단 내비게이션 숨기기 */
    body.popup-video .site-nav {
        display: none;
    }
    .site-nav .nav-icon {
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        padding: 8px 5px 10px;
        flex: 1;
    }
    .site-nav .nav-icon i {
        margin: 0 0 5px 0 !important;
        text-align: center !important;
    }
}

.site-nav .nav-icon i {
    width: 20px;
    margin-right: 2px;
    font-size: 1.2em;
    text-align: left;
    color: #bccbdc;
}

.site-nav .nav-icon span {
    font-family: var(--font-square);
    font-size: 0.75em;
    font-weight: 500;
    opacity: 0.7;
}
/* --------------------------------------------------------------------------
   Footer Copyright
   -------------------------------------------------------------------------- */

#copyright {
    text-align: center;
    font-size: 11px;
    color: var(--color-text-light);
    padding: 20px 0;
    opacity: 0.5;
}

/* ==========================================================================
   Header
   ========================================================================== */

/* 헤더 좌측 버튼 (뒤로가기/검색) 공통 스타일 */
.header-action-btn {
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1010; /* .popkive-sidebar(1000) 보다 위에 오도록 설정 */
    width: 58px;
    height: 58px;
    padding-right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-out, transform 0.4s ease-out;
    font-size: 1.2em;
    color: var(--color-text-light);

    transition: color 0.3s;
}

body.home .header-action-btn:hover {
    color: #fff;
}

.header-action-btn:hover {
    color: #000;
}

#search-btn {
    display: none;
}

#user-like-score {
    position: fixed;
    top: 0;
    right: 0px;
    max-width: 120px;
    min-width: 58px;
    height: 58px;
    z-index: 1010;
    font-size: 1.1em;
    color: #b26256;
    font-weight: 500;
    opacity: 1;
    z-index: 1010; /* .popkive-sidebar(1000) 보다 위에 오도록 설정 */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: opacity 0.3s ease-out, transform 0.4s ease-out;
}

#user-like-score i {
    animation: heart-pulse 0.65s ease-in-out infinite alternate;
}

@keyframes heart-pulse {
    from { color: #eb3a1f; transform: scale(0.95); }
    to { color: #b26256; transform: scale(1.05); }
}

#user-like-score .score-count {
    font-family: var(--font-square);
    font-weight: 800;
    font-size: 1.1em;
}

/* 좋아요 카운트가 0일 때 숫자 숨기기 */
#user-like-score .score-count[data-score="0"] {
    display: none;
}

/* .score-count의 기존 숫자는 숨김 처리 */
#user-like-score .score-count {
    font-size: 0;
}

/* ::before 가상 요소를 사용해 data-score 값 표시 */
#user-like-score .score-count::before {
    content: attr(data-score);
    font-size: 1rem; /* 원래 폰트 크기로 복원 */
    /* margin-bottom: 2px; */
    display: block;
}



/* 공통 섹션 스타일 */
.related-section {
   max-width: 1010px;
   padding: 0 1em;
   margin: 0 auto 10em;
   overflow-x: visible;
}

@media (max-width: 1024px) {
    .related-section {
        padding: 0 25px;
    }
}
  
@media (max-width: 768px) {
    .related-section {
        max-width: 320px;
    }
}

main#site-content section:last-child {
    min-height: 80vh;
}

.related-section .section-title {
    font-family: var(--font-square);
    font-size: 1.25em;
    font-weight: 700;
    margin-bottom: 1.5em;
    padding-top: 8px;
    text-align: center;
}

.section-title {
    position: relative;
}

.section-title::before {
    content: '';
    width: 100vw;
    height: 1px;
    background-color: #99b4d1;
    border-radius: 1px;
    position: absolute;
    z-index: -2;
    top: calc(50% + 3px);
    left: calc(50% - 50vw);
    display: block;
}

.section-title::after {
    content: '';
    width: 580px;
    height: 100%;
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    display: block;
    animation: padding-pulse 1s ease-in-out infinite alternate;
}

@media (max-width: 768px) {
    .section-title::after {
        width: 75px;
    }
}

@keyframes padding-pulse {
    from {
        padding-left: 0;
        padding-right: 0;
    }
    to {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* 인덱스 페이지의 작품 영상 스타일 */
.all-posts-list .post-item.type-work .media-video {
    margin: 12px 55px 8px 0;
    width: calc(100% - 55px);
    height: 0;
    padding-top: calc(56.25% - 31px); /* 16:9 비율 */
    border-radius: 11px;
    background-size: cover;
    background-color: #333;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    cursor: pointer;
    transition: filter 0.3s, opacity 0.3s, background 0.4s, width 0.3s, margin 0.3s, padding 0.3s;
}

/* 영상이 재생될 때의 스타일 */
.all-posts-list .post-item.type-work .media-video.playing {
    width: calc(100% + 95px);
    margin: -82px -20px 0px -75px;
    padding-top: calc(56.25% + 53px);
}

/* 모바일에서 재생 중일 때만 재생 버튼 숨김 */
@media (max-width: 768px) {
    .all-posts-list .post-item.type-work .media-video.playing .media-video-play-btn {
        display: none;
    }
}
/* 데스크탑에서는 항상 재생 버튼 숨김 */
@media (min-width: 769px) {
    .all-posts-list .post-item.type-work .media-video.playing .media-video-play-btn {
        display: none; /* 재생 버튼 숨김 */
    }
}

.all-posts-list .post-item.type-work .media-video.playing .media-video-play-btn {
    display: none; /* 재생 버튼 숨김 */
}

/* 인라인 재생 iframe 스타일 */
.all-posts-list .post-item.type-work .media-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 기본적으로 뒤에 숨김 */
    background-color: #000 !important;
    opacity: 0;

    transition: opacity 0.6s 0.6s;
}

/* 영상이 재생 중일 때만 iframe을 앞으로 표시 */
.all-posts-list .post-item.type-work .media-video.playing iframe {
    z-index: 1;
    opacity: 1;
}

/* 영상이 일시정지되면 다시 iframe을 뒤로 숨김 */
.all-posts-list .post-item.type-work .media-video.paused iframe {
    z-index: -1;
}

.all-posts-list .post-item.type-work .media-video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    border: none;
    outline: none;
    opacity: 1; /* 항상 표시되도록 변경 */
    transition: opacity 0.3s;
}

/* 일시정지 상태일 때 재생 버튼 다시 표시 */
.all-posts-list .post-item.type-work .media-video.paused .media-video-play-btn {
    display: flex;
}

.all-posts-list .post-item.type-work:hover .media-video-play-btn {
    /* 항상 표시되므로 호버 효과는 제거하거나 다른 효과로 대체 가능 */
}

.all-posts-list .post-item.type-work .media-video-play-btn .pause-icon {
    display: none;
}

.all-posts-list .post-item.type-work .media-video.paused .media-video-play-btn .play-icon {
    display: none;
}

.all-posts-list .post-item.type-work .media-video.paused .media-video-play-btn .pause-icon {
    display: block;
}

.all-posts-list .post-item.type-work .media-video-play-btn svg {
    display: block;
    margin: auto;
}

.all-posts-list .post-item.type-work .media-video-play-btn svg {
    width: 36px;
    height: 36px;
    fill: #fff;
}

/* 인덱스 페이지의 작품 타입은 하단 여백을 비디오에 맞게 조정 */
.all-posts-list .post-item.type-work .post-excerpt,
.all-posts-list .post-item.type-work .post-diagram {
    display: none;
}

/* 인덱스 페이지 작품 영상 참조 정보 스타일 */
.item-extensions {
    margin: 20px 55px 15px 0;
    padding: 14px 16px;
    background: #222;
    background: linear-gradient(180deg, rgba(34, 34, 34, 1) 0%, rgba(34, 34, 34, 0.08) 100%);
    border-radius: 8px;
    font-size: 0.85em;
}

.extension-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.extension-desc {
    margin: 0;
    padding: 0;
    font-family: var(--font-serif);
    color: #dfdfdf;
    line-height: 1.75;
    position: relative;
    padding-left: 1.2em;
    word-break: keep-all;
}

.extension-desc::before {
    content: '“';
    position: absolute;
    left: -2px;
    top: -12px;
    font-size: 2.2em;
    font-weight: 600;
    color: #404040;
}

.infinite-scroll-end-message {
    text-align: center;
    padding: 15px 0 30px;
    font-size: 1.5em;
    color: #3b3f48;
}

/* 이어서 보기 버튼 */
.continue-reading-container {
    text-align: center;
    margin: 2em 0;
}

#continue-reading-btn {
    background-color: #333;
    color: #fff;
    border: 1px solid #404040;
    border-radius: 20px;
    padding: 8px 20px 10px;
    font-family: var(--font-square);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

#continue-reading-btn:hover {
    background-color: #444;
    border-color: #777;
}

/* '이어서 보기' 버튼 깜빡임 효과 */
@keyframes blink-effect {
    50% {
        opacity: 0.6;
        background-color: #555;
    }
}

#continue-reading-btn.blinking {
    animation: blink-effect 0.6s 3; /* 0.6초 동안 3번 깜빡임 */
}


/* 관련 작품(공통) 섹션 스타일 */
.related-works-grid {
    margin: 6em 0 3em;
}

.related-works-item {
    box-sizing: border-box;
    background: var(--color-background-light);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    opacity: 0.3;
    filter: grayscale(1);

    transition: opacity 0.4s, filter 0.4s, transform 0.3s, box-shadow 0.3s;
}

/* 기본 (slidesPerView: 1) : 모든 슬라이드를 선명하게 표시 */
.related-works-item {
    opacity: 1;
    filter: grayscale(0);
}

/* 화면이 769px 이상일 때 (slidesPerView: 2 이상) 기본 스타일(흐리게) 적용 */
@media (min-width: 769px) {
    .related-works-item {
        opacity: 0.3;
        filter: grayscale(1);
        pointer-events: none; /* 비활성 슬라이드는 클릭/호버 비활성화 */
    }
    /* 활성 슬라이드와 그 다음 1개의 슬라이드를 선명하게 표시 (slidesPerView: 2) */
    .related-works-item.swiper-slide-active,
    .related-works-item.swiper-slide-active + .swiper-slide {
        opacity: 1;
        filter: grayscale(0);
        pointer-events: auto; /* 활성 슬라이드는 클릭/호버 활성화 */
    }
}

/* 화면이 1025px 이상일 때 (slidesPerView: 3) 추가 스타일 */
@media (min-width: 1025px) {
    /* 활성 슬라이드의 다음 다음 슬라이드도 선명하게 표시 */
    .related-works-item.swiper-slide-active + .swiper-slide + .swiper-slide {
        opacity: 1;
        filter: grayscale(0);
        pointer-events: auto; /* 3번째 슬라이드도 클릭/호버 활성화 */
    }
}

.related-works-item:hover {
    background: var(--color-background);
}

.media-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.related-works-item .media-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--color-background-light);
}

.related-works-item .media-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-works-item:hover .media-thumbnail img {
    transform: scale(1.05);
}

.media-content {
    padding: calc(56.25% + 1.45em) 1.2em 1.5em;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative; /* 자식 요소인 .media-video의 position: absolute 기준점으로 설정 */
    cursor: pointer; /* 클릭 가능함을 나타내는 커서 */
}

.media-content:hover {
    background-color: var(--color-background-light);
}

.media-header-row {
    margin-bottom: 1.2em;
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start;
}

.media-title {
    font-family: var(--font-square);
    font-size: 1.15em;
    font-weight: 600;
    margin: 0 0 1em 0;
    line-height: 1.4;
    color: var(--color-text);
}

.media-year-under-title {
    font-size: 0.875em;
    color: #888;
}

.media-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    color: #bccbdc;
    border-radius: 4px;
    font-size: 0.95em;
    padding: 0.25em 0;
}

.media-description {
    font-family: var(--font-serif);
    font-size: 0.875em;
    line-height: 1.65;
    color: var(--color-text-light); 
    text-align: left; /* 양쪽 정렬 대신 왼쪽 정렬 사용 */
    word-break: break-all;
    /* 7줄 제한 및 말줄임표 추가 */
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
    /* max-height 속성은 line-clamp와 충돌할 수 있어 제거 */
}

.media-description strong {
    border-bottom: 1px solid var(--color-point-orange-light);
}

.media-video {
    margin-top: auto;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    background-size: 100% auto;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;

    transition: filter 0.3s, opacity 0.3s, background 0.4s;
}

.related-works-item:hover .media-video {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .related-works-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
        margin: 1em 0;
        padding: 20px;
    }
    .media-content {
        padding: inherit 1.45em 1.2em;
    }
    .media-thumbnail {
        height: 180px;
    }
    .related-works-item .media-video-play-btn {
        opacity: 1; /* 모바일에서 항상 표시 */
        width: 56px;
        height: 56px;
    }
    .related-works-item .media-video-play-btn svg {
        width: 32px;
        height: 32px;
    }
    .media-video iframe {
        height: 180px;
    }
}

/* Swiper for related-works-grid (공통) */
.related-works-grid.swiper {
    padding-bottom: 40px;
    position: relative;
    overflow: visible;
}
.related-works-grid .swiper-slide {
    height: auto;
}
.related-works-grid .media-card {
    height: 100%;
}
.related-works-grid .swiper-pagination {
    margin-top: 12px;
}
.related-works-grid .swiper-button-prev,
.related-works-grid .swiper-button-next {
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #d5d5d5;
    transform: translateY(-50%);
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.14);
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s, background-color 0.3s, border-color 0.3s,box-shadow 0.3s;
}
.related-works-grid .swiper-button-prev:hover,
.related-works-grid .swiper-button-next:hover {
    background-color: var(--color-background);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.45);
    border-color: #bbb;
}
.related-works-grid .swiper-button-prev {
    left: -52px;
}
.related-works-grid .swiper-button-next {
    right: -52px;
}
@media (max-width: 1024px) {
    .related-works-grid .swiper-button-prev {
        left: -30px;
    }
    .related-works-grid .swiper-button-next {
        right: -30px;
    }
}
@media (max-width: 768px) {
    .related-works-grid .swiper-button-prev,
    .related-works-grid .swiper-button-next {
        display: none;
    }
}
.related-works-grid .swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}
.related-works-grid .swiper-button-prev::after,
.related-works-grid .swiper-button-next::after {
    content: '';
    width: 100%;
    height: calc(100% - 1px);
    background-repeat: no-repeat;
    background-size: 18px;
    border-radius: 50%;
    opacity: 0.5;

    transition: opacity 0.3s;
}
.related-works-grid .swiper-button-prev:hover::after,
.related-works-grid .swiper-button-next:hover::after {
    opacity: 0.85;
}

.related-works-grid .swiper-button-prev::after {
    background-image: url('../img/nav-prev.svg');
    background-position: 10px center;
}
.related-works-grid .swiper-button-next::after {
    background-image: url('../img/nav-next.svg');
    background-position: 12px center;
}

.swiper-pagination-bullet {
    background-color: var(--color-text-light);
    /* border-radius: 2px; */
}

.swiper-pagination-bullet-active {
    background-color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   6. 댓글 시스템 스타일
   -------------------------------------------------------------------------- */

/* 댓글 섹션 (main 밖에 위치) */
#popkive-comments {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 60px 40px 60px;
    scroll-margin-top: 100px;
}

/* 댓글 컨테이너 */
.comments-container {
    max-width: 100%;
    margin: 0 auto;
}

/* 댓글 목록 */
.comments-list {
    margin-bottom: 3em;
}

.comments-title {
    font-family: var(--font-square);
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--color-border);
}

/* 댓글 목록 */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list ol {
    list-style: none;
    padding-left: 0;
}

.comment-list li {
    margin-bottom: 2em;
    padding: 1.5em;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.comment-list .children {
    margin-left: 2em;
    margin-top: 1em;
    padding-left: 1em;
    border-left: 2px solid var(--color-border);
}

/* 댓글 메타 정보 */
.comment-meta {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1em;
    font-size: 0.9em;
    color: var(--color-text-light);
}

.comment-author {
    font-weight: 600;
    color: var(--color-text);
}

.comment-author .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.5em;
}

.comment-date {
    color: var(--color-text-light);
    font-size: 0.85em;
}

/* 댓글 내용 */
.comment-content {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 1em;
}

.comment-content p {
    margin-bottom: 0.5em;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

/* 댓글 답글 링크 */
.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.85em;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.comment-reply-link:hover {
    color: var(--color-text);
    text-decoration: underline;
}

/* 댓글 작성 폼 */
.comment-form {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.comment-form h3 {
    font-family: var(--font-square);
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.5em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--color-border);
}

/* 댓글 폼 필드 */
.comment-form p {
    margin-bottom: 0.5em;
}

/* 이름과 이메일 필드를 한 줄에 2열로 표시 */
.comment-form-row {
    display: inline-block;
    width: calc(50% - 0.75em);
    vertical-align: top;
}

.comment-form-row:last-of-type {
    margin-right: 0;
}

.comment-form label {
    display: block;
    font-family: var(--font-square);
    font-size: 0.9em;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5em;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: calc(100% - 1.5em);
    padding: 0.75em;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-background);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(0, 90, 156, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* 댓글 등록 버튼 */
.comment-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.75em 1.5em;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: var(--font-square);
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.comment-submit-btn:hover {
    background: #004a82;
    transform: translateY(0);
}

.comment-submit-btn:active {
    transform: translateY(0);
}

/* 댓글 안내 문구 */
.comment-notes {
    font-size: 0.85em;
    color: var(--color-text-light);
    margin-top: 0;
    margin-bottom: 1.5em;
    padding: 0.75em 1em;
    background: var(--color-background-light);
    border-radius: 6px;
}

.comment-notes .required,
.comment-form label .required {
    color: #e74c3c;
    font-weight: 600;
}

.comment-form-comment label {
    display: none;
}

/* 댓글이 닫혀있을 때 */
.no-comments {
    text-align: center;
    color: var(--color-text-light);
    font-style: italic;
    padding: 2em;
    background: var(--color-background-light);
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

/* 댓글 페이지네이션 */
.comment-navigation {
    margin: 2em 0;
    padding: 1em 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.comment-navigation .nav-previous,
.comment-navigation .nav-next {
    display: inline-block;
    margin: 0 1em 0 0;
}

.comment-navigation a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.comment-navigation a:hover {
    color: var(--color-text);
    text-decoration: underline;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    #popkive-comments {
        padding: 0 20px 40px 20px;
    }
    
    .comment-list li {
        padding: 1em;
        margin-bottom: 1.5em;
    }
    
    .comment-list .children {
        margin-left: 1em;
        padding-left: 0.5em;
    }
    
    .comment-form {
        padding: 1.5em;
    }
    
    /* 모바일에서 이름과 이메일 필드를 세로로 배치 */
    .comment-form-row {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1em;
    }
    
    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5em;
    }
    
    .comment-author .avatar {
        width: 32px;
        height: 32px;
    }
}

/* Honeypot 필드 스타일 - 스팸 방지용 숨겨진 필드 */
.honeypot-field {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.honeypot-field input {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    border: none !important;
    background: transparent !important;
    color: transparent !important;
}

/* 댓글 이름/이메일 필드 숨김 및 애니메이션 */
.comment-form-fields-hidden {
    display: none;
}
.comment-form-fields-visible {
    display: flex;
    gap: 1.5em;
    margin-bottom: 1em;
    flex-wrap: wrap;
    animation: fadeInFields 0.3s;
}
@keyframes fadeInFields {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .comment-form-fields-visible {
        flex-direction: column;
        gap: 0;
    }
}

/* ======          팝업 설정           ====== */

/* 팝업 활성 시 스크롤 방지 */
html.popup-open,
html.popup-open body {
    overflow: hidden;
}

body > * {
    transition: filter 0.8s;
}

body.popup-video > *:not(#media-video-popup):not(#audio-navigation) {
    filter: blur(5px);
}

/* ====== 미디어 비디오 팝업(영상 꽉 채우기) ====== */
.media-video-popup {
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(160 160 160 / 75%);
    transition: opacity 0.3s;
}
.media-video-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* 콘텐츠보다 뒤에 위치하도록 설정 */
}
.media-video-popup[style*="display: none"] {
    opacity: 0;
    pointer-events: none;
}
.media-video-popup-content {
    width: 90vw;
    max-width: 900px;
    /* aspect-ratio: 4/3; */
    /* height: 90vh; */
    max-height: 80vh;
    background: #111;
    /* border-radius: 12px; */
    /* overflow: hidden; */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 1; /* 오버레이보다 앞에 위치하도록 설정 */
    padding: 0;
}

.media-video-popup-embed, #yt-player, .media-video-popup-embed iframe {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16/9;
    min-width: 0;
    min-height: 0;
    background: #000;
    display: block;
}
@media (max-width: 768px) {
    .media-video-popup-embed {
        width: 96vw;
        height: 54vw;
        max-width: 96vw;
        max-height: 54vw;
    }
}
.media-video-popup-close {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    padding: 0;
    transition: box-shadow 0.2s;
}
.media-video-popup-close::before, .media-video-popup-close::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: #222;
    border-radius: 2px;
    transform-origin: center;
}
.media-video-popup-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.media-video-popup-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.media-video-popup-close span {
    display: none;
}
@media (max-width: 768px) {
    .all-posts-list .post-item.type-work .media-video {
        width: calc(100% + 95px) !important;
        height: calc(100% + 95px) !important;
        margin: 12px -20px 0px -75px !important;
        padding-top: calc(56.25% + 53px) !important;
        border-radius: 0;
    }
    .item-extensions {
        margin: 20px 0px 15px -55px;
        background: transparent;
        padding: 0;
    }
    .media-video-popup-close {
        top: -18px;
        right: -18px;
        width: 32px;
        height: 32px;
    }
    .media-video-popup-close::before, .media-video-popup-close::after {
        width: 12px;
    }

    .media-video-popup-info {
        flex-direction: column; /* 상하 배열 */
        gap: 1em;
        padding: 1em;
        flex-grow: 1; /* 남은 공간 채우기 */
        min-height: 0; /* flex 자식 요소의 크기 축소 허용 */
    }
    .popup-info-like {
        width: 100%;
        display: flex;
        justify-content: center; /* 좋아요 버튼 중앙 정렬 */
    }
    .popup-info-description {
        max-height: 8.8em !important;
    }
}

/* ====== 팝업 내 음소거 해제 버튼 (모바일용) ====== */
.media-video-unmute-btn {
    position: absolute;
    left: 50%;
    top: 24px;
    transform: translate(-50%, -50%);
    z-index: 5; /* 영상 위에 표시 */
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 3px 10px 3px 8px;
    font-size: 11px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    display: none; /* 기본적으로 숨김 */
}

.media-video:not(.playing) .media-video-unmute-btn {
    display: none !important;
}

.media-video-unmute-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: #fff;
}

.media-video-unmute-btn svg {
    width: 18px;
    height: 18px;
}

/* 팝업 정보 영역 */
.media-video-popup-info {
    display: flex;
    align-items: flex-start;
    gap: 1.5em;
    padding: 1.2em 1.5em;
    background: #111;
}

/* 공통 좋아요 버튼 스타일 */
.popkive-like-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 10px 16px;
    font-size: 0.9em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.popkive-like-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

/* 좋아요 활성화 상태 */
.popkive-like-btn.liked {
    background: var(--color-like) !important;
    border-color: var(--color-like) !important;
    color: #fff !important;
    opacity: 1 !important;
}

/* 초기 상태: 아이콘과 카운트 숨기고 텍스트만 표시 */
.popkive-like-btn:not(.liked) .like-icon,
.popkive-like-btn:not(.liked) .like-count {
    display: none;
}
.popkive-like-btn:not(.liked) .like-text {
    display: inline;
}

/* liked 상태: 텍스트 숨기고 아이콘과 카운트 표시 */
.popkive-like-btn.liked .like-text {
    display: none;
}
.popkive-like-btn.liked .like-icon,
.popkive-like-btn.liked .like-count {
    display: inline-block;
}

.popup-info-description {
    flex-grow: 1;
    font-size: 0.9em;
    line-height: 1.6;
    color: #e0e0e0;
    max-height: 100px; /* 최대 높이 제한 */
    overflow-y: auto; /* 내용이 길면 스크롤 */
}

.popup-info-like {
    flex-shrink: 0;
    margin: auto; /* 팝업 내에서 버튼을 중앙에 가깝게 배치 */
}

.popup-info-description p:first-child {
    margin-top: 0;
}

/* ====== 미디어 비디오 재생버튼 ====== */
.media-video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    border: none;
    outline: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.media-content:hover .media-video-play-btn {
    opacity: 1;
}
.media-video-play-btn svg {
    width: 36px;
    height: 36px;
    fill: #fff;
}

/* strong 태그 색상 애니메이션 */
@keyframes color-pulse {
    0%, 100% {
        color: inherit;
    }
    50% {
        color: var(--color-accent);
    }
}
