.review-top10-list {
margin: 30px 0;
}
.review-top10-item {
display: flex;
align-items: center;
gap: 30px;
padding: 30px 0;
border-bottom: 1px solid #e0e0e0;
}
.review-top10-item:last-child {
border-bottom: none;
}
.review-top10-number {
font-size: 48px;
font-weight: bold;
color: #4A90E2;
min-width: 60px;
text-align: center;
}
.review-top10-image {
flex-shrink: 0;
width: 200px;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
border-radius: 8px;
padding: 20px;
}
.review-top10-image img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.review-top10-content {
flex: 1;
}
.review-top10-subtitle {
font-size: 14px;
color: #666;
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.review-top10-title {
font-size: 22px;
font-weight: 600;
color: #333;
margin: 0 0 20px 0;
line-height: 1.4;
}
.review-top10-button {
display: inline-block;
background: #E91E63;
color: #fff !important;
padding: 12px 30px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
transition: background 0.3s ease;
}
.review-top10-button:hover {
background: #C2185B;
color: #fff !important;
} @media (max-width: 768px) {
.review-top10-item {
flex-direction: column;
text-align: center;
gap: 20px;
}
.review-top10-number {
font-size: 36px;
}
.review-top10-image {
width: 100%;
max-width: 250px;
}
.review-top10-title {
font-size: 18px;
}
}