.page-top-container{
    background: url("../img/interior/interior-bg.png");
}
.tab-area{
    width: 350px;
    margin: 40px auto 0;
    display: flex;
    gap: 15px;
}
.tab-area .tab{
    border-radius: 54px;
    background: #D9D9D9;
    color: #3C3C3C;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -1px;
    width: calc(50% - 7.5px);
    padding: 15px;
    cursor: pointer;
}
.tab-area .tab.active{
    background: #11624A !important;
    color: #fff !important;
}
.tab-container{
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 50px;
}
.tab-container .tab-wrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 두 칼럼 */
    gap: 12px; /* 칸 사이 여백 */
}
.tab-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tab-container .tab-wrap div {
    aspect-ratio: 1 / 0.6;
}
.tab-container .tab-wrap div:nth-child(3n+1) {
    grid-column: span 2;
    border-radius: 20px;
    background: #D9D9D9;
    text-align: center;
    overflow: hidden;
}

.tab-container .tab-wrap div:nth-child(3n+2),
.tab-container .tab-wrap div:nth-child(3n+3) {
    border-radius: 20px;
    background: #D9D9D9;
    text-align: center;
    overflow: hidden;
}
.no-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
    color: #505050;
    background: transparent !important;
    padding: 0 !important;
    aspect-ratio: unset !important;
}
@media(max-width: 768px) {

    .tab-container .tab-wrap div:nth-child(3n+1) {
        padding: 20% 0;
    }
    .tab-container .tab-wrap div:nth-child(3n+2),
    .tab-container .tab-wrap div:nth-child(3n+3) {
        padding: 30% 0;
    }
}
@media(max-width: 650px) {
    .tab-area .tab{
        font-size: 15px;
        padding: 14px;
    }
}
@media(max-width: 468px) {
    .tab-area {
        width: 300px;
    }
    .tab-container .tab-wrap{
        gap: 6px;
    }
}
