.searched-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 15rem;
}
.searched-box {
    width: 100%;
    height: auto;
    background-color: #323232;
    display: grid;
    grid-template-columns: 5fr 2fr;
    overflow: hidden;
    cursor: pointer;
}
.searched-box h3 {
    margin: 0.5rem 0 0.5rem 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 최대 2줄까지 표시 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.searched-box div p {
    margin: 0.5rem 0 0.5rem 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 최대 2줄까지 표시 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1.2rem
}
.searched-box-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.searched-box-thumbnail img{
    max-width: 7rem;
    max-height: 7rem;
    margin: 0 1rem;
}
.searched-box .view-count-box {
    margin-left: 1.2rem;
    padding: 0.5rem 0;
}
.searched-box .view-count-box img {
    width: 0.8rem;
    height: auto;
}
@media (min-width: 550px) {
    .searched-box h3 {
        margin: 1.5rem 0 2rem 2.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 1; /* 최대 2줄까지 표시 */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .searched-box div p {
        margin: 1.5rem 0 1rem 2.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 최대 2줄까지 표시 */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .searched-box-thumbnail {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .searched-box-thumbnail img{
        max-width: 13rem;
        max-height: 13rem;
    }
    .searched-box .view-count-box {
        margin-left: 2.9rem;
        padding: 0.5rem 0;
    }
    .searched-box .view-count-box img{
        min-width: 1.5rem;
        height: auto;
    }
}
