.archive-nots{
    background-color: #F6F6F6;
    padding: 4.66rem 0 2rem;
}

.archive-nots .row:not(.r2){
    flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    grid-gap: 20px 0;
    margin-bottom: 2rem;
}

.archive-nots .row>*{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    padding: 0 10px;
}

.archive-nots .dest{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    width: 100%;
    aspect-ratio: 1/.35384;
    border-radius: 15px;
    background-size: cover !important;
    padding: 2.53rem 2.4rem;
}

.archive-nots .dest .tag{
    color: var(--white);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.07px;
}

.archive-nots .dest .title{
    color: var(--white);
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    letter-spacing: 0.075px;
}

.archive-nots .search{
    border-radius: 5px;
    background-color: var(--white);
    padding: 23px 20px;
}

.archive-nots .search:last-child{
    margin-top: 1rem;
}

.archive-nots .search .btitle{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--green);
    font-size: 22px;
    font-weight: 900;
    line-height: 26px;
    margin-bottom: 7px;
}

.archive-nots .search .btitle::after{
    content: '';
    width: 22px;
    aspect-ratio: 1/1;
    background-size: contain !important;
}

.archive-nots .search .form{
    position: relative;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    width: 100%;
}

.archive-nots .search .form::after{
    content: url(../../assets/img/search.svg);
    position: absolute;
    right: 1rem;
    height: 19px;
}

.archive-nots .search .form .ipts{
    width: 100%;
    color: var(--strong);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.07px;
    border: none;
    border-radius: 5px;
    background-color: #EFF2F4;
    padding: 18px 3.33rem 18px 1rem;
}

.archive-nots .search .form .ipts::placeholder{
    color: #5E6F64;
}

.archive-nots .search .tags{
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    align-items: center;
    grid-gap: 5px;
}

.archive-nots .search .tags>*{
    flex: 1 1 calc((100%/3) - 5px);
    text-align: center;
    color: var(--green);
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0.08px;
    border: 1px solid #8BC63E29;
    border-radius: 5px;
    padding: 10px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.archive-nots .search .tags>*:hover,
.archive-nots .search .tags>*.active{
    color: var(--main);
    border-color: #f2f2f2;
    background-color: #f2f2f2;
}

.archive-nots .row.r2{
    grid-gap: 23px 0;
}

.archive-nots .box{
    width: clamp(10px,100%,380px);
    border: 1px solid var(--line);
    border-radius: 10px;
    background-color: var(--white);
    margin: 0 auto;
}

.archive-nots .box .img{
    width: 100%;
    aspect-ratio: 1/.73947;
}

.archive-nots .box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.archive-nots .box .bottom{
    border-bottom: 1px solid var(--line);
    padding: 19px 13px 25px 1rem;
}

.archive-nots .box .posttype{
    display: block;
    display: -webkit-block;
    color: var(--main);
    margin-bottom: 10px;
}

.archive-nots .box .title{
    color: var(--strong);
    font-size: 20px;
    font-weight: 500;
    line-height: 23px; 
    margin-bottom: 11px;
}

.archive-nots .box .text{
    display: -webkit-box;
    display: -moz-box;
    color: #5E6F64;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.07px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    box-orient: vertical;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    overflow: hidden;
}

.archive-nots .box .sm{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    grid-gap: 1rem;
    color: var(--main);
    font-weight: 600;
    padding: 18px;
}

.archive-nots .box .sm::after{
    content: url(../../assets/img/plus.svg);
}

@media(max-width:992px){
    .archive-nots{
        padding: 2rem 0;
    }
}

@media(max-width:768px){
    .archive-nots .dest{
        padding: 1.5rem;
    }
    .archive-nots .search{
        padding: 1rem;
    }
}