/* 1. 섹션 기본 설정 및 배경 이미지 대응 */
.tgr-nl-section {
    position: relative; /* 오버레이 배치를 위해 필수 */
    background-color: #111827; /* 기본 배경색 (이미지 없을 때) */
    padding: 80px 0;
    color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: 1;
}

/* [추가] 배경 이미지 가독성을 위한 어두운 오버레이 */
.tgr-nl-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.75); /* 배경이 있을 때 글자를 잘 보이게 75% 어둡게 함 */
    z-index: -1; /* 컨텐츠보다 뒤로 보냄 */
}

/* 2. 컨테이너 및 그리드 레이아웃 */
.tgr-nl-container {
    position: relative;
    z-index: 2; /* 오버레이보다 위로 올림 */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tgr-nl-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.tgr-nl-info, 
.tgr-nl-features {
    flex: 1;
    min-width: 320px;
}

/* 3. 텍스트 요소 스타일 및 간격 조절 */
.tgr-nl-label {
    color: #60a5fa;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.tgr-nl-title {
    font-size: clamp(24px, 5vw, 36px);
    line-height: 1.2;
    margin-bottom: 25px;
}

/* [수정] 설명 문구와 버튼 사이의 간격 확대 */
.tgr-nl-text {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 55px; /* <--- 이 값을 키워 버튼과의 여백을 확보했습니다 */
}

/* 4. 버튼 스타일 (중복 제거 및 최적화) */
.tgr-nl-submit {
    display: inline-block;
    background: #2563eb;
    padding: 15px 35px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tgr-nl-submit:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 5. 우측 피처 리스트 아이템 */
.tgr-nl-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #d1d5db;
}

.tgr-nl-icon {
    width: 24px;
    height: 24px;
    color: #60a5fa;
    flex-shrink: 0;
}