.edu-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.edu-toggle {
    cursor: pointer;
    color: rgb(0, 0, 0);

    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    
    font-size: 1.6rem;
    font-weight: 500;

    border-bottom: 2px solid #000000;


    & > p:first-of-type {
        margin-right: auto; 
}
}

.edu-toggle:hover {

  transform: scale(1.02); /* 살짝 확대 */
  transition: transform ease 0.3s;
}

.edu-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;

  background-color: rgb(237, 237, 237);
    margin-bottom: 2rem;
  
  font-size: 1.2rem;

  & div{
    padding: 2rem;
  }
}
