.download-inner {
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
}

.download-list {
    width: 78%;
}

.download-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.download__title {
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 32px;
}

.download__title h4 {
    text-align: center;
}

.download__list {
    display: flex;
    justify-content: space-between;
}

.download__btn {
    position: absolute;
    right: 0;
}

.download__box {
    background-color: #F7F7F7;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 304px;
}

.download__thumb {
    height: 168px;
    width: 304px;
}

.download__thumb img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.download__txt {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding: 8px 16px 16px 16px;
}

.download__txt h4 {
    line-height: 22px;
    font-size: 16px;
    text-decoration: underline;
    margin-top: 4px;
}

.download__txt p {
    line-height: 20px;
    font-size: 14px;
}

.download__txt p.label span {
    background-color: #032553;
    border-radius: 2px;
    color: #ffffff;
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 0.08em;
    padding: 2px 8px 3px 8px;
}

@media screen and (max-width: 680px) {
    .download-inner {
        flex-direction: column;
        row-gap: 40px;
        padding-bottom: 12vw;        
    }
    .download-list {
        padding-top: 8vw;
        width: 100%;
    }
    .download-detail {
        width: 100%;
    }
    .download-item {
        width: 100%;    
    }
    .download-list ul {
        justify-content: center;
        row-gap: 4.8vw;
    }
    .download__box {
        height: auto;
        width: 90vw;
    }
    .download__thumb {
        height: auto;
        width: 100%;
    }  
}

/*******************

category

*********************/

.download-category {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    width: 20%;
}

.download-category ul {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.download-category ul li {
    padding-left: 24px;
}

.download-category ul li h6 {
    margin-bottom: 8px;
}

.download-category ul li a {
    font-size: 14px;
    text-decoration: underline;
}

.download-category ul li span {
    margin-right: 8px;
}

.download-category ul li span.active svg {
    color: #032553;
    font-size: 10px;
}

.download-category ul li span.not-active svg {
    color: #C0C0C0;
    font-size: 10px;
}

.download-category ul li {
    position: relative;
}

.download-category-arrow {
    position: absolute;
    right: 0;
    top: 0;
}

.download-category-arrow img {
    height: 10px;
    width: 10px;
}

@media screen and (max-width: 680px) {
    .download-category {
        width: 90vw;
    }
}

/*******************

post

*********************/

.download-detail {
    width: 46%;
}

.download-item {
    width: 46%;    
}

.download-detail__thumb {
    height: 280px;
    width: 590px;
}

.download-detail__thumb img {
    border-radius: 8px;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.download-detail__title {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.download-detail__title h2 {
    font-size: 22px;
    line-height: 28px;
}

.download-detail {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.download-detail__title p.label span {
    background-color: #032553;
    border-radius: 2px;
    color: #ffffff;
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 0.08em;
    padding: 4px 10px 5px 10px;
}

.download-detail__item h3 {
    background-color: #ECEDF0;
    padding: 8px 12px;
    font-size: 16px;
    letter-spacing: .02em;
    line-height: 22px;
    margin-bottom: 16px;
}

.download-detail__item p a {
    color: #4FB1A4;
    text-decoration: underline;
}

.download-item {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.download-recommend {
    margin: 32px 0 48px 0;
}

.download-recommend ul {
    display: flex;
    column-gap: 24px;
    flex-wrap: wrap;
}

.download-recommend h4 {
    padding-bottom: 28px;
}

@media screen and (max-width: 680px) {
    .download-detail {
        row-gap: 3.8vw;        
        width: 100%;
    }
    .download-item {
        width: 100%;
    }
    .download-detail__thumb {
        height: 48vw;
        width: 100%;
    }    
    .download-recommend ul {
        row-gap: 4.8vw;
    }
}