.gb {
    --gb-card: #fff;
    --gb-ink: #1c2420;
    --gb-muted: #6a746e;
    --gb-line: #e8e4dc;
    --gb-accent: #2f6b5a;
    --gb-soft: #f4f7f5;
    --gb-radius: 10px;
    color: var(--gb-ink);
    padding: 20px 0 48px;
}
.gb * { box-sizing: border-box; }
.gb-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -2px;
}
.gb-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 4px 0 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--gb-line);
}
.gb-hero__content,
.gb-hero__content_ { flex: 1; min-width: 0; }
.gb-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gb-accent);
    font-weight: 700;
}
.gb-hero h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.2;
    font-weight: 650;
    letter-spacing: -0.02em;
}
.gb-hero p {
    margin: 0;
    max-width: 40rem;
    color: var(--gb-muted);
    line-height: 1.65;
}
.gb-google {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 10px;
    background: #fff;
    border: 1px solid var(--gb-line);
    border-radius: 10px !important;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s ease;
    width:250px !important;
}
.gb-google:hover,
.gb-google:focus {
    border-color: var(--gb-accent);
    text-decoration: none;
    color: inherit;
}
.gb-google__icon { width: 36px; height: 36px; flex-shrink: 0; }
.gb-google__icon svg { display: block; width: 100%; height: 100%; }
.gb-google__body { display: flex; flex-direction: column; gap: 3px; }
.gb-google__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gb-muted);
    line-height: 1;
}
.gb-google__row { display: flex; align-items: center; gap: 8px; }
.gb-google__score {
    font-size: 2.2rem !important;
    font-weight: 750;
    line-height: 1;
    letter-spacing: -0.02em;
}
.gb-google__stars { display: inline-flex; align-items: center; gap: 1px; }
.gb-google__stars svg { width: 14px; height: 14px; display: block; }
.gb-google__stars .star-full { fill: #fbbc04; }
.gb-google__count {
    font-size: 0.98rem !important;
    color: var(--gb-muted);
    line-height: 1.2;
}
.gb-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    margin: 18px 0 22px;
    color: var(--gb-muted);
    font-size: 1.86rem !important;
}
.gb-toolbar__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.gb-toolbar__item strong { color: var(--gb-ink); font-weight: 650; }
.gb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 14px;
    margin-bottom: 36px;
}
.gb-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--gb-card);
    border: 1px solid var(--gb-line);
    border-radius: var(--gb-radius);
    padding: 20px 20px 16px;
    transition: border-color .2s ease;
}
.gb-card:hover { border-color: rgba(47, 107, 90, 0.35); }
.gb-card__top {
    position: absolute;
    top: 14px;
    right: 16px;
    margin: 0;
}
.gb-card__quote {
    color: var(--gb-accent);
    opacity: 0.55;
}
.gb-card__quote .gb-icon { width: 18px; height: 18px; }
.gb-card__text {
    margin: 0 0 16px;
    padding-right: 26px;
    flex: 1;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--gb-ink);
    white-space: pre-wrap;
}
.gb-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--gb-line);
}
.gb-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gb-soft);
    overflow: hidden;
    border: 1px solid var(--gb-line);
}
.gb-avatar img {
    width: 72%;
    height: 72%;
    object-fit: contain;
    display: block;
}
.gb-avatar--female { background: #f7f1f3; }
.gb-avatar--male { background: #eef3f6; }
.gb-card__who {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.gb-card__name {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 650;
    font-size: 1.4rem !important;
    color: var(--gb-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gb-card__name .gb-icon { width: 14px; height: 14px; color: var(--gb-accent); }
.gb-card__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.1rem;
    color: var(--gb-muted);
}
.gb-card__date .gb-icon { width: 13px; height: 13px; }
.gb-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 40px 24px;
    border: 1px dashed var(--gb-line);
    border-radius: var(--gb-radius);
    color: var(--gb-muted);
}
.gb-empty .gb-icon { width: 28px; height: 28px; color: var(--gb-accent); }
.gb-cta {
    display: flex;
    justify-content: center;
    padding: 4px 0 8px;
}
.gb-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--gb-accent);
    color: #fff !important;
    font-weight: 650;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: background .2s ease;
}
.gb-cta__btn .gb-icon { stroke: #fff; width: 16px; height: 16px; }
.gb-cta__btn:hover,
.gb-cta__btn:focus {
    background: #255748;
    color: #fff !important;
    text-decoration: none !important;
}
@media (max-width: 767px) {
    .gb-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 0 16px;
    }
    .gb-google { width: 100%; }
    .gb-grid { grid-template-columns: 1fr; gap: 12px; }
    .gb-cta__btn { width: 100%; }
}