/* Custom Reviews — Split Horizontal Zone (half-screen width).
 * 20% photo+author top / 60% text+stars / 20% biz.
 */

.cr-split {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cr-split-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    text-align: center;
    background-color: var(--accent, #3498db);
    color: #fff;
    padding: 4cqmin;
    width: 100%;
    height: 100%;
    word-break: break-word;
    box-sizing: border-box;
    box-shadow:
         2.5cqmin  2.5cqmin 0 color-mix(in srgb, var(--accent, #3498db), black 25%),
        -2.5cqmin -2.5cqmin 0 color-mix(in srgb, var(--accent, #3498db), white 25%);
}

.cr-split-top {
    flex: 0 0 20%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.5%;
    min-height: 0;
    overflow: hidden;
}
.cr-split-mid {
    flex: 0 0 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2cqmin;
    min-height: 0;
    overflow: hidden;
    padding: 5% 1cqmin;
}
.cr-split-mid-text {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cr-split-bot {
    flex: 0 0 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
}

.cr-split-avatar {
    width: 9.5cqmin !important;
    height: 9.5cqmin !important;
    border-radius: 50% !important;
    object-fit: cover;
    flex-shrink: 0;
    border: 0.4cqmin solid rgba(255, 255, 255, 0.6);
    box-shadow: rgba(0, 0, 0, 0.2) 0 0.3cqmin 0.6cqmin;
    box-sizing: border-box;
    margin: 0 !important;
    max-width: none !important;
    max-height: none !important;
    display: block;
}
.cr-split-avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2cqmin;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-style: normal;
    line-height: 1;
}
.cr-split-quote {
    position: absolute;
    top: 1.5cqmin;
    left: 3cqmin;
    font-size: 18cqmin;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    opacity: 0.28;
    line-height: 1;
    pointer-events: none;
}

.cr-split-author-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.4cqmin;
    min-width: 0;
    text-align: start;
}
.cr-split-author {
    font-size: 5cqmin;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 100%;
}
.cr-split-author-title {
    font-size: 2.8cqmin;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    opacity: 0.75;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.cr-split-stars {
    margin-top: 2.5%;
    font-size: 3.5cqmin;
    color: #FBBC04;
    letter-spacing: 0.2em;
    line-height: 1;
    -webkit-text-stroke: 0.4cqmin var(--text, #000);
    text-shadow:
        rgba(0, 0, 0, 0.16) 0 0.3cqmin 0.6cqmin,
        rgba(0, 0, 0, 0.23) 0 0.3cqmin 0.6cqmin;
}
.cr-split-text {
    font-size: 3.3cqmin;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    line-height: 1.45;
    opacity: 0.95;
    max-width: 100%;
}
.cr-split-biz {
    font-size: 3cqmin;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    opacity: 0.85;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 100%;
}
