.list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*gap: 15px;*/
    margin-top: 5px;
    height:670px;
    /*background: skyblue;*/
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: center;*/
    /*gap: 15px;*/
    margin-top: 5px;
    width:1080px;
    height:500px;
    /*background: skyblue;*/
    float:left;
}

/* Frame luar 300 x 300 */
.frame-foto{
    width: 190px;
    height: 240px;
    border-radius: 8px;
    background: #eee;
    margin-left:14px;
}

.frame-outer {
    width: 190px;
    height: 190px;
    background: #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Frame dalam 280 x 280 */
.frame-inner {
    width: 175px;
    height: 175px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-inner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.frame-text {
    width:190px;
    height:50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* PAGING */
.paging {
    margin-top: 10px;
    text-align: center;
    /*background:skyblue;*/
}

.paging a {
    background: rgba(255,0,0,0.1);
}

.page-number {
    width:21px;
    height:30px;
    border:1px solid #aaa;
    display: inline-block;
    padding: 5px 5px;
    margin: 0 5px;
    background: #eee;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-size:20pt;
    font-weight: bold;
}

.page-number.active {
    background: #3f8efc;
    color: #fff;
}

.page-btn img {
    margin-right: 30px;
    margin-left: 30px;
}

/* Tombol arrow (next & prev) */
.page-btn.arrow img {
    width: 50px;
    height: 50px;
    margin-bottom:-15px;
}

.page-info {
    width: 1080px;
    height: 30px;
    /*background: yellow;*/
    display: flex;
    align-items: center;
    justify-content: center;
}