/* Reviews List Layout (이미지 형식 적용) */
.mst-reviews-list { 
    width: 100%; 
    border-top: 1px solid #eee; 
    margin: 40px 0;
}

.mst-review-item { 
    display: flex; 
    gap: 50px; 
    padding: 45px 0; 
    border-bottom: 1px solid #eee; 
    align-items: flex-start;
    transition: all 0.3s ease;
}

/* 왼쪽 정보 영역 */
.mst-review-info { 
    flex: 0 0 250px; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.mst-review-logo { 
    width: 70px; 
    height: 70px; 
    border-radius: 12px; 
    border: 1px solid #eee; 
    overflow: hidden; 
    flex: 0 0 70px; 
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mst-review-logo-img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    padding: 10px; 
}

.mst-review-meta {
    min-width: 0;
}

.mst-review-name { 
    font-size: 17px; 
    font-weight: 800; 
    color: #111; 
    margin-bottom: 4px; 
    letter-spacing: -0.02em;
}

.mst-review-company { 
    font-size: 14px; 
    color: #2A6BEF; /* 파란색 포인트 컬러 */
    font-weight: 600;
}

/* 오른쪽 본문 영역 */
.mst-review-content { 
    flex: 1; 
    min-width: 0; 
}

.mst-review-text { 
    font-size: 15px; 
    line-height: 1.85; 
    color: #444; 
    word-break: keep-all;
    letter-spacing: -0.01em;
}

/* Scroll Reveal */
.mst-reveal { opacity: 0; transform: translateY(20px); transition: all 0.7s ease; }
.mst-reveal.is-in { opacity: 1; transform: translateY(0); }

/* 모바일 대응 */
@media (max-width: 768px) {
    .mst-review-item { flex-direction: column; gap: 25px; padding: 35px 0; }
    .mst-review-info { flex: 1; }
    .mst-review-text { font-size: 14px; }
}

/* Clients grid */
.mst-logo-grid { display: grid; gap: 18px; align-items: center; }
.mst-clients[data-columns="2"] .mst-logo-grid { grid-template-columns: repeat(2, 1fr); }
.mst-clients[data-columns="3"] .mst-logo-grid { grid-template-columns: repeat(3, 1fr); }
.mst-clients[data-columns="4"] .mst-logo-grid { grid-template-columns: repeat(4, 1fr); }
.mst-clients[data-columns="5"] .mst-logo-grid { grid-template-columns: repeat(5, 1fr); }
.mst-clients[data-columns="6"] .mst-logo-grid { grid-template-columns: repeat(6, 1fr); }
.mst-clients[data-columns="7"] .mst-logo-grid { grid-template-columns: repeat(7, 1fr); }
.mst-clients[data-columns="8"] .mst-logo-grid { grid-template-columns: repeat(8, 1fr); }

.mst-logo { position: relative; display: flex; align-items: center; justify-content: center; border: 1px solid #eee; border-radius: 10px; padding: 18px 14px; background: #fff; text-decoration: none; }
.mst-logo:hover { border-color: #ddd; }
.mst-logo-img { max-width: 120px; max-height: 34px; width: auto; height: auto; object-fit: contain; display: block; }
.mst-logo-name { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Fallback */
.mst-thumb-fallback { width: 100%; height: 100%; background: linear-gradient(90deg,#f3f3f3,#fafafa,#f3f3f3); background-size: 200% 100%; animation: mstshimmer 1.2s infinite; }
@keyframes mstshimmer { 0%{background-position:0 0} 100%{background-position:-200% 0} }
