/* Custom Reviews — Banner Zone (wide, short).
 * 3 horizontal columns 20% / 60% / 20%.
 * Left column: photo + author inline (cr-banner-name-row), stars below.
 */

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

.cr-banner-card {
    position: relative;
    display: grid;
    grid-template-columns: 25% 50% 25%;
    align-items: stretch;
    background-color: var(--accent, #3498db);
    color: #fff;
    padding: 0;
    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-banner-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5%;
    box-sizing: border-box;
    overflow: hidden;
    gap: 1cqh;
}
.cr-banner-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5%;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}
.cr-banner-mid-text {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cr-banner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5%;
    box-sizing: border-box;
    overflow: hidden;
    gap: 1cqh;
}
.cr-banner-avatar {
    width: 22cqh !important;
    height: 22cqh !important;
    border-radius: 50% !important;
    object-fit: cover;
    flex-shrink: 0;
    border: 0.4cqh solid rgba(255, 255, 255, 0.6);
    box-shadow: rgba(0, 0, 0, 0.2) 0 0.3cqh 0.6cqh;
    box-sizing: border-box;
    margin: 0 !important;
    max-width: none !important;
    max-height: none !important;
    display: block;
}
.cr-banner-avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8cqh;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-style: normal;
    line-height: 1;
}

.cr-banner-author-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.4cqh;
    min-width: 0;
    text-align: start;
}
.cr-banner-author {
    font-size: 11cqh;
    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-banner-author-title {
    font-size: 7cqh;
    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-banner-text {
    font-size: 9cqh;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    line-height: 1.35;
    opacity: 0.95;
    max-width: 100%;
}
.cr-banner-stars {
    padding-top: 2.5%;
    font-size: 14cqh;
    color: #FBBC04;
    letter-spacing: 0.15em;
    line-height: 1;
    -webkit-text-stroke: 0.4cqh var(--text, #000);
    text-shadow:
        rgba(0, 0, 0, 0.16) 0 0.3cqh 0.6cqh,
        rgba(0, 0, 0, 0.23) 0 0.3cqh 0.6cqh;
}
.cr-banner-biz {
    font-size: 8cqh;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    opacity: 0.85;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 100%;
}
