
/* 📱 모바일 반응형 추가 */
@media screen and (max-width: 1024px) {
  .about-wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }

  .about-title-box {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }

  .about-line {
    height: 40px;
    margin-bottom: 10px;
  }

  .about-title h2 {
    font-size: 20px;
  }

  .about-content table {
    font-size: 14px;
  }

  .org-box {
    font-size: 13px;
    padding: 8px 12px;
  }

  .history-row {
    grid-template-columns: 1fr;
    font-size: 14px;
    gap: 5px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }

  .history-row .desc {
    width: auto;
  }
}

@media screen and (max-width: 600px) {
  .about-title h2 {
    font-size: 18px;
  }

  .org-chart {
    overflow-x: auto;
  }

  .org-box {
    min-width: 90px;
    font-size: 12px;
  }

  .history-list {
    padding: 0 20px;
  }

  .history-row {
    font-size: 13px;
  }
  
  .history-row .desc {
    width: 100%;
    padding-left: 8px;
    font-size: 14px;
  }

  .about-content th,
  .about-content td {
    font-size: 13px;
    display: block;
    width: 100%;
  }

  .about-content th {
    margin-top: 10px;
  }
}
