/* 섹션 레이아웃 */
.tgr-news-section {
    padding: 60px 0;
    background-color: #fcfcfc;
    margin-bottom: 60px;
}

.tgr-news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 헤더 영역 */
.tgr-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.tgr-news-label {
    display: block;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tgr-news-main-title {
    font-size: 30px;
    color: #111827;
    margin: 0;
    letter-spacing: -0.5px;
}

.tgr-news-more {
    display: flex;
    align-items: center;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    gap: 4px;
}

/* 메인 피처 카드 (크기 대폭 축소) */
.tgr-news-featured {
    margin-bottom: 40px;
}

.tgr-feat-card {
    display: flex;
    gap: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    height: 300px; /* 높이 고정 축소 */
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tgr-feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.tgr-feat-thumb {
    flex: 0.9; /* 이미지 가로 비중 축소 */
    position: relative;
    background-color: #f0f0f0;
}

.tgr-feat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tgr-feat-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2563eb;
    color: #fff;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
}

.tgr-feat-body {
    flex: 1.1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tgr-feat-cat {
    color: #2563eb;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 10px;
}

.tgr-feat-title {
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tgr-feat-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tgr-feat-date {
    font-size: 13px;
    color: #999;
}

/* 하단 그리드 카드 */
.tgr-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tgr-news-card a { text-decoration: none; color: inherit; }

.tgr-card-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    background-color: #f0f0f0;
}

.tgr-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tgr-news-card:hover .tgr-card-thumb img { transform: scale(1.05); }

.tgr-card-cat {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255,255,255,0.95);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #333;
}

.tgr-card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tgr-card-date {
    font-size: 12px;
    color: #999;
}

/* 반응형 모바일 */
@media (max-width: 960px) {
    .tgr-feat-card { flex-direction: column; height: auto; }
    .tgr-feat-thumb { aspect-ratio: 16/9; }
    .tgr-news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .tgr-news-grid { grid-template-columns: 1fr; }
    .tgr-news-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}