/**********************************************************
상단 1 기사
**********************************************************/

.news-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(280px, 360px));*/
    gap: 26px;
    align-items: start;
    padding: 20px 20px 0 20px;
}

.news-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #d8e0ea;
}

.thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #f1f5f9;
    overflow: hidden;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform .35s ease;
}

.news-card:hover .thumb img {
    transform: scale(1.04);
}

/* 선택: 이미지 위 그라데이션 + 작은 라벨 */
.thumb::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 48%;
    background: linear-gradient(to top, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0));
    pointer-events: none;
    opacity: .9;
}

.content {
    padding-top: 10px;
}

.title {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -.02em;

    /* 두 줄까지만 보여주고 말줄임 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}

/**********************************************************
상단 2 기사 리스트 4개
**********************************************************/

.news-section {
    background: #fff;
    margin-top: 10px;
}

.news-list {
    margin: 0;
    padding: 0 16px;
    /* ← 모바일 좌우 여백 핵심 */
    list-style: none;
}

.news-item {
    border-bottom: 1px solid #e5e7eb;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item a {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    text-decoration: none;
    color: #111;
    align-items: center;
}

/* 썸네일 */
.news-section .thumb {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
}

.news-section .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 텍스트 */
.text {
    flex: 1;
}

.title {
    font-size: 15.5px;
    line-height: 1.45;
    font-weight: 600;

    /* 두 줄 말줄임 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 터치 피드백 */
.news-item a:active {
    background: #f3f4f6;
}

/**********************************************************
상단 3 기사 슬라이드
**********************************************************/
.kff-card {
    background: #fff;
    border-radius: 16px;
    margin: 16px;
    padding: 16px 0 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

/* 슬라이더 */
.kff-slider {
    overflow: hidden;
}

.kff-track {
    display: flex;
    transition: transform .4s ease;
}

/* 슬라이드 */
.kff-slide {
    min-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

.kff-slide a {
    text-decoration: none;
    color: #111;
}

.kff-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    background: #f1f5f9;
}

.kff-slide h4 {
    margin: 10px 4px 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 네비 */
.kff-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
}

.nav-btn {
    border: none;
    background: #f3f4f6;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
}

.dot.on {
    background: #111;
}

/* 하단 브랜드 */
.nameValue {
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
    letter-spacing: .12em;
    color: #9ca3af;
}

/**********************************************************
상단 5 기사 5개 리스트
**********************************************************/
.spotlight {
    background: #fff;
    padding: 16px;
}

/* 섹션 타이틀 */
.spotlight-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #d9d9d9;
}

/* 메인 기사 */
.spotlight-main a {
    text-decoration: none;
    color: #111;
}

.main-thumb {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.main-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.main-title {
    margin: 12px 0 6px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}

.main-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 하단 리스트 */
.spotlight-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.spotlight-list li {
    border-top: 1px solid #e5e7eb;
}

.spotlight-list a {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: #111;
    align-items: center;
}

.spotlight-list .thumb {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}

.spotlight-list .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-list .title {
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 터치 피드백 */
.spotlight a:active {
    background: #f3f4f6;
}

/**********************************************************
상단 6 기사 5개 오피니어
**********************************************************/

.opinion {
    background: #fff;
    padding: 16px;
    margin-top: -10px;
}

/* 헤더 */
.sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 8px;
}

.sec-head .title {
    font-size: 18px;
    font-weight: 800;
}

.sec-head .more a {
    font-size: 20px;
    text-decoration: none;
    color: #111;
}

/* TODAY */
.today {
    background: #f9fafb;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
}

.today .tag {
    display: block;
    /* 핵심 */
    font-size: 12px;
    font-weight: 700;
    color: #e60012;
    margin: 0 auto 6px;
    /* 핵심 */
    text-align: center;
}

.today .morelink {
    display: block;
    text-decoration: none;
    color: #111;
    text-align: center;
}

.t-title {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

/* 리스트 */
.op-list {
    border-top: 1px solid #e5e7eb;
}

.op-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: #111;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.op-item:last-child {
    border-bottom: none;
}

/* 아바타 */
.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #e5e7eb;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 본문 */
.op-body {
    flex: 1;
}

.label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 2px;
}

.op-title {
    font-size: 15.5px;
    line-height: 1.45;
    font-weight: 600;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 광고 */
.adsection {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.adbox {
    width: 100%;
    height: auto;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #9ca3af;
}

/* 터치 피드백 */
.opinion a:active {
    background: #f3f4f6;
}

/**********************************************************
상단 7 많이 본 기사 10
**********************************************************/

.top50 {
    background: #fff;
    padding: 16px;
}

/* 헤더 */
.top50-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    background: #1c71c9;
    padding: 10px;
}

.top50-head h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.top50-head .info {
    font-size: 14px;
    color: #6b7280;
}

/* 슬라이더 */
.top50-slider {
    overflow: hidden;
}

.top50-track {
    display: flex;
    transition: transform .4s ease;
}

.top50-slide {
    min-width: 100%;
}

.top50-slide ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top50-slide li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.top50-slide li:last-child {
    border-bottom: none;
}

.top50-slide span {
    width: 22px;
    font-size: 15px;
    font-weight: 800;
    color: #e60012;
    text-align: center;
}

.top50-slide a {
    font-size: 15.5px;
    line-height: 1.4;
    font-weight: 600;
    color: #111;
    text-decoration: none;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 네비 */
.top50-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.top50-nav button {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    font-size: 18px;
    cursor: pointer;
}

.info {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    color: #6b7280;
}

/* 툴팁 */
.info::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 20%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 10;
}

/* 화살표 */
.info::before {
    content: "";
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
    opacity: 0;
    transition: opacity .2s ease;
}

/* 보여주기 */
.info.show::after,
.info.show::before {
    opacity: 1;
}

/**********************************************************
상단 8 메뉴 뉴스
**********************************************************/

.news-col {
    background: #fff;
    padding: 16px;
}

/* 헤더 */
.col-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    border-top: 1px solid #d9d9d9;
    padding-top: 20px;
}

.col-head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.col-head .more {
    font-size: 20px;
    text-decoration: none;
    color: #111;
}

/* 대표 기사 */
.main-news {
    margin-bottom: 12px;
}

.main-news a {
    text-decoration: none;
    color: #111;
}

.main-news img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.main-news h3 {
    margin: 10px 0 0;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 리스트 */
.sub-news {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-news li {
    border-top: 1px solid #e5e7eb;
}

.sub-news a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
    color: #111;
    text-decoration: none;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 터치 피드백 */
.news-col a:active {
    background: #f3f4f6;
}

/**********************************************************
상단 9 사회적기업
**********************************************************/

.card {
    background: #fff;
    padding: 0 20px;
    border: 0px solid rgba(0, 0, 0, .125);
}

/* 헤더 */
.card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 10px;
}

.card-head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.card-head .arrow {
    font-size: 20px;
    text-decoration: none;
    color: #111;
}

/* 대표 기사 */
.main-item {
    padding: 12px 0 14px;
}

.main-item .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

.main-title {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.main-title a {
    text-decoration: none;
    color: #111;
}

/* 리스트 */
.list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e5e7eb;
}

.list li {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.list li:last-child {
    border-bottom: none;
}

.list img {
    width: 120px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f1f5f9;
}

.list .txt {
    flex: 1;
}

.list strong {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 2px;
}

.list p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.45;
    font-weight: 600;
}

.list a {
    text-decoration: none;
    color: #111;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 터치 피드백 */
.card a:active {
    background: #f3f4f6;
}

/**********************************************************
상단 10 유튜브
**********************************************************/

/* ===============================
   YouTube 카드 전체
================================ */
.card.card-center {
    background: linear-gradient(160deg, #020617 0%, #020617 60%, #0f172a 100%);
    border-radius: 22px;
    padding: 18px 16px 20px;
    position: relative;
    overflow: hidden;
    margin: 20px 20px;
}

/* 상단 네온 포인트 */
.card.card-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #ff0000, #ff6b6b, #f97316);
}

/* ===============================
   헤더
================================ */
.youtube-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.youtube-head .yt {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .08em;
    color: #ff4d4d;
}

.youtube-head .on {
    font-size: 11px;
    font-weight: 900;
    padding: 4px 9px;
    border-radius: 999px;
    background: #ff0000;
    color: #fff;
    animation: livePulse 1.4s ease-in-out infinite;
}

/* LIVE 펄스 */
@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 rgba(255, 0, 0, .6);
    }

    50% {
        box-shadow: 0 0 10px rgba(255, 0, 0, .9);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 0, 0, .6);
    }
}

/* ===============================
   영상 영역
================================ */
.youtube-box {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

/* 16:9 비율 */
.youtube-box::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.youtube-box iframe,
.youtube-box video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ▶ 플레이 힌트 (hover 시만) */
/*.youtube-box::after {
    content: '▶';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}*/

.youtube-box:hover::after {
    opacity: 1;
}

/* ===============================
   영상 제목
================================ */
.youtube-title {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 800;
    color: #e5e7eb;
    line-height: 1.4;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===============================
   영상 없음 상태
================================ */
.youtube-box.empty {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: repeating-linear-gradient(45deg,
            #020617,
            #020617 10px,
            #020617 20px,
            #020617 30px);
}

.no-video {
    font-size: 14px;
    font-weight: 700;
}



/**********************************************************
상단 11 최신뉴스
**********************************************************/

.card-right {
    background: #fff;
    padding: 0 20px;
}

/* 헤더 */
.card-head {
    padding: 14px 0 10px;
}

.card-head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

/* 랭크 리스트 */
.rank-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rank-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.rank-list li:last-child {
    border-bottom: none;
}

/* 숫자 */
.rank {
    width: 28px;
    font-size: 14px;
    font-weight: 800;
    color: #2563eb;
    text-align: center;
    flex-shrink: 0;
}

/* 제목 */
.rank-list a {
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
    color: #111;
    text-decoration: none;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 비어있을 때 */
.empty {
    font-size: 14px;
    color: #9ca3af;
    padding: 12px 0;
}

/* 터치 피드백 */
.card-right a:active {
    background: #f3f4f6;
}

/**********************************************************
상단 뉴스티컷
**********************************************************/

/* ===============================
   속보 티커 전체
================================ */
.news-ticker {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: linear-gradient(90deg, #dc2626, #991b1b);
    color: #fff;
    overflow: hidden;
}

/* 속보 라벨 */
.news-ticker__label {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 900;
    padding: 4px 8px;
    background: #fff;
    color: #b91c1c;
    border-radius: 6px;
}

/* 트랙 */
.news-ticker__track {
    flex: 1;
    height: 24px;
    overflow: hidden;
    position: relative;
}

/* 콘텐츠 */
.news-ticker__content {
    display: flex;
    flex-direction: column;
    transition: transform .45s ease;
}

.news-ticker__item {
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;

    display: block;
    /* 중요 */
    white-space: nowrap;
    /* 중요 */
    overflow: hidden;
    /* 중요 */
    text-overflow: ellipsis;
    /* 중요 */

    width: 100%;
    /* 핵심 */
}

/* ▶ 아이콘 */
.news-ticker__bullet {
    color: #fde047;
    font-size: 12px;
}

/* 1개 기사일 때 강조 */
.news-ticker.single .news-ticker__item {
    animation: blinkTicker 1.2s ease-in-out infinite;
}

@keyframes blinkTicker {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}



/* =================================================
     POWER SITE
  ================================================= */

.creator-section {
    padding: 32px 16px 40px;
    background: linear-gradient(135deg, #0f172a, #020617);
    border-radius: 24px;
    margin: 24px 24px;
}

.section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #38bdf8;
    margin-bottom: 22px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(to right, #38bdf8, #22c55e);
    margin: 10px auto 0;
    border-radius: 99px;
}

/* ===============================
   슬라이더
================================ */
.creator-slider {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* 트랙 */
.creator-grid {
    display: flex;
    width: 100%;
    max-width: 360px;
    transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
}

/* ===============================
   카드 (핵심)
================================ */
.creator-card {
    flex: 0 0 100%;
    background: linear-gradient(180deg, #ffffff, #f1f5f9);
    border-radius: 22px;
    padding: 20px 18px 22px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    text-decoration: none;
    color: #020617;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    position: relative;
    overflow: hidden;
}

/* 카드 상단 글로우 라인 */
.creator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(to right,
            #38bdf8,
            #22c55e,
            #a855f7);
}

/* ===============================
   아바타
================================ */
.creator-avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
    font-size: 13px;
    color: #fff;
    margin: 18px 0 14px;

    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.35),
        inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

/* 아바타 컬러 */
.creator-avatar.red {
    background: linear-gradient(135deg, #20a365, #05d05e);
}

.creator-avatar.black {
    background: linear-gradient(135deg, #020617, #334155);
}

.creator-avatar.teal {
    background: linear-gradient(135deg, #0d9488, #22d3ee);
}

.creator-avatar.green {
    background: linear-gradient(135deg, #03c660, #50da92);
}

/* ===============================
   텍스트
================================ */
.creator-info strong {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    display: block;
}

.creator-id {
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
}

.creator-info p {
    font-size: 13px;
    color: #334155;
    margin-top: 10px;
    line-height: 1.45;
}

/* ===== 좌우 화살표 ===== */
.creator-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    cursor: pointer;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* 왼쪽 / 오른쪽 위치 */
.creator-arrow.prev {
    left: 6px;
}

.creator-arrow.next {
    right: 6px;
}

/* 슬라이더 기준점 */
.creator-slider {
    position: relative;
}

/* 모바일에서만 표시 */
@media (min-width: 768px) {
    .creator-arrow {
        display: none;
    }
}


/* ===============================
   바다정보
================================ */

/* ===== 전체 ===== */
.info-section {
    width: 100%;
    margin: 30px auto;
    padding: 20px 16px;
    background: #f5f7fb;
    border-radius: 16px;
}

/* 제목 */
.info-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-title::before {
    content: "📌";
}

/* 리스트 */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* 카드 공통 */
.info-item a {
    display: block;
    text-decoration: none;
}

.info-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-radius: 14px;
    color: #fff;
    transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* 카드 hover */
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* 카드 색상 구분 */
.card-tide {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.card-current {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.card-share {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* 텍스트 */
.info-text {
    display: flex;
    flex-direction: column;
}

.info-text strong {
    font-size: 16px;
    font-weight: 700;
}

.info-text span {
    font-size: 13px;
    opacity: 0.9;
}

/* 오른쪽 화살표 */
.info-arrow {
    font-size: 18px;
    opacity: 0.9;
}

/* 모바일 */
@media (max-width: 480px) {
    .info-section {
        border-radius: 0;
    }

    .info-card {
        padding: 16px 18px;
    }
}

.info-section,
.info-list,
.info-item,
.info-card {
    width: 100%;
    max-width: 100%;
}

/* ===============================
   제보
================================ */

/* ===== 제보 배너 ===== */
.jabo {
    padding: 16px;
}

.jabo a {
    display: block;
    text-decoration: none;
}

.jabo-banner {
    position: relative;
    padding: 22px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* hover 효과 */
.jabo-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

/* 내부 텍스트 */
.jabo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jabo-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jabo-icon {
    font-size: 22px;
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 50%;
}

.jabo-title {
    font-size: 16px;
    font-weight: 700;
}

.jabo-sub {
    font-size: 13px;
    opacity: 0.9;
}

/* 오른쪽 화살표 */
.jabo-arrow {
    font-size: 20px;
    opacity: 0.9;
}

/* 살짝 반짝이는 애니메이션 */
.jabo-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.6),
        rgba(255,255,255,0.2)
    );
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -75%; }
    50% { left: 120%; }
    100% { left: 120%; }
}

/* 모바일 */
@media (max-width: 480px) {
    .jabo-banner {
        padding: 18px;
    }
}
