/* ============================================================
   PRESS — 목록 (왼쪽 썸네일 가로형)
   ============================================================ */
.press-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin-bottom: 48px;
}

.press-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #111;
    transition: background 0.25s ease, padding 0.25s ease;
}
a.press-item:hover {
    background: rgba(29, 169, 220, 0.04);
    padding-left: 16px;
    padding-right: 0;
}

/* 썸네일 */
.press-thumb {
    position: relative;
    flex: 0 0 300px;
    width: 300px;
    height: 188px;
    overflow: hidden;
    border-radius: 6px;
    background: #f1f3f5;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.press-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
a.press-item:hover .press-thumb img {
    transform: scale(1.05);
}
.press-thumb.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.14);
    font-size: 44px;
}

/* 본문 텍스트 */
.press-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.press-source {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #1da9dc;
    line-height: 1;
}
.press-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.42;
    color: #111;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
a.press-item:hover .press-title {
    color: #1da9dc;
}
.press-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.56);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.press-date {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.38);
}

/* 우측 화살표 (호버 인터랙션) */
.press-arrow {
    flex: 0 0 auto;
    font-size: 22px;
    color: rgba(0, 0, 0, 0.18);
    transform: translateX(-6px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}
a.press-item:hover .press-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #1da9dc;
}

/* ============================================================
   PRESS — 상세
   ============================================================ */
/* 공지 상세용 flex(space-between) 레이아웃을 세로 스택으로 재정의 */
.press-view .view-header {
    display: block;
    padding-bottom: 28px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.press-view .view-header .press-source {
    display: block;
    margin-bottom: 14px;
    font-size: 15px;
}
.press-view .view-title {
    display: block;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    margin: 0 0 16px;
}
.press-view .view-date {
    display: block;
    margin: 0;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.4);
}

.press-thumb-view {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f3f5;
}
.press-thumb-view img {
    display: block;
    width: 100%;
    height: auto;
}

.press-view .view-content {
    font-size: 16.5px;
    line-height: 1.95;
    color: #222;
    padding: 8px 0 40px;
}
.press-view .view-content p {
    margin: 0 0 18px;
}
.press-view .view-content img {
    max-width: 100%;
    height: auto;
    margin: 12px 0;
    border-radius: 6px;
}
.press-view .view-content a {
    color: #1da9dc;
    text-decoration: underline;
}

.view-source-wrap {
    padding-top: 8px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.source-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(0, 0, 0, 0.22);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: all 0.2s ease;
}
.source-btn:hover {
    background: #1da9dc;
    border-color: #1da9dc;
    color: #fff;
}
.source-btn i {
    font-size: 17px;
}

/* ============================================================
   반응형
   ============================================================ */
@media (max-width: 768px) {
    .press-item {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 22px 0;
    }
    a.press-item:hover {
        padding-left: 0;
        padding-right: 0;
    }
    .press-thumb {
        flex: none;
        width: 100%;
        height: 52vw;
        max-height: 240px;
    }
    .press-body {
        gap: 10px;
    }
    .press-title {
        font-size: 18px;
    }
    .press-desc {
        font-size: 14px;
    }
    .press-arrow {
        display: none;
    }
    .press-view .view-title {
        font-size: 24px;
    }
    .press-view .view-content {
        font-size: 15.5px;
        line-height: 1.85;
    }
}
