.client-reviews-new-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.crn-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.crn-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #ffa500;
}
.crn-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}


.crn-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.crn-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.crn-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.crn-client-name {
    color: #4da6ff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.crn-date {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.crn-body {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.crn-body::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: #e0e0e0;
    font-family: serif;
    line-height: 1;
}

.crn-text {
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.crn-stars {
    color: #ff9800;
    /* Orange */
    font-size: 18px;
    letter-spacing: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .crn-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        justify-content: flex-start;
        gap: 15px;
    }

    .crn-card {
        min-width: 85%;
        scroll-snap-align: center;
    }
}

@media (max-width: 600px) {
    .crn-card {
        min-width: 90%;
        padding: 20px;
    }
}