.srp-reviews-wrap {
    background: #edf2ed;
    padding: 32px 20px 40px;
    overflow: hidden;
}

.srp-top {
    background: #cfe6c8;
    text-align: center;
    padding: 34px 20px 28px;
    border-radius: 0;
    margin: -32px -20px 20px;
}

.srp-heading {
    margin: 0 0 18px;
    color: #000;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.15;
    font-weight: 600;
}

.srp-summary-line,
.srp-count-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #000;
}

.srp-summary-line {
    font-size: clamp(20px, 1.6vw, 34px);
}

.srp-rating-label {
    font-weight: 500;
}

.srp-score {
    font-size: 1.2em;
}

.srp-count-line {
    margin-top: 14px;
    font-size: clamp(18px, 1.2vw, 28px);
}

.srp-count-line strong {
    text-decoration: underline;
}

.srp-stars,
.srp-card-stars {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.srp-star-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #00b67a;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.srp-carousel-area {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 34px;
}

.srp-track-viewport {
    overflow: hidden;
}

.srp-track {
    display: flex;
    gap: 18px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.srp-card {
    flex: 0 0 calc(25% - 13.5px);
    background: #f5f5f5;
    border-radius: 18px;
    padding: 30px 28px;
    text-align: center;
    box-sizing: border-box;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.02);
}

.srp-card-title {
    margin: 18px 0 8px;
    font-size: clamp(22px, 1.8vw, 32px);
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.srp-card-role {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

.srp-card-content {
    font-size: 15px;
    line-height: 1.55;
    color: #111;
}

.srp-card-name {
    margin-top: auto;
    padding-top: 16px;
    font-size: 17px;
    color: #111;
}

.srp-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 0;
    background: #fff;
    color: #111;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

.srp-prev { left: 0; }
.srp-next { right: 0; }

.srp-view-all-wrap {
    text-align: center;
    margin-top: 16px;
}

.srp-view-all,
.srp-submit-button,
.srp-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border: 0;
    cursor: pointer;
}

.srp-view-more {
    margin: 14px auto 0;
    display: none;
    background: transparent;
    color: #000;
    padding: 0;
    min-height: auto;
    text-decoration: none;
}

.srp-submit-button[disabled] {
    opacity: 0.7;
    cursor: wait;
}

.srp-nav[disabled] {
    cursor: not-allowed;
}

.srp-form-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.srp-form {
    background: #f5f5f5;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}

.srp-form-field {
    margin: 0 0 16px;
}

.srp-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.srp-form input,
.srp-form select,
.srp-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #cfd4cf;
    border-radius: 10px;
    background: #fff;
}

.srp-honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.srp-form-message {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 10px;
}

.srp-form-message-success {
    background: #e7f6ec;
    color: #166534;
}

.srp-form-message-error {
    background: #fdecec;
    color: #991b1b;
}

.srp-modal[hidden] {
    display: none !important;
}

.srp-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.srp-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.srp-modal-dialog {
    position: relative;
    max-width: 680px;
    margin: 8vh auto 0;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    z-index: 1;
}

.srp-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.srp-modal-title {
    margin: 0 0 14px;
}

.srp-modal-content {
    line-height: 1.7;
}

.srp-modal-name {
    margin-top: 18px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .srp-card {
        flex: 0 0 calc(33.333% - 12px);
    }
}

@media (max-width: 991px) {
    .srp-top {
        padding-bottom: 24px;
    }

    .srp-card {
        flex: 0 0 calc(50% - 9px);
        min-height: 290px;
    }

    .srp-carousel-area {
        padding: 0 18px;
    }
}

@media (max-width: 767px) {
    .srp-reviews-wrap {
        padding: 18px 14px 28px;
    }

    .srp-top {
        margin: -18px -14px 16px;
        padding: 28px 16px 22px;
    }

    .srp-card {
        flex: 0 0 100%;
        min-height: auto;
    }

    .srp-card-content.srp-has-more {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .srp-view-more {
        display: inline-flex;
    }

    .srp-nav {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .srp-carousel-area {
        padding: 0 22px;
    }

    .srp-modal-dialog {
        margin: 12vh 14px 0;
        padding: 24px 18px;
    }
}
