@charset "utf-8";

/* 그룹 페이지 최신글 카드 */
.kgrp-lat {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 220px;
    background: #ffffff;
    border: 1px solid #dfe6ef;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.kgrp-lat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px 12px;
    border-bottom: 1px solid #e8edf3;
    background: #f8fafc;
}

.kgrp-lat-title {
    margin: 0;
    min-width: 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.3px;
}

.kgrp-lat-title a {
    display: block;
    overflow: hidden;
    color: #0f172a;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kgrp-lat-title a:hover,
.kgrp-lat-title a:focus-visible {
    color: #1e3a5f;
}

.kgrp-lat-more {
    flex-shrink: 0;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.kgrp-lat-more:hover,
.kgrp-lat-more:focus-visible {
    color: #1e3a5f;
    text-decoration: underline;
}

.kgrp-lat-list {
    flex: 1;
    margin: 0;
    padding: 6px 16px 12px;
    list-style: none;
}

.kgrp-lat-item {
    padding: 7px 0;
    border-bottom: 1px solid #eef2f6;
}

.kgrp-lat-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.kgrp-lat-link {
    display: -webkit-box;
    overflow: hidden;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kgrp-lat-link:hover,
.kgrp-lat-link:focus-visible {
    color: #1e3a5f;
}

.kgrp-lat-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px 16px;
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 640px) {
    .kgrp-lat {
        min-height: 0;
        border-radius: 8px;
    }

    .kgrp-lat-head {
        padding: 12px 14px 10px;
    }

    .kgrp-lat-title {
        font-size: 15px;
    }

    .kgrp-lat-list {
        padding: 4px 14px 10px;
    }

    .kgrp-lat-item {
        padding: 6px 0;
    }

    .kgrp-lat-link {
        font-size: 13px;
    }
}
