header{
  background-color: white;
  border-bottom: 1.3px solid black;
  padding-bottom: 0px;
  height: auto;
  padding-bottom: 10px;
}

#descriptionP{
  padding-top: 74px;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.53;
}
#descriptionPLine{
  padding-left: 30px;
  border-left: 1.4px solid black;
}

#main-container-about{
  padding: 10px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 100vh;
}

#aboutList{
  /* padding-top: 90px; */
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#aboutList ul{
  /* width: 25%; */
  width: calc(20% - 20px);
  /* padding-right: 20px; */
}
#aboutList ul li{
  /* margin-bottom: 8px;
  margin-top: 4px; */
  line-height: 1.53;
  letter-spacing: -0.01em; 
}

#aboutList ul li:nth-child(1){
  /* background-color: black; */
  /* color: white !important; */
  /* border-bottom: 1.5px solid black; */
  background-color: rgb(0, 0, 0);
  display: inline-block;
  /* padding-right: 5px;
  padding-left: 3.5px; */
  padding-top: 2px;
  width: 24px;
  height: 24px;
  text-align: center;
  border-radius: 99%;
  color: white !important;
  margin-bottom: 3px;
}

/* #aboutList ul li:nth-child(){
  padding-left: 20px;
} */

#aboutList ul li:nth-child(4){
  padding-left: 30px;
  border-left: 1.4px solid black;
}

#aboutList ul{
  margin-bottom: 16px;
}

/* @media mobile */
@media (max-width: 1100px) {
  #aboutList ul{
    /* width: 25%; */
    width: calc(25% - 20px);
    /* padding-right: 20px; */
  }
}

@media (max-width: 900px) {
  #aboutList ul{
    /* width: 25%; */
    width: calc(33.3333% - 20px);
    /* padding-right: 20px; */
  }
}

@media (max-width: 875px) {
  header{

    padding-bottom:0px;
  }

  #aboutList ul{
    
    /* width: 25%; */
    width: calc(100%);
    /* padding-right: 20px; */
  }
}

/* 필터 모달 스타일 */
#filterModal {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#filterModal h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

#filterModal p {
  word-break: break-word;
  white-space: pre-wrap;
  max-width: 80% !important;
}

#filterModal a {
  color: #0066cc;
  text-decoration: none;
}

#filterModal a:hover {
  text-decoration: underline;
}

#filterModal img.about-image {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  border-radius: 4px;
}

#aboutList ul li:nth-child(1):hover{
  background-color: rgb(255, 255, 255);
  color: black !important;
  transition: 0.3s;
}

.about-image{
  max-width: 600px !important;
  border-radius: 0 !important;

}