article {
    padding-top: 40px;
        width: min(calc(100% - 2rem), 1200px);
        margin-inline: auto;
}

.seach_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.seach_box input {
    border: none;
    background: #F7F7F7;
    color: #BBBBBB;
    font-size: 24px;
    font-weight: bold;
    width: 500px;
    padding: 1rem;
    outline: none;
}

.seach_box .seach {
    width: 60px;
    height: 60px;
    background: #3AA3CD;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc((1200px - 6rem) / 3), 1fr));
    gap: 2rem;
    padding-top: 40px;
}

.main a {
    text-decoration: none;
    color: #333;
}

.main .thumb img {
    border-radius: 10px;
    border: 1px solid #f2f2f2;
}

.main .hastags {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: .5rem;
}

.main .hastags li {
    border: 1px solid #3AA3CD;
    color: #3AA3CD;
    padding: .25rem 1rem;
}

.main .ttl {
    padding-top: .5rem;
    font-size: 24px;
    font-weight: bold;
    color: #3AA3CD;
}

.main .time {
    padding-top: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #CDCDCD;
}

.main .explanation {
    padding-top: .5rem;
}

/* .main .continuation {
    margin-top: .5rem;
    border: 1px solid #3AA3CD;
    color: #3AA3CD;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin-inline: auto;
    padding: .5rem;
    cursor: pointer;
}

.main .continuation:hover {
    background: #3AA3CD;
    color: #fff;
} */

.pagination {
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    margin-block: 3rem;
}

.Pagination-Item-Link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 42px;
    height: 42px;
    background: #D9D9D9;
    color: #fff;
    font-weight: bold;
    transition: all 0.15s linear;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.page-buttons {
    display: flex;
    gap: .25rem;
}

.Pagination-Item-Link.active {
    background: #3AA3CD;
    color: #fff;
    pointer-events: none;
}

.Pagination-Item-Link:not(.active):hover {
    background: #3AA3CD;
    color: #fff;
}

.Pagination-Item-Link:not(.active):hover svg {
    color: #fff !important;
}

@media (max-width:768px) {
    .main{
        display: block;
    }
    .main .b:not(:last-child){
        padding-bottom: 2rem;
    }

}