#eduList .edu{
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 154%; /* 27.72px */
    letter-spacing: -1.08px;
    margin-bottom: 25px;

}

/* grid */
#eduList .eduList-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px 20px;
    grid-template-columns: repeat(auto-fill, minmax(23%, auto));
    grid-template-rows: repeat(4, 1fr);
}
#eduList .edubox {cursor: pointer;}
/* 1box */
#eduList .eduList-wrap .eduinbox {
    max-width: 300px;
}
#eduList .edubox .thumbnail-img{
    max-width: 300px;
    border-radius: 15px 15px 0px 0px;
}

/* textbox */
#eduList .edubox .eduinbox {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border: 1px solid var(--Gray100);
    border-radius: 0px 0px 15px 15px;
}
#eduList .edubox .edu-company {
    display: flex;
    align-items: center;
    width: 100%;
    word-break: break-all;
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
#eduList .edubox .edu-company p,
#eduList .edubox .edu-company p>span {
    color: var(--Gray600);
}
#eduList .edubox .edu-company .eduname {
    margin-left: 4px;
}

/* JDC제주국제자유도시개발센터 */
#eduList .edu-company .companyname {
    font-size: 13px;
    letter-spacing: -0.0525rem;
    text-align: left;
}
#eduList .edu-company .companyname span {
    font-size: 13px;
    letter-spacing: -0.0525rem;
    color: var(--Gray600);
}

/* 후기내용 */
#eduList .edubox h6 {
    width: 100%;
    word-break: break-all;
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
    margin: 4px 0 16px;
    line-height: 154%;
    text-align: left;
}

/* 태그 */
/* #eduList .edubox .edu-tag {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
}
#eduList .edubox .edu-tag span {
    padding: 4px 6px;
    color: #909090;
    border: 1px solid #909090;
    border-radius: 4px;
    font-size: 12px;
} */


@media only screen and (min-width: 768px) and (max-width: 900px) {
    #eduList .eduList-wrap {
        grid-template-columns: repeat(auto-fill, minmax(24%, auto));
    }
  }
  @media only screen and (max-width: 768px) {
    #eduList .eduList-wrap {
        grid-template-columns: repeat(auto-fill, minmax(33%, auto));
        gap: 20px 10px;
    }
  }
  @media only screen and (max-width: 425px) {
    #eduList .edubox h6 {
        height: 2.849rem;
        font-size: 1rem;
    }
    #eduList .edubox .eduinbox {
        padding: 14px;
    }
  }