@charset "UTF-8";

/* =========================================
   Insight Common & List Styles
   ========================================= */
.insight-section {
    background-color: #ffffff;
    padding: 90px 0px 178px 0px;
}
.insight-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 18px;
}

@media screen and (max-width: 1024px) {
    .insight-section .container {
        padding: 0 40px;
    }
}
@media screen and (max-width: 767px) {
    .insight-section {
        padding: 50px 0px 90px 0px;
    }
    .insight-section .container {
        padding: 0 20px;
    }
}

/* 타이틀 영역 (원본 .title, .heading 매핑) */
.insight-header,
.insight-header * {
    box-sizing: border-box;
}
.insight-header {
    display: flex;
    flex-direction: column;
    gap: 38px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 1170px;
    margin: 0;
}
.insight-header .pre-title {
    color: #ff5240;
    text-align: center;
    font-size: 24px;
    line-height: 120%;
    font-weight: 700;
    margin: 0;
    position: relative;
    align-self: stretch;
}
.insight-header .title {
    color: #000000;
    text-align: center;
    font-size: 50px;
    line-height: 120%;
    font-weight: 700;
    margin: 0;
    position: relative;
    align-self: stretch;
}
.insight-header .desc-txt {
    color: #000000;
    text-align: center;
    font-size: 24px;
    line-height: 150%;
    font-weight: 400;
    margin: 0;
    position: relative;
    align-self: stretch;
    display: none;
}
@media screen and (max-width: 767px) {
    .insight-header {
        gap: 11px;
    }
    .insight-header .pre-title {
        font-size: 24px;
    }
    .insight-header .title {
        font-size: 28px;
    }
    .insight-header .desc-txt {
        font-size: 18px;
    }
}

/* 탭(카테고리 필터) 영역 (원본 .tab, .tab2, .tab3 매핑) */
.category-filter {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;
    margin: 65px 0;
}
.category-filter button {
    background: #ffffff;
    border-radius: 50px;
    border: 1px solid #000000;
    padding: 11px 24px;
    color: #000000;
    font-size: 20px;
    line-height: 150%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.category-filter button:hover {
    background-color: #f0f0f0;
}
.category-filter button.active {
    background: #000000;
    color: #ffffff;
}
@media screen and (max-width: 767px) {
    .category-filter {
        gap: 8px;
        margin: 40px 0;
    }
    .category-filter button {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* 리스트 영역 (원본 .list 매핑) */
.article-grid {
    padding: 0px;
    display: flex;
    flex-direction: row;
    gap: 32px 30px;
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .article-grid {
        gap: 24px;
    }
}
@media screen and (max-width: 767px) {
    .article-grid {
        gap: 12px;
    }
}

/* 카드 컴포넌트 (원본 .card 매핑) */
.insight-card {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 20px);
    max-width: 368px;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.insight-card:hover {
    transform: translateY(-8px);
}
@media (max-width: 1024px) {
    .insight-card { 
         width: calc(33.333% - 16px);
     }
}
@media (max-width: 767px) {
    .insight-card { 
        width: calc(50% - 6px);
        border-radius: 10px;
        max-width: 100%;
    }
}

/* 카드 썸네일 (원본 .thumb 및 ai_context 가이드라인 매핑) */
.card-thumb {
    border-radius: 20px 20px 0px 0px;
    width: 100%;
    aspect-ratio: 1 / 1; /* 1:1 비율 유지 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* 썸네일 Placeholder 카테고리별 배경색 */
.insight-card[data-category="child-development"] .card-thumb { background-color: #0094cf40; }
.insight-card[data-category="active-learning-play"] .card-thumb { background-color: #FF88B940; }
.insight-card[data-category="tunituni"] .card-thumb { background-color: #1F8F5540; }

.card-thumb .no-image-logo {
    width: 40%;
    filter: grayscale(100%) opacity(0.2); /* 로고 그레이스케일 적용 */
}
@media screen and (max-width: 767px) {
    .card-thumb {
        border-radius: 10px 10px 0 0;
    }
}

/* 카드 컨텐츠 정보 (원본 .content 의 음수마진 겹침 및 그림자 등 매핑) */
.card-content {
    margin: -16px 0 0 0; /* 썸네일과 겹치는 디자인 구현 */
    background: #ffffff;
    border-radius: 20px 20px 0px 0px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 1;
    transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
    .card-content {
        margin-top: -10px;
        border-radius: 10px 10px 0 0;
        padding: 12px 8px;
        gap: 8px;
    }
}

/* 카드 호버 시 썸네일 이미지 확대 */
.insight-card:hover .card-thumb {
    transform: scale(1.05);
}

/* 카드 호버 시 컨텐츠 배경색 변화 */
.insight-card[data-category="child-development"]:hover .card-content { background-color: #0093CF; }
.insight-card[data-category="active-learning-play"]:hover .card-content { background-color: #FF88B9; }
.insight-card[data-category="tunituni"]:hover .card-content { background-color: #1F8F55; }

.insight-card[data-category="child-development"]:hover .card-content .card-badge { background-color: #fff; color: #0093CF; }
.insight-card[data-category="active-learning-play"]:hover .card-content .card-badge { background-color: #fff; color: #FF88B9; }
.insight-card[data-category="tunituni"]:hover .card-content .card-badge { background-color: #fff; color: #1F8F55; }

/* 카드 뱃지 (원본 .badge 구조에 ai_context 색상 반영) */
.card-badge {
    border-radius: 99px;
    padding: 0px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 32px;
    font-weight: 700;
    align-self: flex-start;
}
.badge-cd { background-color: #0093CF; color: #fff; }
.badge-alp { background-color: #FF88B9; color: #fff; }
.badge-tt { background-color: #1F8F55; color: #fff; }
@media screen and (max-width: 767px) {
    .card-badge {
        padding: 0 8px;
        line-height: 16px;
        font-size: 9px;
        letter-spacing: -0.1px;
    }
}

/* 텍스트 래퍼 및 요소 (.text, title, summary, date 매핑) */
.card-title {
    color: #333333;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    transition: color 0.3s ease;
}
.card-summary {
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    transition: color 0.3s ease;
    margin-bottom: 20px;
    display: none;

}
.card-date {
    color: #9c9c9c;
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
    margin-top: auto;
    transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
    .card-title { font-size: 11px; line-height: 1.27; }
    .card-summary { font-size: 9px; line-height: 1.33; margin-bottom: 8px; }
    .card-date { font-size: 8px; }
}

/* 카드 호버 시 텍스트 색상 변화 */
.insight-card:hover .card-title,
.insight-card:hover .card-summary,
.insight-card:hover .card-date {
    color: #ffffff;
}

/* 피그마 스켈레톤 UI (로딩 효과) */
.card-skeleton,
.card-skeleton * {
    box-sizing: border-box;
}
.card-skeleton {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: calc(33.333% - 20px);
    max-width: 368px;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1); */
}
@media (max-width: 1024px) {
    .card-skeleton { 
        width: calc(33.333% - 16px);
        
    }
}
.card-skeleton .thumb {
    border-radius: 20px 20px 0px 0px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.card-skeleton .cover-img {
    background: linear-gradient(270deg, rgba(219, 219, 219, 0.2) 0%, rgba(219, 219, 219, 0.8) 50%, rgba(219, 219, 219, 0.2) 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    aspect-ratio: 1;
}
.card-skeleton .content {
    margin: -16px 0 0 0;
    background: var(--white, #ffffff);
    border-radius: 20px 20px 0px 0px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.card-skeleton .badge {
    background: var(--grey-grey09, #f0f2f5);
    border-radius: 99px;
    padding: 0px 16px 0px 16px;
    flex-shrink: 0;
    width: 147px;
    height: 32px;
    position: relative;
}
.card-skeleton .rectangle, .card-skeleton .rectangle2, .card-skeleton .rectangle3, 
.card-skeleton .rectangle4, .card-skeleton .rectangle5, .card-skeleton .rectangle6, 
.card-skeleton .rectangle7, .card-skeleton .rectangle8 {
    background: linear-gradient(270deg, rgba(219, 219, 219, 0.2) 0%, rgba(219, 219, 219, 0.8) 50%, rgba(219, 219, 219, 0.2) 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    border-radius: 25px;
    position: relative;
}
.card-skeleton .rectangle { width: 100px; height: 10.5px; position: absolute; left: 16px; top: 50%; translate: 0 -50%; }
.card-skeleton .text { display: flex; flex-direction: column; gap: 21px; align-items: flex-start; justify-content: flex-start; align-self: stretch; flex-shrink: 0; height: 156px; position: relative; }
.card-skeleton .bar { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; justify-content: flex-start; flex-shrink: 0; width: 100%; position: relative; }
.card-skeleton .rectangle2 { align-self: stretch; flex-shrink: 0; height: 17.5px; }
.card-skeleton .rectangle3 { flex-shrink: 0; width: 80%; height: 17.5px; }
.card-skeleton .bar2 { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; justify-content: flex-start; flex-shrink: 0; position: relative; width: 100%; }
.card-skeleton .frame-1000003959 { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; justify-content: flex-start; flex-shrink: 0; width: 100%; position: relative; }
.card-skeleton .rectangle4 { width: 65%; height: 14px; border-radius: 20px; }
.card-skeleton .rectangle5 { width: 100%; height: 14px; border-radius: 20px; }
.card-skeleton .rectangle6 { width: 70%; height: 14px; border-radius: 20px; }
.card-skeleton .rectangle7 { width: 80%; height: 14px; border-radius: 20px; }
.card-skeleton .rectangle8 { width: 96px; height: 14px; border-radius: 20px; }

@media (max-width: 767px) {
    .card-skeleton { 
        width: calc(50% - 6px); 
        max-width: 100%;
        border-radius: 10px;
        height: auto; 
        min-height: unset; 
    }
    .card-skeleton .thumb { border-radius: 10px 10px 0 0; }
    .card-skeleton .content { margin-top: -10px; border-radius: 10px 10px 0 0; padding: 12px 8px; gap: 8px; }
    .card-skeleton .badge { width: 60px; height: 16px; padding: 0; }
    .card-skeleton .text { height: auto; gap: 8px; }
    .card-skeleton .bar { gap: 4px; }
    .card-skeleton .bar2 { gap: 4px; }
    .card-skeleton .frame-1000003959 { gap: 4px; }
    .card-skeleton .rectangle { width: 40px; height: 6px; left: 8px; }
    .card-skeleton .rectangle2, .card-skeleton .rectangle3 { height: 10px; }
    .card-skeleton .rectangle4, .card-skeleton .rectangle5 { height: 8px; }
    .card-skeleton .rectangle6, .card-skeleton .rectangle7 { display: none; }
    .card-skeleton .rectangle8 { width: 50px; height: 8px; }
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.scroll-sentinel { text-align: center; padding: 0; font-size: 18px; color: #666; font-weight: 500; width: 100%;}
.scroll-sentinel .article-grid.load-more { margin-top: 80px; }
@media screen and (max-width: 767px) {
    /* .scroll-sentinel .article-grid.load-more { margin-top: 60px; } */
}

/* Empty State Styles */
.no-articles, .no-articles * {
    box-sizing: border-box;
}
.no-articles {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    height: 620px;
    position: relative;
}
.no-articles .icon {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    position: relative;
    overflow: visible;
    aspect-ratio: 1;
}
.no-articles .icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.no-articles .heading-3-become-a-monteno {
    color: var(--default, #000000);
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    line-height: 150%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    margin: 0;
}
.no-articles .heading-3-become-a-monteno2 {
    color: var(--default, #000000);
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 150%;
    font-weight: 400;
    position: relative;
    align-self: stretch;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .no-articles { height: 330px; gap: 12px; }
    .no-articles .icon { width: 52px; height: 52px; }
    .no-articles .heading-3-become-a-monteno { font-size: 20px; }
    .no-articles .heading-3-become-a-monteno2 { font-size: 16px; }
}

.all-articles-loaded,
.all-articles-loaded * {
  box-sizing: border-box;
}
.all-articles-loaded {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  padding: 60px 20px;
  width: 100%;
}
.all-articles-loaded .icon {
  background: var(--grey-grey08, #cdcdcd);
  border-radius: 99px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.all-articles-loaded .icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}
.all-articles-loaded .all-articles-loaded2 {
  color: var(--grey-grey07, #9c9c9c);
  text-align: center;
  font-size: 20px;
  line-height: 150%;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 767px) {
    .all-articles-loaded .icon {
        width: 20px;
        height: 20px;
    }
    .all-articles-loaded .icon svg {
        width: 12px;
        height: 12px;
    }
    .all-articles-loaded .all-articles-loaded2 {
        font-size: 14px;
    }
}

/* =========================================
   Insight Detail Styles
   ========================================= */
.insight-detail-wrapper, .insight-detail-wrapper * { box-sizing: border-box; }
.insight-detail-wrapper { background-color: #ffffff; padding: 90px 0px 178px 0px; }
.insight-detail-wrapper .container { padding: 0 18px; max-width: 1040px;}
.insight-detail-article { margin-top: 65px; }
.insight-detail-header { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; justify-content: center; align-self: stretch; flex-shrink: 0; position: relative; margin-bottom: 40px; padding: 32px 0; border-top: 1px solid #9C9C9C; border-bottom: 1px solid #9C9C9C;}
.insight-detail-category { color: var(--blue-blue02, #0093CF); text-align: center; font-family: "Poppins", sans-serif; font-size: 20px; line-height: 150%; font-weight: 600; position: relative; display: inline-flex; align-items: center; justify-content: center; text-transform: capitalize; }
.insight-detail-category.cd { color: #0093CF; }
.insight-detail-category.alp { color: #FF88B9; }
.insight-detail-category.tunituni { color: #1F8F55; }
.insight-detail-title-wrap { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; justify-content: flex-start; flex-shrink: 0; position: relative; width: 100%; }
.insight-detail-title { color: var(--default, #000000); text-align: left; font-family: "Poppins", sans-serif; font-size: 34px; line-height: 1.4; font-weight: 700; position: relative; display: flex; align-items: center; justify-content: flex-start; }
.insight-detail-date { color: var(--grey-grey07, #9c9c9c); text-align: left; font-family: "Poppins", sans-serif; font-size: 16px; line-height: 100%; font-weight: 400; position: relative; }

/* 본문 공통 클래스 (post/1.html과 연동) - 중복 방지 스코핑 적용 */
.insight-detail-wrapper .sec-meta-box { display: none !important; box-sizing: border-box; background: var(--grey-grey10, #f5f5f5); border-radius: 8px; padding: 16px; display: flex; align-items: center; align-self: stretch; margin-bottom: 40px; }
.insight-detail-wrapper .sec-meta-box p { color: #5c5c5c; text-align: left; font-family: "Poppins", sans-serif; font-size: 20px; line-height: 160%; font-weight: 400; margin: 0; flex: 1; }
.insight-detail-wrapper .sec-meta-box ul { color: #5c5c5c; text-align: left; font-family: "Poppins", sans-serif; font-size: 20px; line-height: 160%; font-weight: 400; margin: 0; flex: 1; padding-left: 1.5em; }
.insight-detail-wrapper .sec-meta-box li { display: list-item; list-style-type: none; position: relative; margin-bottom: 4px; }
.insight-detail-wrapper .sec-meta-box li::before { content: ""; position: absolute; left: -14px; top: 0.65em; width: 5px; height: 5px; border-radius: 50%; background-color: currentColor; }
.insight-detail-wrapper .sec-meta-box li:last-child { margin-bottom: 0; }
.insight-detail-wrapper .sec-meta-box b { font-weight: 600; color: #5c5c5c; }
.insight-detail-wrapper .sec-text { color: var(--default, #000000); text-align: left; font-family: "Poppins", sans-serif; font-size: 18px; line-height: 160%; font-weight: 400; position: relative; align-self: stretch; margin-bottom: 16px; }
.insight-detail-wrapper .sec-text.sec-list-title { margin-bottom: 0; }
.insight-detail-wrapper .sec-text u { text-decoration: underline; background-color: #EAF5FF;}
.insight-detail-wrapper .sec-image { align-self: stretch; flex-shrink: 0; position: relative; border-radius: 0; overflow: hidden; margin-bottom: 16px; }
.insight-detail-wrapper .sec-image img { width: 100%; height: auto; object-fit: cover; display: block; }
.insight-detail-wrapper .sec-block { padding: 0px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; align-self: stretch; flex-shrink: 0; position: relative; }
.insight-detail-wrapper .sec-block + .sec-block { margin-top: 64px; }
.insight-detail-wrapper .content-title-block { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; justify-content: flex-start; align-self: stretch; flex-shrink: 0; position: relative; margin-bottom: 0; }
.insight-detail-wrapper .content-title-text { color: var(--default, #000000); text-align: left; font-family: "Poppins", sans-serif; font-size: 26px; line-height: 160%; font-weight: 600; position: relative; align-self: stretch; margin: 0; }
.insight-detail-wrapper .sec-list { list-style-type: none; padding-left: 1.5em; margin-top: 4px; margin-bottom: 16px; font-family: "Poppins", sans-serif; font-size: 18px; line-height: 160%; color: var(--default, #000000); }
.insight-detail-wrapper .sec-list li { display: list-item; list-style-type: none; position: relative; margin-bottom: 2px; }
.insight-detail-wrapper .sec-list li::before { content: ""; position: absolute; left: -18px; top: 0.65em; width: 5px; height: 5px; border-radius: 50%; background-color: currentColor; }
.insight-detail-wrapper .highlight-box { background: var(--blue-blue09, #eaf5ff); border-style: solid; border-color: var(--blue-blue02, #0093CF); border-width: 0px 0px 0px 8px; padding: 24px 32px 24px 24px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; justify-content: flex-start; align-self: stretch; flex-shrink: 0; position: relative; margin-top: 64px;}
.insight-detail-wrapper .highlight-box .hl-title { color: var(--default, #000000); text-align: left; font-family: "Poppins", sans-serif; font-size: 26px; line-height: 160%; font-weight: 600; position: relative; align-self: stretch; margin: 0; }
.insight-detail-wrapper .highlight-box .hl-text { color: var(--default, #000000); text-align: left; font-family: "Poppins", sans-serif; font-size: 18px; line-height: 160%; font-weight: 400; position: relative; align-self: stretch; margin: 0; }
.insight-detail-wrapper .back-btn-wrapper { margin-top: 65px; display: flex; justify-content: center; width: 100%; }
.insight-detail-wrapper .btn-back-list {
  background: #ffffff;
  border-radius: 62px;
  border: 1px solid #ff5240;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.insight-detail-wrapper .btn-back-list:hover {
  background: #ff5240;
}
.insight-detail-wrapper .btn-back-list .list-text {
  color: #ff5240;
  font-size: 24px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.insight-detail-wrapper .btn-back-list:hover .list-text {
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
    .insight-detail-wrapper .container { 
        padding: 0 40px; 
    }
}
@media screen and (max-width: 767px) {
    .insight-detail-wrapper {
        padding: 50px 0px 70px 0px;
    }
    .insight-detail-wrapper .container {
        padding: 0 20px;
    }
    .insight-detail-article { margin-top: 40px; }
    .insight-detail-header { gap: 12px; margin-bottom: 20px; padding: 16px 0;}
    .insight-detail-title-wrap { gap: 8px; }
    .insight-detail-category { font-size: 10px; }
    .insight-detail-title { font-size: 18px; }
    .insight-detail-date { font-size: 9px; }
    
    .insight-detail-wrapper .sec-meta-box {
        padding: 8px;
        border-radius: 4px;
        margin-bottom: 20px;
    }
    .insight-detail-wrapper .sec-meta-box p, 
    .insight-detail-wrapper .sec-meta-box ul {
        font-size: 11px;
    }
    .insight-detail-wrapper .sec-meta-box li::before { left: -12px; width: 3px; height: 3px; }
    .insight-detail-wrapper .sec-text { font-size: 11px; margin-bottom: 8px; }
    .insight-detail-wrapper .sec-list { font-size: 11px; margin-top: 0; margin-bottom: 16px; }
    .insight-detail-wrapper .sec-list li {
        margin-bottom: 0;
    }
    .insight-detail-wrapper .sec-list li:last-child { margin-bottom: 0; }
    .insight-detail-wrapper .sec-list li::before { left: -12px; width: 3px; height: 3px; }
    .insight-detail-wrapper .sec-image { margin-bottom: 8px; }
    
    .insight-detail-wrapper .sec-block { padding-bottom: 0;}
    .insight-detail-wrapper .sec-block + .sec-block { margin-top: 32px; }
    .insight-detail-wrapper .content-title-block { gap: 2px; margin-bottom: 4px; }
    .insight-detail-wrapper .content-title-text, 
    .insight-detail-wrapper .highlight-box .hl-title { 
        font-size: 15px; 
    }
    .insight-detail-wrapper .highlight-box .hl-text { font-size: 11px; }
    .insight-detail-wrapper .highlight-box {
        padding: 12px 16px 12px 13px;
        gap: 8px;
        border-width: 0 0 0 3px;
        margin-top: 24px;
    }
    .insight-detail-wrapper .back-btn-wrapper {
        margin-top: 40px;
    }
    .insight-detail-wrapper .btn-back-list {
        height: 27px;
        padding: 0 24px;
    }
    .insight-detail-wrapper .btn-back-list .list-text {
        font-size: 12px;
    }
}

/* =========================================
   Skeleton UI Styles
   ========================================= */
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes skeleton-glow { 0% { background-color: #e9ecef; } 50% { background-color: #f8f9fa; } 100% { background-color: #e9ecef; } }

.skeleton {
    background: linear-gradient(90deg, #F0F2F5 25%, #E4E7ED 50%, #F0F2F5 75%);
    background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: 8px; color: transparent !important; user-select: none;
}
.insight-detail-wrapper .skeleton { animation: skeleton-glow 1.5s ease-in-out infinite; background-color: #e9ecef; background-image: none; }
.skeleton.text { height: 1em; margin-bottom: 0.75em; }
.skeleton.title { height: 1.5em; margin-bottom: 1em; }
.skeleton.badge { width: 120px; height: 25px; margin-bottom: 12px; border-radius: 6px; }
.insight-detail-wrapper .skeleton.badge { width: 160px; height: 30px; margin: 0; }
.insight-detail-wrapper .skeleton.title { height: 36px; margin: 0; }
.skeleton.date { width: 100px; height: 14px; margin-top: 10px; border-radius: 4px; }
.insight-detail-wrapper .skeleton.date { width: 100px; height: 20px; margin: 0; }
.skeleton.image { width: 100%; border-radius: 16px; margin: 40px 0; }
.insight-detail-wrapper .skeleton.image { height: auto; aspect-ratio: 640 / 427; margin: 20px 0; border-radius: 0; }
.insight-detail-wrapper .skeleton.text { height: 20px; margin-bottom: 12px; border-radius: 4px; }
.insight-detail-wrapper .skeleton.text.line-short { margin-bottom: 40px; }
.insight-card.skeleton-card { pointer-events: none; }
.skeleton.line { width: 100%; }
.skeleton.line-short { width: 80%; }
.skeleton.line-md { width: 60%; }

/* Utils */
@media (max-width: 1024px) { .hidden-tablet { display: none !important; } }
@media (max-width: 767px) { 
    .hidden-mobile { display: none !important; } 
    
    .skeleton.badge { width: 60px; height: 12.5px; margin-bottom: 6px; border-radius: 3px; }
    .skeleton.date { width: 50px; height: 7px; margin-top: 5px; border-radius: 2px; }
    .skeleton.image { border-radius: 8px; margin: 20px 0; }

    .insight-detail-wrapper .skeleton.badge { width: 80px; height: 16px; margin: 0; }
    .insight-detail-wrapper .skeleton.title { height: 20px; margin: 0; }
    .insight-detail-wrapper .skeleton.date { width: 75px; height: 11px; margin: 0; }
    .insight-detail-wrapper .skeleton.image { height: auto; aspect-ratio: 640 / 427; margin: 10px 0; }
    .insight-detail-wrapper .skeleton.text { height: 11px; margin-bottom: 7px; border-radius: 2px; }
    .insight-detail-wrapper .skeleton.text.line-short { margin-bottom: 24px; }
}