/* Font import moved to index.html for better performance and to avoid tracking prevention issues */

:root {
  --primary: #002c5f;
  /* Hyundai Marine Navy */
  --primary-light: #004080;
  --hi-green: #006241;
  /* Hyundai Marine Green */
  --hi-gold: #B68D4C;
  /* Hyundai Marine Gold */

  --secondary: #FF6000;
  /* Hyundai Marine Orange - Fixed */
  --secondary-light: #FF8533;

  --text-primary: #111111;
  --text-secondary: #444444;
  --text-light: #f8f9fa;
  --text-hero: #002c5f;
  /* Navy text for Hero on Light bg */

  --bg-light: #FFFFFF;
  --bg-warm: #f4f6f8;
  /* Crisp Light Gray instead of Warm Taupe */
  --bg-warm-light: #ffffff;

  --white: #FFFFFF;

  /* Glassmorphism adjustments */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.8);

  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 60px rgba(0, 52, 120, 0.08);
  --shadow-hover: 0 20px 50px rgba(0, 52, 120, 0.15);
  /* Dynamic Lift Shadow */

  /* Radius */
  --radius-md: 16px;
  --radius-lg: 24px;
  /* Super Rounded */
  --radius-xl: 40px;
  /* Pill Shape */

  --container-width: 1200px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Utilities */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #004dc0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hover-card {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

button {
  font-family: 'Pretendard', sans-serif;
  border: none;
  cursor: pointer;
  background: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  /* Headlines are Navy by default */
}

/* Tablet & Mobile Tweaks */
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: block !important;
    /* 전역 button width:100% 규칙에서 제외해 상자를 내용물 크기로 되돌림 (scroll-to-top-btn 선례와 동일 취지) */
    width: auto !important;
    max-width: none !important;
    flex-shrink: 0;
  }

  :root {
    --radius-lg: 20px;
  }
}

@media (min-width: 769px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}

/* Animations */
@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 96, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 96, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 96, 0, 0);
  }
}

.animate-pulse-orange {
  animation: pulse-orange 2s infinite;
}

/* Mobile/Desktop visibility utilities */
.mobile-only {
  display: none !important;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }

  .desktop-only {
    display: none !important;
  }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE STYLES ===== */

/* Hero Section Responsive */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hero-title {
  font-size: 52px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
}

.product-card {
  height: 240px;
  padding: 28px;
}

/* Benefits/Features Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Section Title */
.section-title {
  font-size: 40px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 18px;
}

/* CTA Button */
.cta-button {
  padding: 24px 80px;
  font-size: 24px;
}

/* ===== TABLET STYLES (768px - 1024px) ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-card {
    height: 200px;
    padding: 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .cta-button {
    padding: 20px 60px;
    font-size: 20px;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }
}

/* 2026-04-03: Hero 스크롤 스토리텔링 섹션 — 모바일 padding 오버라이드 방지 */
.hero-mobile-section {
  padding: 0 !important;
}

.hero-scroll-section {
  padding: 0 !important;
}

/* ===== MOBILE STYLES (max-width: 768px) ===== */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  /* 2026-04-03: !important 제거 — 스크롤 스토리텔링 전환으로 인한 충돌 해소 */
  .hero-title {
    font-size: 28px;
    letter-spacing: -0.5px;
    line-height: 1.4;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card {
    height: auto !important;
    min-height: 140px;
    padding: 20px !important;
  }

  .benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .section-title {
    font-size: 24px !important;
  }

  .section-subtitle {
    font-size: 15px !important;
  }

  .cta-button {
    padding: 16px 40px !important;
    font-size: 18px !important;
    width: 100%;
    justify-content: center;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  /* Hero section mobile adjustments */
  section[style*="minHeight: '800px'"],
  section[style*="min-height: 800px"] {
    min-height: auto !important;
    height: auto !important;
    padding: 100px 0 60px !important;
  }

  /* Card hover effects - disable on mobile */
  .hover-card:hover {
    transform: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 28px !important;
  }

  h2 {
    font-size: 24px !important;
  }

  h3 {
    font-size: 18px !important;
  }

  p {
    font-size: 15px;
  }

  /* Form elements */
  input,
  textarea,
  select {
    font-size: 16px !important;
    /* Prevents zoom on iOS */
  }

  /* Buttons */
  button {
    min-height: 48px;
    /* Touch target size */
  }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
  /* 2026-04-03: !important 제거 — hero 텍스트 깨짐 버그 해결 */
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 22px !important;
  }

  .product-card {
    min-height: 120px;
    padding: 16px !important;
  }

  .cta-button {
    padding: 14px 32px !important;
    font-size: 16px !important;
  }

  .container {
    padding: 0 12px;
  }
}

/* ===== IMAGE INTEGRATION ANIMATIONS ===== */

/* Floating animation - gentle up/down movement */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.image-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* Shimmer / Holographic gradient effect */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.shimmer-text {
  background: linear-gradient(90deg,
      #FF6000 0%,
      #FF8533 15%,
      #b4a0ff 30%,
      #80d8ff 45%,
      #FF6000 60%,
      #FF8533 75%,
      #b4a0ff 90%,
      #FF6000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* Image zoom on hover */
.image-zoom-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-zoom-container img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-zoom-container:hover img {
  transform: scale(1.08);
}

/* Gradient overlay for images */
.image-overlay {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 44, 95, 0.6), transparent);
  pointer-events: none;
  border-radius: inherit;
}

/* Glow pulse effect for cards with images */
@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 96, 0, 0.0);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 96, 0, 0.15);
  }
}

.card-glow:hover {
  animation: glow-pulse 2s ease-in-out infinite;
}

/* Image card enhanced style */
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.image-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* --- Mobile Responsive Styles --- */
@media (max-width: 768px) {

  /* Global Resets */
  :root {
    --container-width: 100%;
  }

  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
  }

  section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  /* Typography Scaling */
  /* 2026-04-03: h1/.hero-title !important 제거 — inline 스타일 충돌 방지 */
  h1,
  .hero-title {
    font-size: 32px;
    line-height: 1.3;
    white-space: normal;
  }

  h2,
  .section-title {
    font-size: 26px !important;
    line-height: 1.35 !important;
  }

  h3 {
    font-size: 20px !important;
    line-height: 1.4 !important;
  }

  p,
  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Grid Layouts - Force Stack */
  /* Target grid/flex containers with inline styles */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  div[style*="minmax(350px"] {
    grid-template-columns: 1fr !important;
  }

  /* Hero Section */
  .hero-grid {
    flex-direction: column !important;
    text-align: center;
    padding-top: 40px;
  }

  .hero-product-grid {
    width: 100%;
    margin-top: 40px;
    perspective: none !important;
  }

  /* Components: CompanyIntroduction */
  .animated-partnership-container {
    height: auto !important;
    min-height: 300px;
  }

  /* Components: CEO Message */
  .ceo-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Components: Features/Benefits */
  div[style*="display: flex"][style*="flex-wrap: wrap"]>div {
    min-width: 100% !important;
    flex: 1 1 100% !important;
  }

  /* Buttons & Inputs */
  button,
  input,
  select {
    width: 100% !important;
    max-width: none !important;
  }

  /* Hide Large Decorative Elements or Scale Down */
  .image-float {
    width: 120px !important;
    height: 120px !important;
    margin: 0 auto;
  }

  /* Adjust specific "inline-block" headers/badges to center */
  .text-center-mobile {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 768px) {

  /* Header Adjustments */
  .main-header {
    padding: 10px 0 !important;
  }

  /* Link container for logo + text */
  .main-header a {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    max-width: 70%;
    /* Prevent overlapping with menu button */
  }

  .header-logo-text {
    font-size: 15px !important;
    display: none;
    white-space: nowrap !important;
  }

  /* Show text on most modern phones (360px+) */
  @media (min-width: 360px) {
    .header-logo-text {
      display: inline-block;
    }
  }

  /* Typography */
  /* 2026-04-03: hero 관련 !important 제거 — 충돌 해소 */
  h1,
  .hero-title,
  .recruitment-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 12px;
    word-break: keep-all;
  }

  /* Remove manual breaks in titles on mobile for natural wrapping */
  h1 br,
  .hero-title br,
  .recruitment-title br {
    display: none;
  }

  /* Target grid/flex containers with inline styles */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

/* Page Specific Titles */
.recruitment-title {
  font-size: 48px;
}

@media (max-width: 768px) {
  .recruitment-title {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }
}

/* ===== 2026-02-20: 금융인사이트 블로그 스타일 추가 ===== */

/* 블로그 본문 콘텐츠 스타일 */
.blog-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: #003478;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
}

.blog-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #334155;
  margin-top: 28px;
  margin-bottom: 12px;
}

.blog-content p {
  margin-bottom: 16px;
  word-break: keep-all;
}

/* 인사이트 그리드 - 모바일 반응형 */
@media (max-width: 768px) {
  .insight-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .related-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .blog-content {
    padding: 28px 20px !important;
    font-size: 15px !important;
  }

  .blog-content h2 {
    font-size: 20px !important;
  }

  .blog-content h3 {
    font-size: 17px !important;
  }
}

/* 인사이트 그리드 - 태블릿 */
@media (min-width: 769px) and (max-width: 1024px) {
  .insight-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ===== 2026-02-23: 세부 페이지 상단 패딩 보정 (모바일 헤더에 제목이 가리는 문제) ===== */
/* 모바일 헤더 높이 약 60px + 여백 확보를 위해 padding-top을 100px로 설정 */
@media (max-width: 768px) {
  .page-top-section {
    padding-top: 100px !important;
    padding-bottom: 60px !important;
  }

  /* ===== 2026-02-23: 맨 위로 버튼 모바일 예외 처리 ===== */
  /* 전역 button { width: 100% !important } 규칙에서 제외 */
  @media (max-width: 768px) {
    .scroll-to-top-btn {
      width: 44px !important;
      height: 44px !important;
      min-height: unset !important;
      max-width: unset !important;
      bottom: 20px !important;
      right: 16px !important;
    }
  }
}

/* ===== 2026-04-07: 모바일 버전 크기 및 레이아웃 수정 (통합조회, 금융인사이트) ===== */
@media (max-width: 768px) {
  /* 통합조회 카드 */
  .isearch-header {
    padding: 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .isearch-title {
    font-size: 18px !important;
    line-height: 1.4 !important;
  }
  .isearch-content {
    padding: 24px 20px !important;
    flex-direction: column !important;
    gap: 20px !important;
    align-items: flex-start !important;
  }
  .isearch-icons {
    gap: 12px !important;
  }
  .isearch-icon-box {
    width: 80px !important;
    height: 80px !important;
  }
  .isearch-text-title {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }
  .isearch-text-desc {
    font-size: 14px !important;
  }
  .isearch-bg-shield {
    /* Background Decoration Shield */
    font-size: 120px !important;
    bottom: -10px !important;
    right: -10px !important;
  }
  /* 2026-04-07: 바로가기 버튼 모바일 축소 */
  .isearch-goto-btn {
    padding: 6px 14px !important;
    font-size: 12px !important;
    white-space: nowrap;
  }

  /* 금융인사이트 미리보기 카드 */
  .insight-p-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
  }
  .insight-p-card {
    flex-direction: column !important;
    min-height: auto !important;
  }
  .insight-p-image-wrap {
    min-height: 200px !important;
    flex: none !important;
  }
  .insight-p-content {
    padding: 30px 20px !important;
    flex: none !important;
  }
  .insight-p-date {
    margin-bottom: 12px !important;
  }
  .insight-p-title {
    font-size: 22px !important;
    margin-bottom: 16px !important;
  }
  .insight-p-desc {
    font-size: 15px !important;
    margin-bottom: 24px !important;
  }
}

/* ===== 2026-04-14: 금융인사이트 소제목 배너 + 이미지 슬라이드쇼 스타일 ===== */

/* 소제목 배너: 이미지 배경 + 텍스트 오버레이 */
.insight-section-banner {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
  margin-bottom: 4px;
}

.insight-section-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insight-section-banner .insight-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 52, 120, 0.75) 0%, rgba(0, 30, 70, 0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.insight-section-banner .insight-section-overlay h2 {
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.3px;
}

/* 강조 텍스트 블록 */
.insight-highlight-box {
  background: linear-gradient(135deg, #FFF5EB 0%, #FFF0E0 100%);
  border-left: 4px solid #FF6000;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 17px;
  font-weight: 700;
  color: #c44300;
  line-height: 1.6;
}

/* FAQ 블록 스타일 */
.insight-faq-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
}

.insight-faq-item .faq-q {
  font-weight: 800;
  color: #003478;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.insight-faq-item .faq-a {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  padding-left: 28px;
}

/* 마무리 CTA 블록 */
.insight-closing-cta {
  background: linear-gradient(135deg, #003478 0%, #004dc0 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}

.insight-closing-cta p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.insight-closing-cta .cta-company {
  color: #FF9E1B;
  font-weight: 800;
  font-size: 18px;
  margin-top: 12px;
}

/* ===== 하단 이미지 슬라이드쇼 (자동 재생) ===== */
.insight-slideshow-wrap {
  background: white;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
}

.insight-slideshow-title {
  font-size: 18px;
  font-weight: 800;
  color: #003478;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.insight-slideshow-track {
  display: flex;
  gap: 12px;
  animation: slideshow-scroll 30s linear infinite;
  width: max-content;
}

.insight-slideshow-track:hover {
  animation-play-state: paused;
}

.insight-slide-item {
  flex-shrink: 0;
  width: 200px;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.insight-slide-item:hover {
  transform: scale(1.05);
}

.insight-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-slide-item .slide-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,20,60,0.8) 0%, rgba(0,20,60,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 10px 12px;
}

.insight-slide-item .slide-label span {
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

@keyframes slideshow-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 슬라이드쇼 모바일 반응형 */
@media (max-width: 768px) {
  .insight-section-banner {
    height: 160px;
    margin-top: 32px;
    border-radius: 12px;
  }

  .insight-section-banner .insight-section-overlay h2 {
    font-size: 17px !important;
  }

  .insight-slideshow-wrap {
    padding: 20px;
  }

  .insight-slide-item {
    width: 160px;
    height: 105px;
  }

  .insight-highlight-box {
    font-size: 15px;
    padding: 16px 18px;
  }

  .insight-closing-cta {
    padding: 24px 20px;
  }

  .insight-faq-item .faq-q {
    font-size: 15px;
  }

  .insight-faq-item .faq-a {
    font-size: 14px;
    padding-left: 0;
  }
}

/* ===== 2026-05-12: 대출 상환 계산기 스타일 (요청서 #010) ===== */

/* 섹션 전체 */
.loan-calc-section {
  padding: 80px 0 100px;
  background: var(--bg-warm);
}

/* 섹션 헤더 */
.loan-calc-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.loan-calc-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.loan-calc-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
}

/* 카드 */
.loan-calc-card {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid rgba(0,0,0,0.04);
}

/* 탭 */
.loan-calc-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  background: #f1f5f9;
  border-radius: 36px;
  padding: 5px;
}

.loan-calc-tab-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
  color: #64748b;
}

.loan-calc-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 44, 95, 0.25);
}

/* 슬라이더 묶음 */
.loan-calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 36px;
}

/* 개별 슬라이더 */
.loan-calc-slider-wrap {
  width: 100%;
}

.loan-calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.loan-calc-slider-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.loan-calc-slider-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.loan-calc-slider-track-wrap {
  position: relative;
  width: 100%;
}

/* Range 슬라이더 커스텀 */
.loan-calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(
    to right,
    var(--primary) 0%,
    var(--primary) var(--pct, 0%),
    #E2E8F0 var(--pct, 0%),
    #E2E8F0 100%
  );
}

.loan-calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0, 44, 95, 0.2);
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.loan-calc-range::-webkit-slider-thumb:hover {
  box-shadow: 0 3px 12px rgba(0, 44, 95, 0.35);
}

.loan-calc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0, 44, 95, 0.2);
  cursor: pointer;
}

.loan-calc-slider-minmax {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  font-size: 12px;
  color: #94a3b8;
}

/* 결과 영역 */
.loan-calc-result {
  border-radius: 20px;
  background: rgba(0, 44, 95, 0.04);
  padding: 32px;
  margin-bottom: 28px;
}

.loan-calc-result-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.loan-calc-result-monthly {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.loan-calc-result-label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.loan-calc-result-main {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1.2;
}

.loan-calc-result-range {
  font-size: 26px;
}

.loan-calc-arrow {
  color: #94a3b8;
  font-weight: 400;
}

.loan-calc-result-note {
  font-size: 12px;
  color: #94a3b8;
}

.loan-calc-result-sub {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 180px;
}

.loan-calc-result-sub-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.loan-calc-result-sub-label {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.loan-calc-result-sub-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-secondary);
}

.loan-calc-result-sub-value.accent {
  color: var(--primary);
}

.loan-calc-result-divider {
  height: 1px;
  background: rgba(0, 44, 95, 0.1);
}

/* 아코디언 */
.loan-calc-schedule-wrap {
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.loan-calc-schedule-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.2s ease;
}

.loan-calc-schedule-toggle:hover {
  color: var(--primary-light);
}

.loan-calc-chevron {
  font-size: 18px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.loan-calc-chevron.open {
  transform: rotate(180deg);
}

.loan-calc-schedule-motion {
  overflow: hidden;
}

.loan-calc-schedule-scroll {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: auto;
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

/* 테이블 */
.loan-calc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}

.loan-calc-table thead tr {
  background: var(--primary);
  color: #ffffff;
}

.loan-calc-table thead th {
  padding: 12px 16px;
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

.loan-calc-table thead th:first-child {
  text-align: center;
}

.loan-calc-table tbody td {
  padding: 10px 16px;
  text-align: right;
  color: var(--text-primary);
  border-bottom: 1px solid #f1f5f9;
}

.loan-calc-table tbody td:first-child {
  text-align: center;
  color: #64748b;
  font-weight: 600;
}

.loan-calc-table tbody tr.even {
  background: #f8fafc;
}

/* ── 반응형: 모바일 (768px 이하) ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .loan-calc-section {
    padding: 60px 0 80px;
  }

  .loan-calc-title {
    font-size: 28px;
  }

  .loan-calc-subtitle {
    font-size: 15px;
  }

  .loan-calc-card {
    padding: 28px 20px;
    border-radius: 24px;
    margin: 0 16px;
  }

  .loan-calc-tabs {
    margin-bottom: 28px;
  }

  .loan-calc-tab-btn {
    font-size: 13px;
    padding: 10px 12px;
  }

  .loan-calc-slider-value {
    font-size: 17px;
  }

  /* 터치 영역 확보: thumb 28px */
  .loan-calc-range::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
  }

  .loan-calc-range::-moz-range-thumb {
    width: 28px;
    height: 28px;
  }

  .loan-calc-result-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .loan-calc-result-main {
    font-size: 28px;
  }

  .loan-calc-result-range {
    font-size: 20px;
  }

  .loan-calc-result-sub {
    flex-direction: row;
    min-width: unset;
    width: 100%;
    gap: 0;
  }

  .loan-calc-result-sub-item {
    flex: 1;
  }

  .loan-calc-result-divider {
    width: 1px;
    height: auto;
    margin: 0 16px;
  }

  .loan-calc-result-sub-value {
    font-size: 15px;
  }
}

/* ===== PRODUCT QUICK LINKS DESKTOP (PC 전용) ===== */
.pql-desktop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pql-desktop-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.pql-card-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pql-desktop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  border-color: transparent;
}

.pql-desktop-card:hover .pql-card-overlay {
  opacity: 1;
}

.pql-desktop-card:hover .pql-card-title {
  color: #ffffff;
}

.pql-desktop-card:hover .pql-card-desc {
  color: rgba(255, 255, 255, 0.72);
}

.pql-desktop-card:hover .pql-card-icon {
  background: rgba(255, 255, 255, 0.18) !important;
}

.pql-desktop-card:hover .pql-card-icon svg {
  filter: brightness(0) invert(1);
}

.pql-desktop-card:hover .pql-card-arrow {
  background: rgba(255, 255, 255, 0.18) !important;
}

.pql-desktop-card:hover .pql-card-arrow svg {
  filter: brightness(0) invert(1);
}

.pql-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease;
}

.pql-card-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.pql-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  word-break: keep-all;
}

.pql-card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  transition: color 0.3s ease;
  word-break: keep-all;
}

.pql-card-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease;
}

/* ===== Desktop FAQ Card ===== */
.dfaq-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.dfaq-visual {
  background: linear-gradient(135deg, #002c5f 0%, #004080 100%);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dfaq-q-typo {
  font-size: 96px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  letter-spacing: -4px;
}

.dfaq-visual-label {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-top: 20px;
  line-height: 1.6;
}

.dfaq-preview {
  background: white;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dfaq-row {
  border-bottom: 1px solid #f1f5f9;
}

.dfaq-row:last-of-type {
  border-bottom: none;
}

.dfaq-row-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 12px;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.dfaq-row-link:hover {
  background: #fff7ed;
}

.dfaq-row-link:hover .dfaq-chevron {
  color: #FF6000;
  transform: translateX(4px);
}

.dfaq-q-badge {
  font-size: 11px;
  font-weight: 800;
  color: #002c5f;
  background: rgba(0, 44, 95, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.dfaq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  flex: 1;
  word-break: keep-all;
}

.dfaq-chevron {
  color: #cbd5e1;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.dfaq-cta {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #FF6000;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #FF6000;
  border-radius: 24px;
  transition: all 0.2s ease;
}

.dfaq-cta:hover {
  background: #FF6000;
  color: white;
}

/* ===== Insights Preview Desktop ===== */
.ipd-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  height: 440px;
}

.ipd-featured {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.ipd-featured:hover {
  box-shadow: 0 12px 40px rgba(0, 44, 95, 0.18);
}

.ipd-featured-inner {
  display: flex;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.ipd-featured-img-wrap {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
}

.ipd-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.ipd-featured:hover .ipd-featured-img {
  transform: scale(1.05);
}

.ipd-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}

.ipd-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  z-index: 2;
}

.ipd-featured-content {
  flex: 1;
  padding: 36px 32px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.ipd-meta {
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ipd-dot {
  color: #cbd5e1;
}

.ipd-featured-title {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.4;
  word-break: keep-all;
  margin: 0;
}

.ipd-featured-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.ipd-read-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
  width: fit-content;
}

.ipd-underline-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.ipd-featured:hover .ipd-underline-bar {
  transform: scaleX(1);
}

.ipd-arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 44, 95, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.ipd-side-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ipd-side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 44, 95, 0.15);
}

.ipd-side-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.ipd-side-img-wrap {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
}

.ipd-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.ipd-side-card:hover .ipd-side-img {
  transform: scale(1.05);
}

.ipd-side-content {
  flex: 1;
  background: white;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.ipd-side-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.5;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.ipd-header-btn {
  padding: 12px 24px;
  border: 1.5px solid #cbd5e1;
  border-radius: 30px;
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.ipd-header-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== 2026-05-14: 대출 계산기 PC 전용 (lcd-*) ===== */

.lcd-section {
  padding: 100px 0 120px;
  background: var(--bg-warm);
}

.lcd-header {
  text-align: center;
  margin-bottom: 56px;
}

.lcd-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(0, 44, 95, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.lcd-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.lcd-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
}

.lcd-card {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 52px;
}

.lcd-body {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}

/* Tabs */
.lcd-tabs {
  display: flex;
  background: #f1f5f9;
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 40px;
}

.lcd-tab-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #64748b;
  position: relative;
  z-index: 1;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.lcd-tab-btn.active {
  color: #ffffff;
}

.lcd-tab-bg {
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: 10px;
  z-index: -1;
  box-shadow: 0 4px 14px rgba(0, 44, 95, 0.25);
}

/* Sliders */
.lcd-sliders {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lcd-slider-wrap {
  width: 100%;
}

.lcd-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.lcd-slider-label {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.lcd-slider-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.lcd-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--primary) var(--pct, 0%), #e2e8f0 var(--pct, 0%));
  outline: none;
  cursor: pointer;
  margin-bottom: 6px;
}

.lcd-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0, 44, 95, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lcd-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.lcd-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0, 44, 95, 0.2);
  cursor: pointer;
}

.lcd-slider-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
}

/* RIGHT column */
.lcd-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lcd-donut-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lcd-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lcd-legend-item {
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lcd-legend-item::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lcd-legend-principal {
  color: #002c5f;
  background: rgba(0, 44, 95, 0.08);
}

.lcd-legend-principal::before {
  background: #002c5f;
}

.lcd-legend-interest {
  color: #c44300;
  background: rgba(255, 96, 0, 0.08);
}

.lcd-legend-interest::before {
  background: #FF6000;
}

/* Monthly card */
.lcd-monthly {
  background: linear-gradient(135deg, #002c5f 0%, #003d8a 100%);
  border-radius: 20px;
  padding: 28px 32px;
  color: white;
}

.lcd-monthly-label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 8px;
}

.lcd-monthly-value {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.lcd-monthly-sub {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 6px;
}

/* Sub results */
.lcd-sub-results {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px 24px;
}

.lcd-sub-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lcd-sub-label {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.lcd-sub-value {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  font-variant-numeric: tabular-nums;
}

.lcd-sub-value.accent {
  color: #FF6000;
}

.lcd-sub-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
  margin: 0 24px;
}

/* Hint */
.lcd-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #9a3412;
}

.lcd-hint-icon {
  color: #FF6000;
  flex-shrink: 0;
}

/* Schedule */
.lcd-schedule-wrap {
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
}

.lcd-schedule-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lcd-schedule-toggle:hover {
  background: #f1f5f9;
}

.lcd-schedule-scroll {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: auto;
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.lcd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}

.lcd-table thead tr {
  background: var(--primary);
  color: #ffffff;
}

.lcd-table thead th {
  padding: 12px 20px;
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

.lcd-table thead th:first-child {
  text-align: center;
}

.lcd-table tbody td {
  padding: 10px 20px;
  text-align: right;
  color: var(--text-primary);
  border-bottom: 1px solid #f1f5f9;
}

.lcd-table tbody td:first-child {
  text-align: center;
  color: #64748b;
  font-weight: 600;
}

.lcd-table tbody tr.even {
  background: #f8fafc;
}

/* ============================================================
   INTEGRATED SEARCH DESKTOP  (.isd-*)
   ============================================================ */

.isd-section {
  padding: 100px 0 120px;
  background: var(--bg-warm, #f8f5f0);
}

.isd-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #002c5f 0%, #003f8a 60%, #004fa3 100%);
  border-radius: 36px;
  padding: 72px 64px;
  box-shadow: 0 24px 64px rgba(0, 44, 95, 0.22);
}

.isd-bg-shield {
  position: absolute;
  bottom: -48px;
  right: -32px;
  color: #ffffff;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

.isd-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.isd-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.isd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 96, 0, 0.18);
  color: #FF6000;
  border: 1px solid rgba(255, 96, 0, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  width: fit-content;
}

.isd-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.isd-desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin: 0;
}

.isd-desc strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.isd-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.isd-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.isd-check-icon {
  color: #FF6000;
  flex-shrink: 0;
}

.isd-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FF6000;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 6px 20px rgba(255, 96, 0, 0.32);
}

.isd-cta:hover {
  background: #e55500;
}

/* RIGHT: Floating Stack */
.isd-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.isd-stack-outer {
  width: 100%;
  max-width: 300px;
}

.isd-stack-outer-right {
  align-self: flex-end;
  margin-right: 0;
}

.isd-stack-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 28px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.isd-card-individual {
  transform: rotate(-2.5deg);
}

.isd-card-corporate {
  transform: rotate(2.5deg);
}

.isd-stack:hover .isd-stack-card {
  transform: rotate(0deg) translateY(-4px);
}

.isd-stack-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.isd-icon-navy {
  background: rgba(0, 44, 95, 0.08);
  color: #002c5f;
}

.isd-icon-orange {
  background: rgba(255, 96, 0, 0.08);
  color: #FF6000;
}

.isd-stack-label {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.isd-stack-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.isd-stack-check svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* =====================================================
   RoleMissionDesktop (.rmd-*) — PC work system section
   ===================================================== */

.rmd-section {
  padding: 124px 0 132px;
  background: var(--white);
  overflow: hidden;
}

.rmd-container {
  width: min(1440px, calc(100% - 112px));
  margin: 0 auto;
}

.rmd-heading {
  display: grid;
  grid-template-columns: minmax(480px, 0.9fr) minmax(420px, 0.72fr);
  gap: 72px;
  align-items: center;
  margin-bottom: 28px;
}

.rmd-heading-copy {
  min-width: 0;
}

.rmd-eyebrow {
  width: fit-content;
  margin: 0 0 20px;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--hi-green) 20%, var(--white));
  border-radius: 999px;
  background: color-mix(in srgb, var(--hi-green) 8%, var(--white));
  color: var(--hi-green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.rmd-title {
  margin: 0;
  color: var(--text-primary);
  font-size: 68px;
  font-weight: 900;
  line-height: 1.04;
  word-break: keep-all;
}

.rmd-title span {
  display: block;
  color: var(--primary);
}

.rmd-lead {
  margin: 18px 0 0;
  max-width: 520px;
  color: var(--text-secondary);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.72;
  word-break: keep-all;
}

.rmd-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.rmd-trust-cell {
  min-height: 78px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 12px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--primary) 8%, var(--white));
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.rmd-trust-cell svg {
  grid-row: span 2;
  color: var(--hi-green);
}

.rmd-trust-cell span {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 750;
}

.rmd-trust-cell strong {
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.35;
  word-break: keep-all;
}

.rmd-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.rmd-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.rmd-card--standard {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-warm) 100%);
  border: 1px solid color-mix(in srgb, var(--primary) 8%, var(--white));
}

.rmd-card--growth {
  padding: 0 0 36px;
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--primary) 8%, var(--white));
}

.rmd-card--trust {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-light);
}

.rmd-card-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--hi-green);
  font-size: 14px;
  font-weight: 850;
}

.rmd-card--trust .rmd-card-eyebrow {
  color: color-mix(in srgb, var(--secondary) 24%, var(--white));
}

.rmd-card-title {
  margin: 0;
  color: var(--text-primary);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.26;
  word-break: keep-all;
}

.rmd-card--trust .rmd-card-title {
  color: var(--text-light);
}

.rmd-card-desc {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.72;
  word-break: keep-all;
}

.rmd-card--trust .rmd-card-desc {
  color: rgba(255, 255, 255, 0.82);
}

.rmd-card-foot {
  margin-top: auto;
  padding-top: 28px;
}

.rmd-rows {
  display: grid;
  gap: 10px;
}

.rmd-row {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--primary) 10%, var(--white));
  border-radius: 14px;
  background: var(--white);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.rmd-row svg {
  color: var(--hi-green);
}

.rmd-card-media {
  width: 100%;
  height: 224px;
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--bg-warm);
}

.rmd-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rmd-card--growth .rmd-card-eyebrow,
.rmd-card--growth .rmd-card-title,
.rmd-card--growth .rmd-card-desc {
  padding-left: 36px;
  padding-right: 36px;
}

.rmd-card--trust::before {
  content: '';
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.rmd-reg-panel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.rmd-reg-thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-warm);
}

.rmd-reg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.rmd-reg-text span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
}

.rmd-reg-text strong {
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.rmd-bottom-panel {
  margin-top: 42px;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 36px;
  border-radius: var(--radius-lg);
  background: var(--text-primary);
  color: var(--text-light);
}

.rmd-bottom-panel span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.rmd-bottom-panel strong {
  display: block;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.38;
  word-break: keep-all;
}

.rmd-cta {
  min-width: 164px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--white);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.28s ease, background-color 0.28s ease;
}

.rmd-cta:hover {
  background: color-mix(in srgb, var(--secondary) 9%, var(--white));
  transform: translateY(-2px);
}

.rmd-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 지원하기 CTA는 모바일 전용 (PC 하단 패널은 그대로 유지) */
.rmd-cta--recruit {
  display: none;
}

@media (max-width: 1180px) {
  .rmd-container {
    width: min(1080px, calc(100% - 64px));
  }

  .rmd-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rmd-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rmd-card {
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .rmd-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rmd-bottom-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* 2026-06-10: 모바일 — 업무 시스템 섹션 세로 스택 + 타이포·여백 축소 + 지원 CTA 노출 */
@media (max-width: 768px) {
  .rmd-section {
    padding: 56px 0 64px;
  }

  .rmd-container {
    width: calc(100% - 40px);
  }

  .rmd-eyebrow {
    margin-bottom: 16px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .rmd-title {
    font-size: 34px;
  }

  .rmd-lead {
    margin-top: 16px;
    font-size: 16px;
  }

  .rmd-trust-row {
    gap: 10px;
    margin-bottom: 24px;
  }

  .rmd-trust-cell {
    min-height: 62px;
    padding: 13px 15px;
  }

  .rmd-trust-cell strong {
    font-size: 15px;
  }

  .rmd-showcase {
    gap: 16px;
  }

  .rmd-card {
    min-height: 0;
    padding: 28px;
  }

  .rmd-card--growth {
    padding: 0 0 28px;
  }

  .rmd-card--growth .rmd-card-eyebrow,
  .rmd-card--growth .rmd-card-title,
  .rmd-card--growth .rmd-card-desc {
    padding-left: 28px;
    padding-right: 28px;
  }

  .rmd-card-media {
    height: 200px;
    margin-bottom: 24px;
  }

  .rmd-card-title {
    font-size: 23px;
  }

  .rmd-card-foot {
    padding-top: 24px;
  }

  .rmd-bottom-panel {
    margin-top: 32px;
    padding: 24px;
    gap: 20px;
  }

  .rmd-bottom-panel strong {
    font-size: 20px;
  }

  .rmd-cta-group {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .rmd-cta {
    width: 100%;
  }

  .rmd-cta--recruit {
    display: inline-flex;
    background: var(--primary);
    color: var(--text-light);
  }

  .rmd-cta--recruit:hover {
    background: var(--primary);
  }
}

/* ==================== Desktop Utility Cards (#016, 2026-05-26) ==================== */
/* PC 전용 가로 3카드 진입 섹션 — FAQ / 대출 계산기 / 전문상담사 확인 */
.duc-section {
  padding: 88px 0 104px;
  background: var(--bg-warm);
}

.duc-header {
  text-align: center;
  margin-bottom: 48px;
}

.duc-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(0, 44, 95, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.duc-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.duc-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  word-break: keep-all;
}

.duc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.duc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  isolation: isolate;
  cursor: pointer;
}

.duc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: var(--transition);
}

.duc-card--navy::before {
  background: linear-gradient(135deg, var(--primary) 0%, #0a4a99 100%);
}

.duc-card--gold::before {
  background: linear-gradient(135deg, var(--hi-gold) 0%, #d4ab68 100%);
}

.duc-card--green::before {
  background: linear-gradient(135deg, var(--hi-green) 0%, #028a5a 100%);
}

.duc-card::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.10) 0%, transparent 70%);
  pointer-events: none;
  transition: var(--transition);
  z-index: -1;
}

.duc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.duc-card:hover::after {
  transform: scale(1.18);
}

.duc-card-visual {
  padding: 36px 32px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.duc-card-icon {
  color: rgba(255, 255, 255, 0.92);
  transition: var(--transition);
}

.duc-card:hover .duc-card-icon {
  transform: scale(1.08) rotate(-3deg);
}

.duc-card-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.duc-card-body {
  padding: 32px 32px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.duc-card-meta {
  flex: 1;
  min-width: 0;
}

.duc-card-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  word-break: keep-all;
  color: #fff;
}

.duc-card-desc {
  font-size: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  word-break: keep-all;
}

.duc-card-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.duc-card:hover .duc-card-arrow {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  transform: translateX(4px) translateY(-2px);
}

.duc-card--gold:hover .duc-card-arrow {
  color: #8a6730;
}

.duc-card--green:hover .duc-card-arrow {
  color: var(--hi-green);
}

@media (min-width: 769px) and (max-width: 1024px) {
  .duc-grid {
    gap: 18px;
  }
  .duc-card {
    min-height: 320px;
  }
  .duc-card-title {
    font-size: 20px;
  }
  .duc-title {
    font-size: 30px;
  }
}

/* 2026-06-10: 모바일 — 유틸리티 카드 가로 스크롤 1줄 (요청: PC처럼 카드 한 줄) */
@media (max-width: 768px) {
  .duc-section {
    padding: 52px 0 60px;
  }
  .duc-header {
    margin-bottom: 26px;
  }
  .duc-title {
    font-size: 23px;
  }
  .duc-subtitle {
    font-size: 13px;
    padding: 0 12px;
  }
  .duc-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 14px;
    scrollbar-width: none;
  }
  .duc-grid::-webkit-scrollbar {
    display: none;
  }
  .duc-card {
    flex: 0 0 76%;
    min-height: 230px;
    scroll-snap-align: start;
  }
  .duc-card-visual {
    padding: 24px 22px 0;
    gap: 12px;
  }
  .duc-card-icon {
    width: 46px;
    height: 46px;
  }
  .duc-card-body {
    padding: 22px 22px 24px;
  }
  .duc-card-title {
    font-size: 18px;
  }
  .duc-card-desc {
    font-size: 12px;
  }
  .duc-card-arrow {
    width: 38px;
    height: 38px;
  }
}

/* ===== RoleMissionMobile (시안 F 이식, 2026-07-31) ===== */
/* 모바일 전용. LandingPage의 .mobile-only 래퍼 안에서만 렌더되므로 미디어쿼리 없이도 768px 이하에서만 보인다.
   원본: 시안/F_2구간_라이트전환형.html — 색·radius·그림자·간격 값 그대로.
   line-height: normal 은 시안(body 기본값) 재현용. 개별 값은 각 규칙에서 명시한다. */

.rmm-section {
  padding: 52px 0 56px;
  background: var(--bg-warm);
  line-height: normal;
  word-break: keep-all;
}

.rmm-pad {
  padding-left: 20px;
  padding-right: 20px;
}

.rmm-rule {
  height: 1px;
  margin: 26px 20px 0;
  background: rgba(0, 44, 95, 0.10);
}

/* --- B1 라이트 헤더 --- */
.rmm-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hi-green);
}

.rmm-title {
  margin-top: 14px;
  font-size: clamp(30px, 8.6vw, 34px);
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.rmm-ln {
  display: block;
}

.rmm-lead {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
}

/* --- B2 심사봇 아일랜드 --- */
.rmm-bot {
  margin: 30px 20px 0;
  padding: 28px 22px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--primary) 34%, var(--primary-light) 100%);
  box-shadow: 0 20px 60px rgba(0, 52, 120, 0.18);
}

.rmm-bot-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-light);
}

.rmm-bot-title {
  margin-top: 13px;
  font-size: 22px;
  line-height: 1.36;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.rmm-bot-desc {
  margin-top: 13px;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.78);
}

/* 영상 — 16:9 프레임 위에 심사봇 화면 목업 포스터를 덮고, 누르면 재생된다 */
.rmm-video {
  margin-top: 20px;
}

.rmm-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--text-primary);
  background-image: linear-gradient(155deg, rgba(0, 44, 95, 0.88) 0%, rgba(17, 17, 17, 1) 78%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rmm-video-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rmm-video-poster {
  position: absolute;
  inset: 0;
  padding: 0;
  background-color: var(--text-primary);
  background-image: linear-gradient(155deg, rgba(0, 44, 95, 0.88) 0%, rgba(17, 17, 17, 1) 78%);
}

.rmm-vf-badge {
  position: absolute;
  top: 11px;
  left: 11px;
  padding: 5px 10px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.rmm-vf-bar {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 68%;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 5px 0 12px;
  border-radius: var(--radius-xl);
  background: rgba(17, 17, 17, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.rmm-vf-bar-ph {
  flex: 1;
  text-align: left;
  font-size: 10.5px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.42);
}

.rmm-vf-bar-btn {
  flex-shrink: 0;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  background: var(--secondary);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
}

.rmm-vf-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

/* 5대 핵심 정보 칩 */
.rmm-chips {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.rmm-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.rmm-chip i {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.40);
}

.rmm-chip:nth-child(5) {
  grid-column: 1 / -1;
}

/* 심사봇 바로가기 패널 */
.rmm-graft {
  margin-top: 18px;
  padding: 16px 15px 15px;
  border-radius: var(--radius-md);
  background: var(--white);
}

.rmm-graft-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 5px 0 12px;
  border-radius: var(--radius-xl);
  background: var(--bg-warm);
}

.rmm-graft-bar-ph {
  flex: 1;
  font-size: 11px;
  letter-spacing: -0.02em;
  color: rgba(68, 68, 68, 0.55);
}

.rmm-graft-bar-btn {
  flex-shrink: 0;
  padding: 6px 13px;
  border-radius: var(--radius-xl);
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.rmm-skel {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rmm-skel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rmm-skel-b {
  height: 9px;
  border-radius: var(--radius-xl);
  background: rgba(0, 44, 95, 0.08);
}

.rmm-skel-row:nth-child(1) .rmm-skel-b:nth-child(1) {
  width: 30%;
}

.rmm-skel-row:nth-child(1) .rmm-skel-b:nth-child(2) {
  width: 46%;
}

.rmm-skel-row:nth-child(2) .rmm-skel-b:nth-child(1) {
  width: 25%;
}

.rmm-skel-row:nth-child(2) .rmm-skel-b:nth-child(2) {
  width: 38%;
}

.rmm-skel-row:nth-child(3) .rmm-skel-b:nth-child(1) {
  width: 34%;
}

.rmm-skel-row:nth-child(3) .rmm-skel-b:nth-child(2) {
  width: 29%;
}

.rmm-graft-link {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: var(--radius-xl);
  background: var(--secondary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rmm-graft-note {
  margin-top: 9px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-secondary);
}

/* --- B3 가로 스와이프 카드 4장 --- */
.rmm-hint {
  margin: 34px 0 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  opacity: 0.6;
}

.rmm-swipe {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 20px 18px;
  /* mandatory 스냅이 첫 카드를 스크롤포트 왼쪽 끝에 붙여 좌측 여백 20px을 없애는 문제를 막는다 */
  scroll-padding-left: 20px;
  scrollbar-width: none;
}

.rmm-swipe::-webkit-scrollbar {
  display: none;
}

.rmm-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(0, 44, 95, 0.08);
  box-shadow: var(--shadow-sm);
}

.rmm-card-top {
  display: block;
}

.rmm-bignum {
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(0, 44, 95, 0.10);
}

.rmm-card-eyebrow {
  margin-top: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--hi-green);
}

.rmm-card-title {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.42;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.rmm-card-body {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.72;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
}

/* 카드 01 — 라벨/값 4행 */
.rmm-kv {
  margin-top: 16px;
}

.rmm-kv-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 44, 95, 0.08);
}

.rmm-kv-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.rmm-kv-k {
  flex-shrink: 0;
  font-size: 11.5px;
  letter-spacing: -0.01em;
  color: rgba(68, 68, 68, 0.7);
}

.rmm-kv-v {
  font-size: 12.5px;
  font-weight: 700;
  text-align: right;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* 카드 02 — 체크 3행 */
.rmm-checks {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.rmm-check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* 카드 03 — 교육 현장 사진 */
.rmm-photo {
  margin-top: auto;
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-warm);
}

.rmm-photo img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}

/* 카드 04 — 등록번호 */
.rmm-regno {
  margin-top: auto;
  padding-top: 18px;
}

.rmm-regno-k {
  font-size: 11px;
  letter-spacing: -0.01em;
  color: rgba(68, 68, 68, 0.7);
}

.rmm-regno-v {
  margin-top: 6px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--primary);
}

/* --- B4 CTA 패널 --- */
.rmm-cta {
  margin: 30px 20px 0;
  padding: 28px 22px 26px;
  border-radius: var(--radius-lg);
  background: var(--text-primary);
}

.rmm-cta-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.55);
}

.rmm-cta-lead {
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.rmm-cta-btns {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rmm-btn {
  width: 100%;
  height: 52px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rmm-btn--primary {
  background: var(--secondary);
  color: var(--white);
}

.rmm-btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}

/* ===== RoleMissionDesktopF (시안 F PC 번안, 2026-07-31) ===== */
/* PC 769px 이상 전용. LandingPage의 .desktop-only 래퍼 안에서만 렌더된다(모바일 rmm-* 무접촉).
   원본: 시안/F_2구간_라이트전환형.html — 모바일 이식판(rmm-*)의 PC 번안, 컨테이너 1200px.
   문구·URL은 RoleMissionMobile.jsx와 동일. 값은 1200px 컨테이너·데스크톱 타이포에 맞춰 재계산했다. */
@media (min-width: 769px) {
  .rmdf-section {
    padding: 120px 0 128px;
    background: var(--bg-warm);
  }

  .rmdf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* --- B1 라이트 헤더 --- */
  .rmdf-header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 56px;
  }

  .rmdf-header-copy {
    min-width: 0;
  }

  .rmdf-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hi-green);
  }

  .rmdf-title {
    margin-top: 18px;
    font-size: clamp(44px, 3.4vw, 52px);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    word-break: keep-all;
  }

  .rmdf-ln {
    display: block;
  }

  .rmdf-lead {
    margin: 0;
    max-width: 440px;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
    word-break: keep-all;
  }

  .rmdf-rule {
    height: 1px;
    margin: 48px 0 0;
    background: rgba(0, 44, 95, 0.10);
  }

  /* --- B2 심사봇 네이비 카드 --- */
  .rmdf-bot {
    margin-top: 48px;
    padding: 56px 56px 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(155deg, var(--primary) 34%, var(--primary-light) 100%);
    box-shadow: 0 20px 60px rgba(0, 52, 120, 0.18);
  }

  .rmdf-bot-grid {
    display: grid;
    grid-template-columns: 9fr 11fr;
    align-items: center;
    gap: 56px;
  }

  .rmdf-bot-left {
    min-width: 0;
  }

  .rmdf-bot-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary-light);
  }

  .rmdf-bot-title {
    margin-top: 16px;
    font-size: 30px;
    line-height: 1.34;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
  }

  .rmdf-bot-desc {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.78);
  }

  .rmdf-chips {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .rmdf-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .rmdf-chip i {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.40);
  }

  .rmdf-chip:nth-child(5) {
    grid-column: 1 / -1;
  }

  .rmdf-bot-right {
    min-width: 0;
  }

  .rmdf-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--text-primary);
    background-image: linear-gradient(155deg, rgba(0, 44, 95, 0.88) 0%, rgba(17, 17, 17, 1) 78%);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .rmdf-video-el {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .rmdf-video-poster {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    cursor: pointer;
    background-color: var(--text-primary);
    background-image: linear-gradient(155deg, rgba(0, 44, 95, 0.88) 0%, rgba(17, 17, 17, 1) 78%);
  }

  .rmdf-vf-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .rmdf-vf-bar {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68%;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 6px 0 14px;
    border-radius: var(--radius-xl);
    background: rgba(17, 17, 17, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.10);
  }

  .rmdf-vf-bar-ph {
    flex: 1;
    text-align: left;
    font-size: 12px;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.42);
  }

  .rmdf-vf-bar-btn {
    flex-shrink: 0;
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    background: var(--secondary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
  }

  .rmdf-vf-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
  }

  /* 심사봇 바로가기 — 하단 풀폭 흰 패널 */
  .rmdf-graft {
    margin-top: 32px;
    padding: 28px 32px 26px;
    border-radius: var(--radius-md);
    background: var(--white);
  }

  .rmdf-graft-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    max-width: 480px;
    padding: 0 6px 0 16px;
    border-radius: var(--radius-xl);
    background: var(--bg-warm);
  }

  .rmdf-graft-bar-ph {
    flex: 1;
    font-size: 13px;
    letter-spacing: -0.02em;
    color: rgba(68, 68, 68, 0.55);
  }

  .rmdf-graft-bar-btn {
    flex-shrink: 0;
    padding: 7px 16px;
    border-radius: var(--radius-xl);
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
  }

  .rmdf-skel {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 640px;
  }

  .rmdf-skel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .rmdf-skel-b {
    height: 10px;
    border-radius: var(--radius-xl);
    background: rgba(0, 44, 95, 0.08);
  }

  .rmdf-skel-row:nth-child(1) .rmdf-skel-b:nth-child(1) {
    width: 30%;
  }

  .rmdf-skel-row:nth-child(1) .rmdf-skel-b:nth-child(2) {
    width: 46%;
  }

  .rmdf-skel-row:nth-child(2) .rmdf-skel-b:nth-child(1) {
    width: 25%;
  }

  .rmdf-skel-row:nth-child(2) .rmdf-skel-b:nth-child(2) {
    width: 38%;
  }

  .rmdf-skel-row:nth-child(3) .rmdf-skel-b:nth-child(1) {
    width: 34%;
  }

  .rmdf-skel-row:nth-child(3) .rmdf-skel-b:nth-child(2) {
    width: 29%;
  }

  .rmdf-graft-link {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: var(--radius-xl);
    background: var(--secondary);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .rmdf-graft-note {
    margin: 12px 0 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-secondary);
  }

  /* --- B3 카드 4장 — 기본 2열(1180px 이하), 1181px 이상은 아래 중첩 media에서 4열 --- */
  .rmdf-cards {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .rmdf-card {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 32px 28px 30px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid rgba(0, 44, 95, 0.08);
    box-shadow: var(--shadow-sm);
  }

  .rmdf-card-top {
    display: block;
  }

  .rmdf-bignum {
    font-size: clamp(48px, 3vw, 56px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: rgba(0, 44, 95, 0.10);
  }

  .rmdf-card-eyebrow {
    margin-top: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--hi-green);
  }

  .rmdf-card-title {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
  }

  .rmdf-card-body {
    margin-top: 12px;
    font-size: 13.5px;
    line-height: 1.72;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
  }

  /* 카드 01 — 라벨/값 4행 */
  .rmdf-kv {
    margin-top: 18px;
  }

  .rmdf-kv-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 44, 95, 0.08);
  }

  .rmdf-kv-row:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .rmdf-kv-k {
    flex-shrink: 0;
    font-size: 12.5px;
    letter-spacing: -0.01em;
    color: rgba(68, 68, 68, 0.7);
  }

  .rmdf-kv-v {
    font-size: 13.5px;
    font-weight: 700;
    text-align: right;
    letter-spacing: -0.02em;
    color: var(--text-primary);
  }

  /* 카드 02 — 체크 3행 */
  .rmdf-checks {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .rmdf-check-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
  }

  /* 카드 03 — 교육 현장 사진 */
  .rmdf-photo {
    margin-top: auto;
    margin-bottom: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-warm);
  }

  .rmdf-photo img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
  }

  /* 카드 04 — 등록번호 */
  .rmdf-regno {
    margin-top: auto;
    padding-top: 20px;
  }

  .rmdf-regno-k {
    font-size: 12px;
    letter-spacing: -0.01em;
    color: rgba(68, 68, 68, 0.7);
  }

  .rmdf-regno-v {
    margin-top: 8px;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--primary);
  }

  /* --- B4 CTA 패널 (버튼 1개) --- */
  .rmdf-cta {
    margin-top: 56px;
    padding: 48px 56px;
    border-radius: var(--radius-lg);
    background: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .rmdf-cta-copy {
    min-width: 0;
  }

  .rmdf-cta-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.55);
  }

  .rmdf-cta-lead {
    margin-top: 12px;
    max-width: 560px;
    font-size: 26px;
    line-height: 1.48;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
    word-break: keep-all;
  }

  .rmdf-cta-btns {
    flex-shrink: 0;
    display: flex;
  }

  .rmdf-btn {
    min-width: 200px;
    height: 56px;
    padding: 0 32px;
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .rmdf-btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
  }

  /* 1181px 이상 — 카드 4열 (뼈대 §3: "1180px 이하 2×2") */
  @media (min-width: 1181px) {
    .rmdf-cards {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
}

/* ===== 2026-08-03: 푸터 3단 정돈 레이아웃 (hlp-footer, 시안 A) ===== */
.hlp-footer {
  padding: 32px 0 0;
}

.hlp-footer-col1 p,
.hlp-footer-col2 p {
  margin: 0 0 14px 0;
  line-height: 1.6;
}

.hlp-footer-col2 p:last-child {
  margin-bottom: 24px;
}

.hlp-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 24px;
}

.hlp-footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hlp-footer-bottom-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hlp-footer-bottom-links a,
.hlp-footer-bottom-links button {
  text-align: left;
}

@media (max-width: 768px) {
  .hlp-footer .hlp-footer-bottom-links button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.6;
    margin-top: -13px;
    margin-bottom: -13px;
  }
}

.hlp-footer-bottom-spacer {
  display: none;
}

@media (min-width: 769px) {
  .hlp-footer {
    padding: 40px 0 0;
  }

  .hlp-footer-info {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  .hlp-footer-col1 p,
  .hlp-footer-col2 p {
    margin: 0 0 8px 0;
    line-height: 1.6;
  }

  .hlp-footer-col1 p:last-child,
  .hlp-footer-col2 p:last-child {
    margin: 0;
  }

  .hlp-footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
  }

  .hlp-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hlp-footer-bottom-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .hlp-footer-bottom-spacer {
    display: block;
    min-width: 120px;
    height: 16px;
  }
}

/* ===== 2026-08-10: 인사이트 본문 정보그림(잘림 없는 전체 표시) ===== */
.insight-figure {
  width: 100%;
  margin: 16px 0 32px;
  border-radius: 16px;
  overflow: hidden;
}
.insight-figure img {
  display: block;
  width: 100%;
  height: auto;
}
