
/* PickNote Premium Magazine Home */

.picknote-magazine-home {
    max-width:1400px;
    margin:60px auto;
    padding:0 30px;
}


/* Hero */

.mag-hero {
    min-height:620px;
    background-size:cover;
    background-position:center;

    border-radius:24px;
    overflow:hidden;

    display:flex;
    align-items:flex-end;
}


.mag-hero-content {

    color:#fff;

    padding:70px;

    max-width:800px;

}


.mag-hero h1 {

    font-size:64px;
    line-height:1.15;

    font-weight:900;

    letter-spacing:-0.05em;

}


.mag-hero p {

    font-size:19px;
    line-height:1.7;

    margin-top:20px;

}


.mag-hero-link {

    text-decoration:none;
    color:inherit;
}



/* Section */

.mag-section {

    margin-top:80px;

}


.mag-section h2,
.mag-news h2,
.mag-popular h2 {

    font-size:34px;
    font-weight:900;

    border-left:5px solid #b08d57;
    padding-left:15px;

}



/* Editor Pick */

.mag-pick-grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:35px;

}


.mag-card {

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}


.mag-card img {

    width:100%;
    height:260px;

    object-fit:cover;

}


.mag-card h3 {

    padding:25px;

    font-size:23px;

    line-height:1.4;

}


.mag-card span {

    display:block;

    padding:0 25px 25px;

    color:#777;

}




/* News Layout */

.mag-news-layout {

    display:grid;

    grid-template-columns:1fr 360px;

    gap:40px;

    margin-top:80px;

}



.mag-news-item {

    padding:22px 0;

    border-bottom:1px solid #eee;

    display:flex;

    justify-content:space-between;

}



.mag-news-item a {

    font-size:18px;

    font-weight:700;

}



.mag-news-item span {

    color:#888;

}




/* Popular */

.mag-popular {

    background:#fff;

    padding:30px;

    border-radius:20px;

}



.mag-popular-item {

    display:flex;

    gap:15px;

    padding:18px 0;

    border-bottom:1px solid #eee;

}



.mag-popular-item strong {

    color:#b08d57;

    font-size:22px;

}



/* Mobile */

@media(max-width:900px){

.mag-hero {

    min-height:450px;

}


.mag-hero-content {

    padding:35px;

}


.mag-hero h1 {

    font-size:38px;

}


.mag-pick-grid {

    grid-template-columns:1fr;

}


.mag-news-layout {

    grid-template-columns:1fr;

}

}



/* =========================
   PickNote Magazine Home v2
========================= */


/* Hero 개선 */

.mag-hero {
    min-height:560px;
}


.mag-hero-content {
    padding:80px;
    max-width:900px;
}


.mag-hero h1 {
    font-size:56px;
    line-height:1.2;
    letter-spacing:-0.04em;
    max-width:950px;
}


.mag-hero p {
    max-width:650px;
    font-size:18px;
    line-height:1.7;
}



/* Editor Pick 개선 */

.mag-pick-grid {
    gap:35px;
}


.mag-card {
    min-height:430px;
}


.mag-card img {
    height:250px;
}


.mag-card h3 {
    padding:25px;
    font-size:22px;
    line-height:1.45;
}



/* 최신 소식 */

.mag-news-item {

    padding:20px 0;

}


.mag-news-item a {

    font-size:17px;
    line-height:1.5;

}


.mag-popular {

    padding:35px;

}



@media(max-width:900px){

.mag-hero-content {
    padding:40px;
}


.mag-hero h1 {
    font-size:38px;
}


}


/* =========================
   PickNote Recommendation
========================= */

.mag-popular h2 {
    margin-bottom: 24px;
}

.mag-popular-item {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.mag-popular-item strong {
    display: block;
    margin-bottom: 7px;
    color: #b08d57;
    font-size: 13px;
    font-weight: 800;
}

.mag-popular-item a {
    display: block;
    color: #111;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    text-decoration: none;
}

.mag-popular-item a:hover {
    color: #b08d57;
}


/* =========================
   Editor Pick + Latest News
========================= */

/* Editor Pick 링크 밑줄 제거 */
.mag-card a,
.mag-card a:hover,
.mag-card a:focus {
    color: inherit;
    text-decoration: none;
}

.mag-card > a {
    display: block;
    height: 100%;
}

.mag-card span {
    color: #b08d57;
    font-size: 13px;
    font-weight: 800;
}


/* 최신 소식 썸네일형 */
.mag-news-item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px 0;
}

.mag-news-thumb {
    display: block;
    width: 110px;
    height: 74px;
    overflow: hidden;
    border-radius: 10px;
}

.mag-news-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mag-news-title {
    color: #111;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
    text-decoration: none;
}

.mag-news-title:hover {
    color: #b08d57;
    text-decoration: none;
}

.mag-news-category {
    color: #b08d57;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .mag-news-item {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 12px;
    }

    .mag-news-thumb {
        width: 86px;
        height: 64px;
    }

    .mag-news-category {
        grid-column: 2;
        margin-top: -8px;
    }
}


/* =========================
   Category Alignment Fix
========================= */

/* EDITOR PICK: 카테고리를 카드 왼쪽 아래에 고정 */
.mag-card > a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mag-card h3 {
    margin-bottom: 0;
}

.mag-card span {
    margin-top: auto;
    padding: 0 25px 24px;
    text-align: left;
    align-self: stretch;
}


/* 최신 소식: 오른쪽 카테고리 중앙 정렬 */
.mag-news-category {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    text-align: center;
}

@media (max-width: 768px) {
    .mag-news-category {
        justify-content: flex-start;
        min-width: 0;
        text-align: left;
    }
}


/* =========================
   Editor Pick Overlay Cards
========================= */

.mag-card {
    min-height: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 18px;
    overflow: hidden;
}

.mag-card-overlay-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.mag-card-overlay-link:hover,
.mag-card-overlay-link:focus {
    color: inherit;
    text-decoration: none;
}

.mag-card-overlay {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: transform .25s ease;
}

.mag-card-overlay-link:hover .mag-card-overlay {
    transform: translateY(-4px);
}

.mag-card-overlay-content {
    width: 100%;
    padding: 28px 26px 24px;
    color: #fff;
}

.mag-card-overlay-content h3 {
    margin: 0 0 14px;
    padding: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -0.035em;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.mag-card-overlay-content span {
    display: block;
    margin: 0;
    padding: 0;
    color: #d8b578;
    font-size: 13px;
    font-weight: 800;
    text-align: left;
}

@media (max-width: 768px) {
    .mag-card-overlay {
        min-height: 300px;
    }

    .mag-card-overlay-content {
        padding: 24px 22px 20px;
    }

    .mag-card-overlay-content h3 {
        font-size: 21px;
    }
}

