/* === HS Press Section === */
:root {
    --hs-color-point: #d32978;
}

.hs-press {
    padding: 100px 0;
    background: #fff;
}

.hs-press__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.hs-press__header {
    margin-bottom: 48px;
}

.hs-press__label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.hs-press__label-text {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--hs-color-point);
    white-space: nowrap;
}

.hs-press__label-line {
    flex: 1;
    height: 1px;
    background: var(--hs-color-point);
    opacity: 0.3;
}

.hs-press__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2a2025;
    margin-bottom: 8px;
}

.hs-press__subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    color: #999;
    font-weight: 300;
}

/* Grid: 4 equal columns */
.hs-press__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card base */
.hs-press__card {
    display: flex;
    flex-direction: column;
    background: #fefaf3;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hs-press__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(211, 41, 120, 0.1);
}

/* Card image */
.hs-press__card-image {
    overflow: hidden;
    height: 200px;
}

.hs-press__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hs-press__card:hover .hs-press__card-image img {
    transform: scale(1.05);
}

/* Card body */
.hs-press__card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Meta */
.hs-press__card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hs-press__card-source {
    font-family: 'Nunito', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--hs-color-point);
    background: rgba(211, 41, 120, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
}

.hs-press__card-date {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    color: #bbb;
}

/* Title */
.hs-press__card-title {
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.5;
    color: #2a2025;
    margin-bottom: 8px;
}

/* Desc */
.hs-press__card-desc {
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #999;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 더보기 버튼 */
.hs-press__more-wrap {
    margin-top: 40px;
    text-align: center;
}
.hs-press__more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border: 1.5px solid var(--hs-color-point);
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--hs-color-point);
    text-decoration: none;
    transition: background 0.22s, color 0.22s, transform 0.15s;
}
.hs-press__more-btn svg {
    transition: transform 0.22s;
}
.hs-press__more-btn:hover {
    background: var(--hs-color-point);
    color: #fff;
    transform: translateY(-1px);
}
.hs-press__more-btn:hover svg {
    transform: translateX(3px);
}

/* ── 아카이브 페이지 ── */
.hsp-page {
    font-family: 'Nunito', sans-serif;
    background: #fff;
    min-height: 60vh;
}

.hsp-hero {
    background: #fed1d0;
    padding: 72px 40px;
    position: relative;
    overflow: hidden;
}
.hsp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
}
.hsp-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.hsp-hero__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: rgba(61,47,53,0.45);
    margin-bottom: 12px;
}
.hsp-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #3d2f35;
    margin-bottom: 10px;
    line-height: 1.15;
}
.hsp-hero__sub {
    font-size: 0.9rem;
    color: rgba(61,47,53,0.55);
}

.hsp-archive {
    padding: 72px 0 100px;
}
.hsp-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hsp-count {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 28px;
}
.hsp-count strong {
    color: var(--hs-color-point);
    font-weight: 700;
}

.hsp-grid {
    margin-bottom: 56px;
}

.hsp-empty {
    text-align: center;
    color: #aaa;
    padding: 60px 0;
}

/* 페이지네이션 */
.hsp-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.hsp-pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e0d8dc;
    color: #666;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.hsp-pagination__btn:hover {
    border-color: var(--hs-color-point);
    color: var(--hs-color-point);
}
.hsp-pagination__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0.88rem;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.hsp-pagination__num:hover {
    background: rgba(211,41,120,0.08);
    color: var(--hs-color-point);
}
.hsp-pagination__num--active {
    background: var(--hs-color-point);
    color: #fff !important;
    pointer-events: none;
}
.hsp-pagination__ellipsis {
    width: 40px;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hs-press__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .hs-press__grid {
        grid-template-columns: 1fr;
    }

    .hs-press__title {
        font-size: 1.8rem;
    }

    .hs-press__subtitle {
        font-size: 0.85rem;
    }

    .hs-press {
        padding: 60px 0;
    }

    .hs-press__inner {
        padding: 0 20px;
    }

    .hsp-hero {
        padding: 52px 20px;
    }

    .hsp-hero__title {
        font-size: 1.8rem;
    }

    .hsp-hero__sub {
        font-size: 0.85rem;
    }

    .hsp-wrap {
        padding: 0 20px;
    }
}
