:root {
    --header-height: 80px;
    --footer-height: 120px;
  }

  body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 40px;
    height: var(--header-height);
    box-sizing: border-box;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .agency-brand {
    display: inline-flex;
    align-items: center;
    width: min(270px, 34vw);
    margin-right: auto;
    text-decoration: none;
  }

  .agency-brand img {
    display: block;
    width: 100%;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #333;
  }

  .logo-container {
    display: flex;
    align-items: center;
  }

  .logo {
    height: 60px;
    margin-right: 20px;
  }

  /* CoS 로고 크기 축소 */
  .logo-container img[src*="logo_cos"],
  .logo[alt*="CoS"] {
    height: 45px;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    gap: 20px;
    margin-left: 20px;
  }

  nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
    padding: 0 15px 0 20px;
    text-align: center;
  }

  nav > a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
  }

  /* 드롭다운 블록 뒤에도 구분선 표시(다음 링크가 있으면) */
  nav > .nav-dropdown:not(:last-child)::after {
    content: "|";
    color: #aaa;
    position: absolute;
    right: -15px;  /* 다른 메뉴 항목들과 일치 */
    top: 50%;
    transform: translateY(-50%);
  }


  nav a:hover,
  nav a:focus,
  nav a.active {
    color: gray;
  }
  
  

  .hero {
    background-image: linear-gradient(rgba(7, 30, 20, .2), rgba(7, 30, 20, .32)), url('../images/goodforest1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 1 0 auto;
    min-height: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    text-align:center;
  }

  /* 홈이 활성화될 때만 히어로 표시 */
  #home.section.active .hero { display: flex; }

  .section {
    display: none;
    padding: 20px 30px;
    flex: 1 0 auto;
    min-height: 0;
    box-sizing: border-box;
  }

  /* Log 섹션 상하 여백을 더 줄임 */
  #log.section {
    padding: 7px 30px 3px;
  }

  .section.active {
    display: block;
  }

  /* Home 섹션은 여백 없이 화면을 가득 채우도록 */
  #home.section {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1 0 auto;
  }

  .calendar-container {
    width: 100%;
    margin: 30px 0 0 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    min-height: calc(100vh - var(--header-height) - var(--footer-height) - 60px);
    padding: 0;
  }

  .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    height: 40px;
  }

  .calendar-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c5530;
  }

  .calendar-nav {
    display: flex;
    gap: 10px;
  }

  .calendar-nav button {
    padding: 8px 16px;
    border: none;
    background: #4CAF50;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .calendar-nav button:hover {
    background: #45a049;
  }
  
  .calendar-nav #currentMonth {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1px; /* 캘린더 하단 여백 살짝 축소 */
  }

  .calendar-day-header {
    background: #4CAF50;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
  }

  .calendar-day {
    background: white;
    min-height: 180px;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
  }

  /* 오늘 날짜 강조: 진한 네모 박스 */
  .calendar-day.today {
    border: 3px solid #4CAF50;
    border-radius: 0;
    box-sizing: border-box;
  }

  .calendar-day:hover {
    background: #f5f5f5;
  }

  .calendar-day.has-log {
    background: #e8f5e8;
  }

  .calendar-day.has-log::after {
    content: "📝";
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 12px;
  }

  .day-number {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
  }

  .log-preview {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
    max-height: 60px;
    overflow: hidden;
  }

  .log-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
  }

  .log-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .log-modal-content {
    position: relative;
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: 700px;
    height: 620px;
    overflow-y: auto;
  }

  .log-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .log-modal-title {
    font-size: 20px;
    font-weight: bold;
    color: #2c5530;
  }

  .close-btn {
    position: fixed;
    top: calc(50vh - 40vh - 30px);
    right: calc(50vw - 410px);
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    color: rgba(0, 0, 0, 0.6);
    transition: all 0.2s ease;
  }

  .close-btn:hover {
    color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
  }

  .log-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .log-form label {
    font-weight: bold;
    color: #333;
  }

  .log-form input,
  .log-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
    cursor: text;
  }

  .log-form input:focus,
  .log-form textarea:focus {
    border-color: #4CAF50;
    border-width: 2px;
    cursor: text;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
  }

  .log-form input:hover,
  .log-form textarea:hover {
    cursor: text;
  }

  .log-form textarea {
    min-height: 120px;
    width: 100%;
    resize: vertical;
  }

  /* 모든 입력 필드에 동일한 레이아웃 적용 */
  .log-form div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .log-form div label {
    flex-shrink: 0;
    width: 80px;
    margin-top: 10px;
  }

  .log-form div input,
  .log-form div textarea {
    flex: 1;
  }

  .log-form button {
    padding: 12px 24px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
  }

  .log-form button:hover {
    background: #45a049;
  }

  .log-entries {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }

  .log-entry {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
  }
  
  .log-entry-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
  }
  
  .log-entry-edit-btn {
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s;
  }
  
  .log-entry-edit-btn:hover {
    background: #45a049;
  }
  
  .log-entry-delete-btn {
    background: #f44336;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s;
  }
  
  .log-entry-delete-btn:hover {
    background: #d32f2f;
  }

  .log-entry-date {
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 5px;
  }

  .log-entry-content {
    color: #333;
    line-height: 1.5;
  }

  .log-entry-field {
    margin-bottom: 10px;
  }

  .editable-field {
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 3px;
    transition: background-color 0.2s;
  }

  .editable-field:hover {
    background-color: #f0f0f0;
  }

  .inline-edit-input {
    padding: 5px;
    border: 1px solid #4CAF50;
    border-radius: 3px;
    font-size: 14px;
    margin: 2px 0;
  }

  .log-entry-save-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 5px;
    font-size: 12px;
  }

  .log-entry-cancel-btn {
    background: #f44336;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
  }

  .log-entry-save-btn:hover {
    background: #45a049;
  }

  .log-entry-cancel-btn:hover {
    background: #da190b;
  }

  /* Footer */
  footer.site-footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 24px 40px;
    color: #666;
    font-size: 14px;
    box-sizing: border-box;
  }
  
  /* 특정 페이지에서만 footer 크기 축소 */
  body:not(.home) footer.site-footer {
    padding: 12px 20px;
    font-size: 12px;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .site-footer a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
  .site-footer a:hover { text-decoration: underline; }
  .footer-center { text-align: left; line-height: 1.6; }
  .footer-logo { height: 28px; opacity: 0.9; }

  .home-footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 36px;
    margin: 22px auto 0;
  }

  .home-footer-logos a {
    display: flex;
    align-items: center;
  }

  .home-footer-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
  }

  .home-footer-logo-seoultech {
    height: 34px;
  }

  .home-footer-logo-adlab {
    height: 72px;
  }

  .home-footer-logo-coslab {
    height: 72px;
  }
  
  /* 특정 페이지에서만 로고 크기 축소 */
  body:not(.home) .footer-logo {
    height: 20px;
  }

  @media (max-width: 900px) {
    .footer-inner {
      flex-direction: column;
      text-align: center;
    }
    .footer-center { text-align: center; }
  }

  /* 사이드 메뉴 */
  .side-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 12px rgba(0,0,0,0.15);
    z-index: 1200;
    transition: left 0.25s ease;
    padding: 20px 0;
  }

  .side-menu.active { left: 0; }

  .side-menu a {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    border-bottom: 1px solid #f0f0f0;
  }

  .side-menu a.active { color: gray; }

  .side-menu-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border: 0;
    border-bottom: 1px solid #f0f0f0;
    background: #ffffff;
    color: #333333;
    cursor: pointer;
    font: inherit;
    font-weight: bold;
    text-align: left;
  }

  .side-menu-trigger:hover,
  .side-menu-trigger:focus {
    background: #f7f7f7;
    color: gray;
  }

  .side-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1100;
  }

  .side-overlay.active { display: block; }

  /* 60% 이하 너비 (약 900px)에서의 레이아웃 */
  @media (max-width: 700px) {
    header {
      justify-content: flex-start;
      padding: 10px 16px;
    }

    .agency-brand {
      width: min(210px, 64vw);
      margin-right: 0;
    }

    .menu-toggle {
      display: block;
      position: absolute;
      right: 14px;
      left: auto;
    }

    nav { display: none; }

    .logo { height: 52px; }
    
    /* 모바일에서도 CoS 로고 크기 축소 */
    .logo-container img[src*="logo_cos"],
    .logo[alt*="CoS"] {
      height: 40px;
    }

    /* 모바일 히어로 */
    .hero {
      flex-direction: column;
      text-align: center;
    }

    .hero-copy {
      margin: 24px 16px;
      padding: 30px 22px;
    }

    .hero-description br {
      display: none;
    }

    .hero-project {
      align-items: flex-start;
      text-align: left;
    }

    body.home footer.site-footer {
      padding: 22px 16px;
    }

    .home-footer-logos {
      gap: 10px;
    }

    .home-footer-logo {
      height: 22px;
    }

    .home-footer-logo-seoultech {
      height: 16px;
    }

    .home-footer-logo-adlab {
      height: 30px;
    }

    .home-footer-logo-coslab {
      height: 30px;
    }
  }

  /* 설정 패널 가독성 개선 */
  .settings-panel {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 14px;
  }
  .settings-tabs {
    display: flex;
    gap: 8px;
    margin: 2px 0 6px;
    flex-wrap: nowrap;
  }
  .tab-button { 
    background: #e9ecef;
    border: 1px solid #dfe3e6;
    border-radius: 6px;
    color: #2c3e50;
    font-weight: 600;
    padding: 6px 8px;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    writing-mode: horizontal-tb;
    flex: 1;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
  }
  .tab-button:hover {
    background: #eef2f5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  }
  .tab-button.active { 
    background: #4CAF50; 
    color: #fff; 
    border-color: #48a64c;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
  }
  .tab-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.35);
  }

  .setting-group {
    margin: 6px 0 8px;
    padding: 8px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: #fff;
  }
  /* 각 그룹 사이에 얇은 선 효과 */
  .setting-group + .setting-group {
    border-top: 1px solid #e5e7eb;
    margin-top: 8px;
    padding-top: 8px;
  }

  .setting-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    font-size: 13px;
  }
  
  .temp-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
  }
  
  .temp-header-row label {
    margin-bottom: 0;
  }
  
  .temp-inputs {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .temp-inputs span {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  /* 배열 섹션 전용 스타일 */
  #layout-panel .temp-inputs {
    align-items: flex-start;
  }
  
  #layout-panel .temp-inputs span {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    width: 120px;
    justify-content: space-between;
  }
  
  #layout-panel .temp-inputs input[type="number"] {
    font-size: 12px;
    padding: 6px 8px;
    width: 45px;
  }
  .input-row { margin: 8px 0; }
  .input-row span { display: inline-block; margin-right: 10px; }
  .setting-group input[type="number"] {
    border: 1px solid #dfe3e6;
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 12px;
    text-align: center;
    background: #fff;
  }

  .setting-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
  }
  .setting-actions .control-button { padding: 8px 16px; }

  /* 센서 탭 버튼 스타일 개선 */
  .control-buttons { 
    display:flex; 
    gap:3px; 
    flex-wrap: nowrap; 
    margin-bottom: 4px;
  }
  .control-button {
    background: #e9ecef;
    border: 1px solid #dfe3e6;
    border-radius: 6px;
    color: #2c3e50;
    font-weight: 600;
    padding: 6px 8px;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    writing-mode: horizontal-tb;
    flex: 1;
    text-align: center;
    font-size: 14px;
  }
  
  /* 설정 버튼에 톱니바퀴 아이콘 추가 */
  .control-button[data-type="settings"] {
    flex: 0 0 auto;
    width: 35px;
    padding: 2px;
    font-size: 22px;
  }
  
  .control-button[data-type="settings"]::before {
    content: "⚙";
  }
  .control-button:hover {
    background: #eef2f5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  }
  .control-button.active {
    background: #4CAF50;
    color: #fff;
    border-color: #48a64c;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
  }
  .control-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.35);
  }

  /* 센서(온도/습도/조도/산도) 탭의 각 박스 카드화 */
  .reference-guide,
  .cube-data,
  .minimap-container {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 6px;
    box-sizing: border-box;
  }
  
  /* 기준표 스타일 개선 */
  .reference-guide h4 {
    margin: 0 0 8px 0;
    font-weight: 600;
    font-size: 16px;
  }
  
  .reference-guide p {
    margin: 6px 0;
    line-height: 1.4;
    font-size: 14px;
  }
  
  /* 큐브 데이터 스타일 개선 */
  .cube-data h4,
  .cube-data div {
    margin: 6px 0;
    line-height: 1.4;
  }
  
  .cube-data #cube-name {
    font-weight: 600;
    margin: 0 0 8px 0;
  }

  #plot-container {
    padding: 20px 30px 10px 30px;
    text-align: center;
    flex: 1 0 auto; /* 푸터를 바닥에 고정시키기 위해 추가 */
  }
  #plotDiv {
    width: 90%;
    max-width: 900px;
    height: 600px;
    border: 1px solid #ccc;
    margin: 20px auto; /* 가운데 정렬 */
  }
  /* <h2> 태그 라인을 flex로 만들어 버튼을 오른쪽에 배치 */
.viz-header {
  display: flex;
  justify-content: space-between; /* 양쪽 정렬 */
  align-items: center;
  /* H2의 기본 마진을 제거 */
  margin-top: 0.2em;
  margin-bottom: 0.83em;
}
.viz-header h2 {
  margin: 0; /* h2 태그 자체의 마진 제거 */
}

/* '변환' 버튼 스타일 */
.transform-toggle {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.transform-toggle:hover {
  background-color: #0056b3;
}

/* 뷰(View) 전환을 위한 기본 스타일 */
.viz-view {
  display: none; /* 기본적으로 모든 뷰를 숨김 */
  width: 100%;
}
.viz-view.active {
  display: block; /* 'active' 클래스가 있는 뷰만 보여줌 */
}


/* --- Home link + dropdown styling --- */
.home-link {
  display: inline-block;
  width: calc(100% - 48px);
  padding: 12px 16px;
  font-size: 16px;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.home-link:hover { background-color: #f3f3f3; }

/* dropdown button */
.side-menu .side-dropdown {
  width: 48px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 18px;
  padding: 12px 0;
  text-align: center;
  color: #2c5530;
}
.side-menu .side-dropdown:hover { background: #f7f7f7; }

.side-menu .side-submenu { display: none; flex-direction: column; background: #fafafa; }
.side-menu .side-submenu a { padding: 10px 24px; font-size: 15px; border-bottom: 1px dashed #e6e6e6; text-align: left; }
.side-menu .side-submenu.show { display: flex; }

/* ===== Top nav: Home dropdown (desktop) ===== */
nav { display: flex; gap: 18px; align-items: center; }

/* 드롭다운 컨테이너 */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;  /* Home과 토글 버튼 간격 줄임 */
}

.nav-dropdown .nav-home {
  padding-right: 4px;
}

.nav-menu-trigger {
  padding: 0 4px 0 20px;
  border: 0;
  background: transparent;
  color: #333333;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: bold;
}

.nav-menu-trigger:hover,
.nav-menu-trigger:focus,
.nav-menu-trigger.is-active {
  color: gray;
}

/* 드롭다운 화살표 버튼 */
.nav-caret{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: none;  /* 테두리 제거 */
  background: transparent;
  font-size: 14px;
  padding: 0;
  line-height: 1;
  border-radius: 4px;
  cursor: pointer;
  color: #333;
  margin-left: 0;  /* gap으로 간격 조정 */
}

.nav-caret:hover,
.nav-caret:focus {
  color: gray;
}

/* 하위메뉴 박스 */
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;               /* 기본은 숨김 */
  min-width: 220px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  padding: 6px 0;
  z-index: 50;
}
.nav-submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #111827;
  white-space: nowrap;
  text-align: left;
}
.nav-submenu a:hover { background: #f3f4f6; }

.nav-submenu-right {
  right: 0;
  left: auto;
}

.hero-copy {
  width: min(920px, calc(100% - 48px));
  box-sizing: border-box;
  padding: 32px;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.hero-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.hero-description {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  line-height: 1.7;
}

.hero-project {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: min(720px, 100%);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .34);
}

.hero-project-label {
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.hero-project-name {
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .hero-copy {
    width: calc(100% - 32px);
    margin: 20px 16px;
    padding: 24px 8px;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    line-height: 1.5;
  }

  .hero-title {
    font-size: clamp(27px, 8vw, 36px);
  }

  .hero-description {
    margin: 20px 0 24px;
    font-size: 15px;
  }

  .hero-description br {
    display: none;
  }

  .hero-project {
    padding-top: 16px;
    text-align: center;
  }
}

@media (min-width: 701px) {
  .nav-submenu{ display: none; }
  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown.is-open .nav-submenu,
  .nav-caret:hover + .nav-submenu,
  .nav-submenu:hover { display: block; } /* 서브메뉴 위에 있어도 유지 */
}

/* 모바일: 상단 드롭다운은 숨기고 기존 사이드바만 사용 */
@media (max-width: 700px) {
  .nav-dropdown .nav-caret { display: none; }
  .nav-dropdown .nav-submenu { display: none !important; }
}

/* ---------- Hardware Sensor Table 스타일 리디자인 ---------- */
.bom {
  width: 100%;
  max-width: 1100px;
  border-collapse: collapse;
  margin: 0 auto 24px auto;
  font-size: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  table-layout: fixed;
}

/* 헤더 */
.bom thead th {
  background: #f9fafb;
  font-weight: 700;
  padding: 14px;
  border-bottom: 2px solid #e5e7eb;
  text-align: left;
  color: #374151;
}

/* 각 행 */
.bom tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}
.bom tbody tr:hover {
  background: #f9f9f9;
}

/* 셀 기본 */
.bom td {
  padding: 14px 12px;
  vertical-align: middle;
  text-align: left;
  color: #111827;
}

/* 첫 번째 컬럼 (텍스트 고정폭) */
.bom td:first-child {
  width: 220px;
  font-weight: 600;
  color: #2c5530;
}

/* 두 번째 컬럼(이미지) 통일 */
.bom td:nth-child(2) {
  width: 180px;
  text-align: center;
}
.bom img {
  width: 140px;
  height: 100px;
  object-fit: contain;       /* 비율 유지하며 박스 안에 맞춤 */
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 세 번째 컬럼 (설명) */
.bom td:last-child {
  color: #374151;
  line-height: 1.6;
}

/* 반응형: 모바일에서는 카드형으로 */
@media (max-width: 700px) {
  .bom, .bom thead, .bom tbody, .bom tr, .bom td, .bom th {
    display: block;
    width: 100%;
  }
  .bom thead { display: none; }
  .bom tbody tr {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 16px;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }
  .bom td {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
  }
  .bom td:nth-child(2) { justify-content: center; }
  .bom img {
    width: 120px;
    height: 90px;
  }
}

/* ===== Generic block spacing ===== */
.section-block { margin: 18px 0 10px; }

/* ===== Carousel (2-per-view, no crop) ===== */
/* ===== Carousel (2-per-view, NO CROP — hard override) ===== */
.carousel{
  position:relative;
  max-width:980px;
  margin:10px auto 6px;
}
.car-viewport{ overflow:hidden; border-radius:12px; }
.car-track{ display:flex; transition:transform .35s ease; }

/* 슬라이드 2장씩(모바일 1장) */
.car-slide{
  min-width:50%;
  box-sizing:border-box;
  padding:10px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* ✅ 핵심: 이전 height/cover/aspect 규칙 전부 무력화 */
.car-slide img{
  display:block;
  width:auto !important;
  height:auto !important;
  max-width:100% !important;   /* 너비를 넘지 않음 */
  max-height:420px !important; /* 화면에서 보기 좋은 최대높이(원하는 값으로 조절) */
  object-fit:contain !important; /* 절대 크롭 금지 */
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:6px;
}

/* 캡션 */
.car-slide figcaption{
  margin-top:8px;
  text-align:center;
  font-size:16px;
  color:#6b7280;
}

/* 모바일: 1장 */
@media (max-width:700px){
  .car-slide{ min-width:100%; }
  .car-slide img{ max-height:320px !important; }
}
@media (max-width:500px){
  .car-slide img{ max-height:260px !important; }
}

/* ---- 만약 다른 곳에 남아있는 규칙이 또 덮어쓰면, 아래 두 줄이 최후의 한방 ---- */
.car-slide img{ height:auto !important; aspect-ratio:auto !important; }



/* arrows */
.car-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  width:40px; height:40px; border:none; border-radius:999px;
  background:#fff; box-shadow:0 2px 8px rgba(0,0,0,.18);
  cursor:pointer; font-size:20px; line-height:1; display:grid; place-items:center;
  color:#111827;
}
.car-btn:hover{ background:#f3f4f6; }
.car-btn.prev{ left:8px; }
.car-btn.next{ right:8px; }

/* dots */
.car-dots{ display:flex; gap:8px; justify-content:center; margin-top:10px; }
.car-dots button{
  width:8px; height:8px; border-radius:999px; border:none; background:#d1d5db; cursor:pointer;
}
.car-dots button.active{ background:#111827; }


/* Lightbox (재사용) */
.lightbox{
  position:fixed; inset:0; background:rgba(0,0,0,.6); display:grid; place-items:center; z-index:1500;
  padding:24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}
.lightbox.show{ 
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox img{
  max-width:min(1080px, 92vw); max-height:90vh; border-radius:10px; box-shadow:0 12px 40px rgba(0,0,0,.35);
  background:#fff;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lightbox.show img{
  opacity: 1;
  transform: scale(1);
}
.lightbox-close{
  position:absolute; top:16px; right:16px; border:none; background:#fff; border-radius:999px; width:36px; height:36px;
  cursor:pointer; box-shadow:0 2px 8px rgba(0,0,0,.2); font-size:18px;
  z-index: 1501;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox.show .lightbox-close{
  opacity: 1;
}

/* ===== Horizontal Scroll Gallery (no crop) ===== */
/* ===== 완전 비율 유지형 가로 스크롤 갤러리 ===== */
.scroll-gallery {
  position: relative;
  max-width: 1100px;
  margin: 20px auto;
}

.sg-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 28px;              /* 화살표 영역 확보 */
  scroll-padding-inline: 28px;
}

.sg-track {
  display: flex;
  gap: 18px;
  padding: 6px 0 14px;
}

.sg-track::before,
.sg-track::after {
  content: "";
  flex: 0 0 2px; /* 스냅 여백 */
}

.sg-item {
  flex: 0 0 clamp(320px, 45vw, 520px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 6px;
  aspect-ratio: auto;
  height: 250px;
  overflow: hidden;
}

/* ✅ 핵심: 이미지가 절대 짤리지 않음 */
.img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* 비율 유지, 짤림 방지 */
  display: block;
}

.sg-item figcaption {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin-top: 8px;
}

/* arrows */
.sg-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  width:40px; height:40px; border:none; border-radius:999px;
  background:#fff; box-shadow:0 2px 8px rgba(0,0,0,.18);
  cursor:pointer; font-size:20px; line-height:1; display:grid; place-items:center;
  color:#111827; z-index:2;
}
.sg-btn.left{ left:2px; }
.sg-btn.right{ right:2px; }
.sg-btn:hover{ background:#f3f4f6; }

.sg-viewport{ scrollbar-width:none; }
.sg-viewport::-webkit-scrollbar{ display:none; }

/* 모바일: 1장씩 크게 */
@media (max-width: 700px){
  .sg-item{ flex: 0 0 88vw; }
  .img-wrap{ height: 240px; }
}

/* ===== BOM 테이블 폭 최적화(빈공간 줄이기) ===== */
.bom { 
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  table-layout: fixed;
  border-collapse: collapse;
  background: transparent;
}

.intro-card .bom {
  margin: 0;
}

.bom td:nth-child(2) { 
  width: 160px; 
}

.bom img { 
  width: 140px; 
  height: 100px; 
  object-fit: contain; 
}

/* Enclosure Spec Table */
.enclosure-spec {
  width: 100%;
  max-width: 900px;
  margin: 20px auto 0;
  border-collapse: collapse;
  background: transparent;
}

.enclosure-spec th {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-align: left;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  width: 30%;
}

.enclosure-spec td {
  padding: 14px 20px;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #e9ecef;
}

.enclosure-spec tbody tr:last-child th,
.enclosure-spec tbody tr:last-child td {
  border-bottom: none;
}

/* Scroll Gallery in intro-card */
.intro-card .scroll-gallery {
  margin: 20px 0 0 0;
}

.intro-card .enclosure-spec {
  margin-top: 20px;
}

/* ===== 2x2 Grid Layout for Section 2 (3D Modeling) ===== */
.modeling-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 20px auto 0;
}

/* ===== 3x2 Grid Layout for 3D Modeling (6 photos) ===== */
.modeling-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto 0;
}

.modeling-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.modeling-item .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 6px;
  aspect-ratio: auto;
  height: 250px;
  overflow: hidden;
}

.modeling-item .img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.modeling-item .img-wrap img:hover {
  opacity: 0.9;
}

.modeling-item figcaption {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin-top: 8px;
}

/* ===== Print Layout for Section 3 (Top 2 items, bottom LCD centered) ===== */
.print-layout {
  max-width: 1000px;
  margin: 20px auto 0;
}

.print-top-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.print-bottom-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.print-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.print-item .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 6px;
  aspect-ratio: auto;
  height: 250px;
  overflow: hidden;
}

.print-item .img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.print-item .img-wrap img:hover {
  opacity: 0.9;
}

.print-item figcaption {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin-top: 8px;
}

.print-item.lcd-item {
  max-width: 350px;
  width: 100%;
}

.print-item.lcd-item .img-wrap {
  height: 180px;
}

/* 모바일 반응형 */
@media (max-width: 700px) {
  .modeling-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .modeling-grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .modeling-item .img-wrap,
  .print-item .img-wrap {
    height: 200px;
  }
  
  .print-top-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .print-item.lcd-item {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .modeling-grid {
    grid-template-columns: 1fr;
  }
  
  .modeling-grid-3x2 {
    grid-template-columns: 1fr;
  }
  
  .print-top-row {
    grid-template-columns: 1fr;
  }
  
  .modeling-item .img-wrap,
  .print-item .img-wrap {
    height: 180px;
  }
}

/* ===== Introduction Page Styles ===== */
.intro-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px 60px;
  background: #ffffff;
}

.intro-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c5530;
  margin: 0 0 35px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #4CAF50;
  position: relative;
}

.intro-section h2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #2c5530;
}

.intro-section h3 {
  font-size: 26px;
  font-weight: 600;
  color: #2c5530;
  margin: 50px 0 20px 0;
  padding-left: 15px;
  border-left: 4px solid #4CAF50;
}

/* Intro Card - 각 섹션을 하나의 블록으로 묶음 */
.intro-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 35px;
  margin-bottom: 35px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-top: 3px solid #4CAF50;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Card 내부 요소들 스타일 조정 */
.intro-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-left: none;
}

.intro-card p:last-child {
  margin-bottom: 0;
}

/* Team page specific styles */
.intro-card p:has(+ ul) {
  margin-bottom: 15px;
}

.intro-card ul + p {
  margin-top: 20px;
  margin-bottom: 15px;
}

.intro-section strong {
  color: #2c5530;
  font-weight: 600;
}

.intro-section ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px 0;
}

.intro-card ul {
  margin: 0;
}

.intro-section ul li {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  padding: 10px 0 10px 20px;
  margin-bottom: 8px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-left: none;
  transition: none;
  position: relative;
}

.intro-section ul li::before {
  content: '';
  display: none;
}

.intro-section ul li:hover {
  transform: none;
  box-shadow: none;
}

/* Team Roles Table */
.team-roles {
  margin: 25px 0 30px 0;
  overflow-x: auto;
}

.intro-card .team-roles {
  margin: 20px 0;
}

.team-roles table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.team-roles thead {
  background: #f8f9fa;
  color: #333;
  border-bottom: 2px solid #e9ecef;
}

.team-roles th {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.team-roles tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: background 0.2s ease;
}

.team-roles tbody tr:last-child {
  border-bottom: none;
}

.team-roles tbody tr:hover {
  background: #f8f9fa;
}

.team-roles td {
  padding: 16px 24px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.team-roles td:first-child {
  font-weight: 600;
  color: #333;
  width: 30%;
}

/* System Diagram & Workflow Images */
.system-diagram,
.workflow-img {
  margin: 35px 0 45px 0;
  text-align: center;
}

.intro-card .system-diagram,
.intro-card .workflow-img {
  margin: 25px 0 0 0;
}

.diagram-img {
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
}

.diagram-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.note {
  margin-top: 15px;
  color: #666;
  font-size: 14px;
  padding: 12px 18px;
  background: #f8f9fa;
  border-radius: 6px;
  font-style: italic;
  display: inline-block;
  max-width: 800px;
}

/* Spec Table */
.spec-table {
  width: 100%;
  max-width: 700px;
  margin: 25px auto 40px;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.intro-card .spec-table {
  margin: 0 auto;
  box-shadow: none;
  background: transparent;
  display: table;
}

.spec-table thead {
  background: #f8f9fa;
  color: #333;
  border-bottom: 2px solid #e9ecef;
}

.spec-table th {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.spec-table tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: background 0.2s ease;
}

.spec-table tbody tr:last-child {
  border-bottom: none;
}

.spec-table tbody tr:hover {
  background: #f8f9fa;
}

.spec-table td {
  padding: 16px 24px;
  font-size: 15px;
  color: #333;
}

.spec-table td:first-child {
  font-weight: 600;
  color: #333;
  width: 40%;
}

.field-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}
.field-gallery figure {
  flex: 1 1 300px;
  max-width: 340px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}
.field-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}
.field-gallery figcaption {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .intro-section {
    padding: 30px 20px 40px;
  }

  .intro-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .intro-section h3 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
  }

  .intro-card {
    padding: 20px 22px;
    margin-bottom: 25px;
  }

  .intro-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .intro-section > p {
    font-size: 15px;
    padding: 18px 20px;
    line-height: 1.8;
  }

  .intro-section ul li {
    font-size: 15px;
    padding: 8px 0 8px 15px;
    line-height: 1.8;
  }

  .intro-card .team-roles {
    margin: 15px 0;
  }

  .team-roles table,
  .spec-table {
    font-size: 14px;
  }

  .team-roles th,
  .team-roles td,
  .spec-table th,
  .spec-table td {
    padding: 12px 16px;
  }

  .intro-card .system-diagram,
  .intro-card .workflow-img {
    margin: 20px 0 0 0;
  }

  .diagram-img {
    border-radius: 8px;
  }

  .note {
    font-size: 13px;
    padding: 10px 15px;
  }
}

/* ===== Team Page Styles ===== */
.team-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section-lead {
  font-size: 15px;
  color: #4b5563;
  margin: 0 0 24px 0;
}

.member-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.team-container .member-name {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #2c5530;
  padding: 0;
  border-left: none;
}

.member-role {
  font-size: 15px;
  color: #4b5563;
  margin: 0 0 10px 0;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.member-role:not(:first-of-type) {
  margin-top: 10px;
  margin-bottom: 6px;
}

.member-desc {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 8px;
}

.member-desc:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .team-container {
    padding: 0 20px;
  }

  .member-card {
    padding: 18px;
    margin-bottom: 16px;
  }

  .member-name {
    font-size: 20px;
  }

  .member-role,
  .member-desc {
    font-size: 14px;
  }
}
