/*
Theme Name: PICK Child
Description: Lightweight editorial commerce child theme for PICK.
Template: generatepress
Version: 1.0.0
Text Domain: pick-child
*/

:root {
    --pick-ink: #17211b;
    --pick-muted: #667069;
    --pick-line: #e5e9e6;
    --pick-surface: #f6f8f6;
    --pick-card: #ffffff;
    --pick-brand: #176b4d;
    --pick-brand-dark: #0f5039;
    --pick-accent: #eef8f3;
    --pick-warm: #fff4e8;
    --pick-radius-small: 12px;
    --pick-radius: 20px;
    --pick-shadow: 0 12px 36px rgba(23, 33, 27, 0.08);
    --pick-content: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--pick-ink);
    background: #ffffff;
    font-family: Pretendard, "Noto Sans KR", -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--pick-brand);
    text-underline-offset: 3px;
}

a:hover {
    color: var(--pick-brand-dark);
}

.grid-container {
    max-width: var(--pick-content);
}

.site-content {
    padding-top: 32px;
}

.content-area {
    width: 100%;
}

.widget-area {
    display: none;
}

.site-header {
    border-bottom: 1px solid var(--pick-line);
    background: rgba(255, 255, 255, 0.96);
}

.inside-header {
    padding: 22px 24px;
}

.site-branding .main-title {
    font-size: 27px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.site-branding .main-title a {
    color: var(--pick-ink);
}

.site-description {
    color: var(--pick-muted);
    font-size: 13px;
}

.main-navigation {
    border-bottom: 1px solid var(--pick-line);
    background: #ffffff;
}

.main-navigation .main-nav ul li a {
    color: var(--pick-ink);
    font-weight: 700;
    padding-left: 18px;
    padding-right: 18px;
}

.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li[class*="current-menu-"] > a {
    color: var(--pick-brand);
    background: transparent;
}

.entry-title,
.entry-content h1,
.entry-content h2,
.entry-content h3 {
    color: var(--pick-ink);
    line-height: 1.3;
    letter-spacing: -0.035em;
}

.entry-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 850;
}

.entry-content h2 {
    margin-top: 2.3em;
    font-size: clamp(25px, 3.2vw, 34px);
    font-weight: 820;
}

.entry-content h3 {
    margin-top: 1.8em;
    font-size: clamp(20px, 2.5vw, 25px);
    font-weight: 780;
}

.wp-block-button__link {
    min-height: 48px;
    padding: 11px 18px;
    border-radius: var(--pick-radius-small);
    background: var(--pick-brand);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.wp-block-button__link:hover {
    background: var(--pick-brand-dark);
    color: #ffffff;
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid var(--pick-line);
    background: var(--pick-surface);
}

.site-info {
    color: var(--pick-muted);
    background: transparent;
    font-size: 13px;
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }

    .site-content {
        padding: 20px;
    }

    .inside-header {
        padding: 18px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/* =========================================================
   PICK ARTICLE SIDEBAR LAYOUT
   ========================================================= */

@media (min-width: 769px) {
    .single-post .site-content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 34px;
        align-items: start;
    }

    .single-post .content-area {
        width: auto;
        min-width: 0;
    }

    .single-post .widget-area {
        display: block;
        width: auto;
        min-width: 0;
    }

    .single-post #right-sidebar .inside-right-sidebar {
        position: sticky;
        top: 24px;
    }
}

.single-post .widget-area {
    color: var(--pick-ink);
}

.single-post .widget-area .widget {
    margin: 0 0 22px;
    padding: 22px;
    border: 1px solid var(--pick-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(23, 33, 27, 0.045);
}

.single-post .widget-area .widget-title,
.single-post .widget-area h2 {
    margin: 0 0 15px;
    color: var(--pick-ink);
    font-size: 18px;
    font-weight: 820;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.pick-side-links {
    display: grid;
    gap: 8px;
}

.pick-side-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--pick-accent);
    color: var(--pick-ink);
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
}

.pick-side-links a:hover {
    background: #e2f3ea;
    color: var(--pick-brand-dark);
}

.single-post .widget_recent_entries ul,
.single-post .wp-block-latest-posts {
    margin: 0;
    padding: 0;
    list-style: none;
}

.single-post .wp-block-latest-posts li {
    margin: 0;
    padding: 11px 0;
    border-bottom: 1px solid var(--pick-line);
}

.single-post .wp-block-latest-posts li:first-child {
    padding-top: 0;
}

.single-post .wp-block-latest-posts li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.single-post .wp-block-latest-posts a {
    color: var(--pick-ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
}

.single-post .wp-block-latest-posts a:hover {
    color: var(--pick-brand);
}

.pick-related-list {
    display: grid;
}

.pick-related-list a {
    padding: 11px 0;
    border-bottom: 1px solid var(--pick-line);
    color: var(--pick-ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
}

.pick-related-list a:first-child {
    padding-top: 0;
}

.pick-related-list a:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pick-related-list a:hover {
    color: var(--pick-brand);
}

.pick-ad-placeholder {
    display: grid;
    min-height: 250px;
    place-items: center;
    border: 1px dashed #ccd4cf;
    border-radius: 12px;
    background: #fafcfb;
    color: #98a19b;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .single-post .site-content {
        display: block;
    }

    .single-post .content-area {
        width: 100%;
    }

    .single-post .widget-area {
        display: block;
        width: 100%;
        margin-top: 36px;
    }

    .single-post #right-sidebar .inside-right-sidebar {
        position: static;
    }
}

/* =========================================================
   PICK COMPACT HEADER
   ========================================================= */

.site-header {
    border-bottom: 1px solid var(--pick-line);
    background: #fff;
}

.site-header .inside-header {
    max-width: var(--pick-content);
    min-height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    margin: 0;
}

.site-branding .main-title {
    margin: 0;
    font-size: 24px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.04em;
}

.site-description {
    display: none;
}

/* 메뉴 */
.main-navigation {
    margin: 0;
    border: 0;
    background: transparent;
}

.main-navigation .inside-navigation {
    padding: 0;
}

.main-navigation .main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-navigation .main-nav ul li a {
    padding: 25px 14px;
    color: var(--pick-ink);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.4;
}

.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li[class*="current-menu-"] > a {
    color: var(--pick-brand);
    background: transparent;
}

/* 헤더 아래 본문 여백 */
.single-post .site-content {
    padding-top: 44px;
}

/* 모바일 */
@media (max-width: 768px) {
    .site-header .inside-header {
        min-height: 62px;
        padding: 0 20px;
    }

    .site-branding .main-title {
        font-size: 22px;
    }

    .main-navigation .main-nav ul li a {
        padding: 14px 12px;
    }

    .single-post .site-content {
        padding-top: 24px;
    }
}

/* =========================================================
   PICK STICKY SIDEBAR FIX
   ========================================================= */

@media (min-width: 769px) {
    .single-post .site-content {
        align-items: start;
        overflow: visible !important;
    }

    .single-post .widget-area,
    .single-post #right-sidebar,
    .single-post #right-sidebar .inside-right-sidebar {
        overflow: visible !important;
    }

    .single-post #right-sidebar {
        align-self: start;
    }

    .single-post #right-sidebar .inside-right-sidebar {
        position: sticky !important;
        top: 24px;
        z-index: 20;
    }
}

/* =========================================================
   PICK SIDEBAR - FIXED DESKTOP
   ========================================================= */

@media (min-width: 1000px) {

    .single-post #right-sidebar {
        width: 310px !important;
        position: fixed !important;
        top: 125px !important;

        /* 1180px 중앙 컨테이너의 오른쪽 컬럼 위치 */
        left: calc(50% + 280px) !important;

        margin: 0 !important;
        padding: 0 !important;
        z-index: 50;
    }

    .single-post #right-sidebar .inside-right-sidebar {
        position: static !important;
        width: 100% !important;

        /* 화면보다 길어질 경우 사이드바 내부에서 스크롤 */
        max-height: calc(100vh - 145px);
        overflow-y: auto !important;
        overflow-x: hidden !important;

        scrollbar-width: thin;
    }
}

/* 태블릿/모바일에서는 고정 해제 */
@media (max-width: 999px) {

    .single-post #right-sidebar {
        position: static !important;
        width: 100% !important;
        margin-top: 36px !important;
    }

    .single-post #right-sidebar .inside-right-sidebar {
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
    }
}

/* PICK Sidebar Ad */
.pick-sidebar-ad {
    width: 100%;
    min-height: 250px;
    overflow: hidden;
}

.pick-sidebar-ad .adsbygoogle {
    width: 100%;
}

/* =========================================================
   PICK PROFESSIONAL DESIGN 2026
   ========================================================= */

:root {
    --pick-page: #f5f7f5;
    --pick-ink: #18201c;
    --pick-muted: #68716c;
    --pick-line: #e1e6e2;
    --pick-surface: #f5f7f5;
    --pick-card: #ffffff;
    --pick-brand: #176b4d;
    --pick-brand-dark: #104d39;
    --pick-accent: #edf6f1;
    --pick-radius: 18px;
    --pick-radius-large: 26px;
}

body {
    background: var(--pick-page);
    color: var(--pick-ink);
}

.site-content {
    padding-top: 42px;
}

a {
    transition:
        color .18s ease,
        background-color .18s ease,
        border-color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.site-header {
    background: rgba(255,255,255,.97);
}

.inside-header {
    padding-top: 20px;
    padding-bottom: 20px;
}

.site-branding .main-title {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -.055em;
}

.site-description {
    margin-top: 3px;
    color: #7a827d;
    font-size: 12px;
}

.main-navigation .main-nav ul li a {
    position: relative;
    min-height: 54px;
    font-size: 14px;
}

.main-navigation .main-nav ul li[class*="current-menu-"] > a::after,
.main-navigation .main-nav ul li:hover > a::after {
    position: absolute;
    right: 18px;
    bottom: 8px;
    left: 18px;
    height: 2px;
    border-radius: 100px;
    background: var(--pick-brand);
    content: "";
}

body:not(.home) .inside-article {
    overflow: hidden;
    border: 1px solid var(--pick-line);
    border-radius: var(--pick-radius);
    background: #fff;
    box-shadow: 0 8px 28px rgba(23,33,27,.035);
}

.single-post .inside-article {
    padding: clamp(30px, 5vw, 58px);
}

.single-post .entry-content {
    font-size: 17px;
    line-height: 1.82;
}

.single-post .entry-content h2 {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--pick-line);
}

.single-post .entry-content blockquote {
    margin: 32px 0;
    padding: 22px 24px;
    border-left: 4px solid var(--pick-brand);
    border-radius: 0 14px 14px 0;
    background: var(--pick-accent);
}

.single-post .entry-content table {
    overflow: hidden;
    width: 100%;
    border: 1px solid var(--pick-line);
    border-radius: 12px;
    background: #fff;
}

.single-post .entry-content th {
    background: #f1f5f2;
    color: var(--pick-ink);
    font-weight: 800;
}

/* HOME */

.home .site-content {
    max-width: 1180px;
    padding-top: 26px;
}

.home .inside-article {
    padding: 0;
    background: transparent;
}

.home .entry-header {
    display: none;
}

.pick-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 26px;
    padding: clamp(54px, 8vw, 96px) clamp(28px, 7vw, 78px);
    border: 1px solid #dce4df;
    border-radius: 28px;
    background:
        radial-gradient(circle at 85% 15%, rgba(23,107,77,.12), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f3f8f5 100%);
}

.pick-eyebrow {
    margin: 0 0 18px;
    color: var(--pick-brand);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
}

.pick-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--pick-ink);
    font-size: clamp(38px, 6vw, 66px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.065em;
}

.pick-hero > p:last-child {
    max-width: 610px;
    margin: 24px 0 0;
    color: var(--pick-muted);
    font-size: 18px;
    line-height: 1.75;
}

.pick-home-section {
    margin-top: 76px;
}

.pick-home-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--pick-brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
}

.pick-home-section h2 {
    margin: 0;
    font-size: clamp(27px, 3.8vw, 38px);
    font-weight: 880;
}

.pick-home-section-desc {
    margin: 10px 0 24px;
    color: var(--pick-muted);
    font-size: 15px;
}

.pick-home-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 16px;
}

.pick-home-category-card {
    display: flex;
    min-height: 215px;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--pick-line);
    border-radius: 20px;
    background: #fff;
    color: var(--pick-ink);
    text-decoration: none;
}

.pick-home-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 34px rgba(23,33,27,.07);
}

.pick-home-category-number {
    margin-bottom: auto;
    color: #a2aaa5;
    font-size: 12px;
    font-weight: 800;
}

.pick-home-category-card strong {
    margin-top: 32px;
    font-size: 24px;
    font-weight: 880;
}

.pick-home-category-card em {
    margin-top: 18px;
    color: var(--pick-brand);
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.pick-home-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}

.pick-home-post-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--pick-line);
    border-radius: 18px;
    background: #fff;
}

.pick-home-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(23,33,27,.075);
}

.pick-home-post-card > a {
    display: block;
    color: var(--pick-ink);
    text-decoration: none;
}

.pick-home-post-thumb {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #eef2ef;
}

.pick-home-post-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pick-home-post-thumb-empty {
    display: grid;
    place-items: center;
}

.pick-home-post-body {
    padding: 20px 21px 22px;
}

.pick-home-post-category {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--pick-brand);
    font-size: 12px;
    font-weight: 850;
}

.pick-home-post-card h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 820;
    line-height: 1.42;
}

.pick-home-post-more {
    display: block;
    margin-top: 18px;
    color: var(--pick-muted);
    font-size: 12px;
}

.pick-home-principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    overflow: hidden;
    border: 1px solid var(--pick-line);
    border-radius: 20px;
    background: #fff;
}

.pick-home-principle {
    padding: 30px;
}

.pick-home-principle + .pick-home-principle {
    border-left: 1px solid var(--pick-line);
}

.pick-home-principle p {
    margin: 0;
    color: var(--pick-muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .pick-hero {
        padding: 44px 24px;
        border-radius: 20px;
    }

    .pick-hero h1 {
        font-size: 40px;
    }

    .pick-home-category-grid,
    .pick-home-post-grid,
    .pick-home-principles {
        grid-template-columns: 1fr;
    }

    .pick-home-principle + .pick-home-principle {
        border-top: 1px solid var(--pick-line);
        border-left: 0;
    }

    .single-post .inside-article {
        padding: 26px 22px;
    }
}

/* =========================================================
   PICK ARTICLE TITLE / FEATURED IMAGE FIX
   ========================================================= */

/* 글 제목 → 대표이미지 → 본문 순서 유지 */
.single-post .inside-article {
    display: flex;
    flex-direction: column;
}

.single-post .entry-header {
    order: 1;
}

.single-post .post-image,
.single-post .featured-image,
.single-post .inside-article > .post-image {
    order: 2;
}

.single-post .entry-content {
    order: 3;
}

/* 개별 글 H1 크기 조정 */
.single-post .entry-title {
    font-size: clamp(28px, 3.2vw, 38px) !important;
    line-height: 1.3;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

/* 대표이미지와 제목 간격 */
.single-post .post-image,
.single-post .featured-image {
    margin-top: 0;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .single-post .entry-title {
        font-size: 28px !important;
        line-height: 1.35;
    }
}


/* PICK ARTICLE H1 SIZE - SMALLER */
.single-post .entry-title {
    font-size: clamp(26px, 2.8vw, 34px) !important;
    line-height: 1.32;
}

@media (max-width: 768px) {
    .single-post .entry-title {
        font-size: 26px !important;
        line-height: 1.35;
    }
}


/* PICK ARTICLE H2 SIZE - SMALLER */
.single-post .entry-content h2 {
    font-size: clamp(22px, 2.2vw, 28px) !important;
    line-height: 1.35;
    margin-top: 2em;
    margin-bottom: 0.8em;
}

@media (max-width: 768px) {
    .single-post .entry-content h2 {
        font-size: 22px !important;
        line-height: 1.4;
    }
}


/* PICK ARTICLE TAGS - MOVE TO BOTTOM */
.single-post footer.entry-meta {
    order: 4;
    width: 100%;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--pick-line);
    color: var(--pick-muted);
    font-size: 13px;
}

.single-post footer.entry-meta .tags-links {
    display: block;
}


/* =========================================================
   PICK HEADER - HOMEFIX STYLE
   로고 + 메뉴 한 줄 정렬
   ========================================================= */

@media (min-width: 769px) {

    /* 헤더 전체 */
    .site-header {
        background: #ffffff;
        border-bottom: 1px solid #edf0ed;
    }

    /* 로고 + 메뉴가 들어가는 폭 */
    .inside-header {
        max-width: 980px !important;
        min-height: 92px;
        margin: 0 auto;
        padding: 16px 20px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 38px;
    }

    /* PICK 로고 영역 */
    .site-branding {
        flex: 0 0 auto;
        margin: 0 !important;
    }

    .site-branding .main-title {
        margin: 0;
        font-size: 28px !important;
        font-weight: 900;
        line-height: 1;
        letter-spacing: -0.05em;
    }

    .site-branding .main-title a {
        color: #17211b !important;
        text-decoration: none;
    }

    .site-description {
        display: none;
    }

    /* 메뉴를 로고 바로 옆으로 */
    .main-navigation {
        flex: 1 1 auto;
        width: auto !important;
        margin: 0 !important;
        border: 0 !important;
        background: transparent !important;
    }

    .main-navigation .inside-navigation {
        min-height: auto;
        padding: 0 !important;
        justify-content: flex-start !important;
    }

    .main-navigation .main-nav > ul {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .main-navigation .main-nav ul li a {
        min-height: 44px !important;
        padding: 0 14px !important;

        display: flex;
        align-items: center;

        color: #26332c;
        font-size: 14px;
        font-weight: 750;
        line-height: 1;
    }

    .main-navigation .main-nav ul li:first-child a {
        padding-left: 4px !important;
    }

    .main-navigation .main-nav ul li:hover > a,
    .main-navigation .main-nav ul li[class*="current-menu-"] > a {
        color: var(--pick-brand) !important;
        background: transparent !important;
    }

    /* 이전에 넣은 메뉴 밑줄 제거 */
    .main-navigation .main-nav ul li > a::after {
        display: none !important;
    }
}


/* 모바일 */
@media (max-width: 768px) {

    .inside-header {
        min-height: 68px;
        padding: 14px 18px !important;
    }

    .site-branding .main-title {
        font-size: 25px !important;
    }
}


/* =========================================================
   PICK HEADER LOGO FIX
   ========================================================= */

@media (min-width: 769px) {

    .site-header {
        background: #fff !important;
    }

    .inside-header {
        max-width: 980px !important;
        min-height: 90px !important;
        margin: 0 auto !important;
        padding: 12px 20px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 28px !important;
    }

    /* 로고 크기 강제 제한 */
    .site-logo,
    .site-logo a {
        display: block !important;
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: 210px !important;
    }

    .site-logo img,
    .site-logo .header-image,
    img.custom-logo {
        display: block !important;
        width: 190px !important;
        max-width: 190px !important;
        height: auto !important;
        max-height: 68px !important;
        object-fit: contain !important;
    }

    /* 메뉴를 로고 바로 오른쪽에 배치 */
    #site-navigation {
        flex: 1 1 auto !important;
        width: auto !important;
        margin: 0 !important;
        background: transparent !important;
    }

    #site-navigation .inside-navigation {
        padding: 0 !important;
        min-height: 0 !important;
        justify-content: flex-start !important;
    }

    #site-navigation .main-nav > ul {
        display: flex !important;
        align-items: center !important;
    }

    #site-navigation .main-nav ul li a {
        min-height: 44px !important;
        padding: 0 12px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {

    .inside-header {
        padding: 10px 16px !important;
    }

    .site-logo img,
    .site-logo .header-image,
    img.custom-logo {
        width: 155px !important;
        max-width: 155px !important;
        height: auto !important;
        max-height: 56px !important;
        object-fit: contain !important;
    }
}


/* =========================================================
   PICK HOME LAYOUT FIX
   글 상세페이지 사이드바와 분리
   ========================================================= */

.home .site-content {
    display: block !important;
    width: 100% !important;
    max-width: var(--pick-content) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px;
    padding-right: 24px;
}

.home .content-area,
.home #primary {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.home .widget-area,
.home #right-sidebar,
.home #left-sidebar {
    display: none !important;
}

@media (max-width: 768px) {
    .home .site-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* logo 옆 중복 사이트 제목 숨김 */
.site-branding .main-title,
.site-branding .site-description {
    display: none !important;
}


/* =========================================================
   PICK PROFESSIONAL FOOTER
   ========================================================= */

.site-footer {
    margin-top: 80px !important;
    border: 0 !important;
    background: #10231c !important;
}

.site-footer .site-info {
    padding: 0 !important;
    background: #10231c !important;
    color: #ffffff !important;
}

.site-footer .inside-site-info {
    display: block !important;
    max-width: none !important;
    padding: 0 !important;
}

.pick-footer {
    width: 100%;
    color: #ffffff;
}

.pick-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.25fr;
    gap: 70px;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 58px 0 46px;
}

.pick-footer__logo {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
}

.pick-footer__tagline {
    margin: 0 0 14px;
    color: #eef5f1;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
}

.pick-footer__desc {
    max-width: 390px;
    margin: 0;
    color: #aebdb5;
    font-size: 13px;
    line-height: 1.75;
}

.pick-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.pick-footer__column h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.pick-footer__column a,
.pick-footer__column span {
    color: #cbd7d0;
    font-size: 13px;
    line-height: 1.6;
    text-decoration: none;
}

.pick-footer__column a:hover {
    color: #ffffff;
}

.pick-footer__affiliate {
    max-width: 280px;
    margin-top: 5px;
    color: #8fa198 !important;
}

.pick-footer__bottom {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 20px 0 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #8fa198;
    font-size: 12px;
    text-align: left;
}

/* =========================================================
   PICK PAGINATION
   ========================================================= */

.paging-navigation,
.pagination,
nav.navigation.pagination {
    width: 100%;
    margin: 48px auto 28px !important;
    text-align: center;
}

.paging-navigation .nav-links,
.pagination .nav-links,
nav.navigation.pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.paging-navigation .page-numbers,
.pagination .page-numbers,
nav.navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 32px;
    padding: 0 4px;
    color: var(--pick-ink);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.paging-navigation .page-numbers.current,
.pagination .page-numbers.current,
nav.navigation.pagination .page-numbers.current {
    color: var(--pick-brand);
    font-weight: 900;
    border-bottom: 2px solid var(--pick-brand);
}

@media (max-width: 768px) {
    .pick-footer__grid {
        grid-template-columns: 1fr;
        gap: 34px;
        width: calc(100% - 40px);
        padding: 44px 0 36px;
    }

    .pick-footer__bottom {
        width: calc(100% - 40px);
    }
}

/* =========================================================
   PICK HOME — STANDARD + EDITORIAL TONE UNIFICATION
   ========================================================= */

.home .pick-tone-standard,
.home .pick-tone-editorial {
    box-sizing: border-box !important;
    font-family:
        Pretendard,
        "Noto Sans KR",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;
    color: #17211b !important;
}

/* 1번 STANDARD */
.home .pick-tone-standard {
    background: #edf3ef !important;
    color: #17211b !important;
}

.home .pick-tone-standard p,
.home .pick-tone-standard li,
.home .pick-tone-standard span {
    color: #56635c !important;
    font-family: inherit !important;
}

.home .pick-tone-standard h1,
.home .pick-tone-standard h2 {
    color: #17211b !important;
    font-family: inherit !important;
    font-size: clamp(32px, 3.3vw, 48px) !important;
    font-weight: 850 !important;
    line-height: 1.16 !important;
    letter-spacing: -0.045em !important;
}

.home .pick-tone-standard h3,
.home .pick-tone-standard h4 {
    color: #20352b !important;
    font-family: inherit !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.025em !important;
}

.home .pick-tone-standard small,
.home .pick-tone-standard [class*="eyebrow"],
.home .pick-tone-standard [class*="label"],
.home .pick-tone-standard [class*="kicker"] {
    color: #176b4d !important;
    font-family: inherit !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase;
}

/* 2번 EDITORIAL */
.home .pick-tone-editorial {
    background: #f4f0e7 !important;
    color: #17211b !important;
}

.home .pick-tone-editorial p,
.home .pick-tone-editorial li,
.home .pick-tone-editorial span {
    color: #596159 !important;
    font-family: inherit !important;
}

.home .pick-tone-editorial h1,
.home .pick-tone-editorial h2 {
    color: #17211b !important;
    font-family: inherit !important;
    font-size: clamp(32px, 3.3vw, 48px) !important;
    font-weight: 850 !important;
    line-height: 1.16 !important;
    letter-spacing: -0.045em !important;
}

.home .pick-tone-editorial h3,
.home .pick-tone-editorial h4 {
    color: #20352b !important;
    font-family: inherit !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    letter-spacing: -0.025em !important;
}

.home .pick-tone-editorial small,
.home .pick-tone-editorial [class*="eyebrow"],
.home .pick-tone-editorial [class*="label"],
.home .pick-tone-editorial [class*="kicker"] {
    color: #176b4d !important;
    font-family: inherit !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase;
}

/* 공통 링크/본문 */
.home .pick-tone-editorial a,
.home .pick-tone-standard a {
    color: #17211b !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    text-underline-offset: 5px;
}

.home .pick-tone-standard,
.home .pick-tone-editorial {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
}

.home .pick-tone-standard p,
.home .pick-tone-editorial p {
    font-size: 14px !important;
    line-height: 1.75 !important;
    letter-spacing: -0.015em !important;
}

@media (max-width: 768px) {

    .home .pick-tone-standard,
    .home .pick-tone-editorial {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .home .pick-tone-standard h1,
    .home .pick-tone-standard h2,
    .home .pick-tone-editorial h1,
    .home .pick-tone-editorial h2 {
        font-size: 32px !important;
        line-height: 1.18 !important;
    }

    .home .pick-tone-standard h3,
    .home .pick-tone-standard h4,
    .home .pick-tone-editorial h3,
    .home .pick-tone-editorial h4 {
        font-size: 16px !important;
    }
}

/* =========================================================
   PICK HOME SECTION TITLE SIZE FINAL DOWN
   ========================================================= */

@media (min-width: 769px) {

    .home .pick-tone-standard h1,
    .home .pick-tone-standard h2,
    .home .pick-tone-editorial h1,
    .home .pick-tone-editorial h2 {
        font-size: clamp(26px, 2.55vw, 36px) !important;
        line-height: 1.18 !important;
        letter-spacing: -0.04em !important;
        font-weight: 820 !important;
    }
}

@media (max-width: 768px) {

    .home .pick-tone-standard h1,
    .home .pick-tone-standard h2,
    .home .pick-tone-editorial h1,
    .home .pick-tone-editorial h2 {
        font-size: 26px !important;
        line-height: 1.2 !important;
        letter-spacing: -0.035em !important;
    }
}
