.recent-sec {
    padding: 30px 0;
    background-color: #090A10;
    font-family: 'Pretendard Variable', Pretendard, sans-serif;
}

/* Header */
.gallery-header {
    margin-bottom: 50px;
}

.gallery-badge {
    color: #FF1F23;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.gallery-badge::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: #FF1F23;
    margin-right: 8px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gallery-subtitle {
    font-size: 16px;
    color: #8C8F9E;
    margin: 0;
    font-weight: 500;
}

/* Split Layout */
.gallery-layout-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* Left Side: Gallery */
.gallery-left {
    display: flex;
    flex-direction: column;
}

.gallery-sub-heading {
    font-size: 24px;
    color: #fff;
    font-weight: 800;
    margin: 0 0 24px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.gallery-card {
    display: block;
    aspect-ratio: 4 / 3;
    background-color: #111;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #1E2028;
    transition: transform 0.2s, border-color 0.2s;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: #FF1F23;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-more-link {
    text-align: right;
    margin-top: 8px;
}
.gallery-more-link a {
    color: #FF1F23;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.gallery-more-link a:hover {
    opacity: 0.8;
}

/* Right Side: Reviews */
.gallery-right {
    display: flex;
    flex-direction: column;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-item {
    background-color: #111218;
    border: 1px solid #1E2028;
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}

.review-item:hover {
    border-color: #3F4452;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-stars {
    color: #FBBF24;
    font-size: 14px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.review-author {
    color: #6B7280;
    font-size: 14px;
    margin-left: 12px;
    letter-spacing: 0;
}

.review-date {
    color: #6B7280;
    font-size: 13px;
}

.review-product {
    color: #FF1F23;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.review-content {
    color: #A0A5B5;
    font-size: 14px;
    line-height: 1.6;
}

.review-cert-badge {
    display: inline-block;
    background-color: #0E7490;
    color: #A5F3FC;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-layout-split {
        grid-template-columns: 1fr;
    }
    .gallery-title {
        font-size: 34px;
    }
    .recent-sec {
        padding: 30px 0;
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-title {
        font-size: 26px !important;
        word-break: keep-all;
    }
    .gallery-sub-heading {
        font-size: 18px !important;
    }
    .gallery-right {
        display: none; /* 모바일 극강 최적화를 위해 리뷰 리스트 통째로 날림 */
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .gallery-title {
        font-size: 24px;
    }
}