/* ✅ Pretendard 전역 폰트 설정 */
html {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
      'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans KR', sans-serif;
  }
  
  /* ✅ 전역 CSS 변수 정의 - 사이트 전체 통일성을 위한 설정 */
  :root {
    /* 색상 변수 */
    --primary-color: #1d3bb3;
    --primary-dark: #162d8a;
    --primary-light: rgba(29, 59, 179, 0.1);
    --secondary-color: #4d6de3;
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #777;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --bg-secondary: #f2f5ff;
    
    /* 그림자 변수 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* 테두리 반경 변수 */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* 폰트 크기 변수 */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-md: 1.125rem;
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --font-2xl: 2rem;
    --font-3xl: 2.5rem;
    
    /* 간격 변수 */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* 헤더 높이 */
    --header-height: 80px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
  }
  
  body {
    font-size: var(--font-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
  }
  
  /* 섹션 제목 통일 스타일 */
  .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #111;
    position: relative;
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0c2d6b, #4285F4);
    border-radius: 4px;
  }
  
  /* 기존 제목 스타일 덮어쓰기 */
  .news-title.section-title,
  .awards-title.section-title {
    margin-bottom: 50px !important;
  }
  
  .news-title.section-title:after,
  .awards-title.section-title:after {
    bottom: -15px !important;
  }
  
  /* 반응형 조정 */
  @media (max-width: 992px) {
    .section-title {
      font-size: 3rem;
      margin-bottom: 40px;
    }
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 30px;
    }
  }
  
  /* Google Tag Manager noscript iframe */
  .gtm-noscript iframe {
    display: none;
    visibility: hidden;
  }
  