.logo { font-size:28px; font-weight: bold; margin-right: 40px; }

.naver-header {
  border-bottom: 1.5px;
}

.naver-header .logo {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.naver-header .container {
  display: flex;
  justify-content: center;
}
.naver-header .d-flex {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  justify-content: center;
}

.naver-tabs {
  display: flex;
  justify-content: center;
  width: 100%; /* 전체화면에서 넓이 100%로 설정 */
}

.naver-tabs ul {
  display: flex;
  gap: 8px;
  padding: 5px;
  /* margin-inline: 5%; 삭제 또는 주석처리 */
  justify-content: center;
}

.naver-tabs li {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
}

.naver-tabs .nav-link {
  border-radius: 20px;
  color:#222225;
}

.naver-tabs .nav-link.active {
  background: #03c75a;
}

/* 네비 탭 버튼 위치 개선 */
.naver-tabs .tab-mask {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.naver-tabs .liquidGlass-wrapper.left {
  margin-right: 6px;
  left: unset;
  top: unset;
  transform: none;
  cursor: pointer;
}
.naver-tabs .liquidGlass-wrapper.right {
  margin-left: 6px;
  right: unset;
  top: unset;
  transform: none;
  cursor: pointer;
}
.naver-tabs .tab-wrapper {
  flex-grow: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.naver-tabs .tab-wrapper::-webkit-scrollbar {
  display: none;
}

/* 탭 아이템이 잘리지 않도록 ul에 min-width 적용 */
.naver-tabs ul.nav {
  min-width: max-content;
  max-width: 100%;
}

.naver-searchbar input {
  border: none;
}

.naver-searchbar button {
  background: #03c75a;
  border: none;
}

.content-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin: auto;
  margin-block: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
  display: none;
}

.content-section.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: flex;
}

.blog-detail{
  display:none;
  width: auto;
  background-color: rgba(255, 255, 255, 0.5);
}

/* 자기소개(about) 반응형 개선 */
@media (max-width: 600px) {
  #about .row.align-items-center {
    flex-direction: column;
    align-items: stretch !important;
  }
  #about .col-md-11 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 8px;
  }
  #about .d-flex.justify-content-between.align-items-center {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }
  #about table {
    width: 100% !important;
    font-size: 0.97rem;
  }
  #about img.rounded-4 {
    max-width: 120px;
    width: 60vw;
    height: auto !important;
    margin: 12px auto 0 auto;
    display: block;
  }
  #about .p-1 {
    padding: 0.5rem 0.2rem !important;
    word-break: keep-all;
    text-align: left;
  }
  .naver-tabs .tab-mask {
    gap: 2px;
  }
  .naver-tabs .liquidGlass-wrapper.left,
  .naver-tabs .liquidGlass-wrapper.right {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    aspect-ratio: 1/1;
    font-size: 18px;
    margin: 0 2px;
    border-radius: 50%; /* 동그랗게 */
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .naver-header .d-flex,
  .naver-header .container {
    max-width: 100%;
    justify-content: flex-start;
  }
  .naver-tabs .tab-mask,
  .naver-tabs .tab-wrapper {
    justify-content: flex-start;
  }
}