/* Flores Navarro - Google Reviews front styles
   Uses theme CSS variables with safe fallbacks. */
.fn-gr-block {
    padding: 48px 0;
    background: var(--fn-gr-bg, transparent);
}
.fn-gr-block__header {
    margin-bottom: 32px;
}
.fn-gr-block__title {
    display: inline-block;
    margin: 0 0 0 8px;
    vertical-align: middle;
    font-weight: 600;
    color: var(--text-color, var(--color-text, #232323));
}
.fn-gr-block__logo {
    vertical-align: middle;
}

.fn-gr-swiper {
    position: relative;
    padding: 8px 4px 48px;
    overflow: hidden;
}
.fn-gr-slide {
    height: auto;
    display: flex;
}

.fn-gr-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    transition: box-shadow .25s ease, transform .25s ease;
}
.fn-gr-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.fn-gr-card__header {
    gap: 12px;
    margin-bottom: 12px;
}
.fn-gr-card__avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    flex-shrink: 0;
    background: #eee;
}
.fn-gr-card__avatar--initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary, #e91e63);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
.fn-gr-card__meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}
.fn-gr-card__name {
    font-size: 15px;
    color: var(--text-color, #232323);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fn-gr-card__date {
    font-size: 12px;
    margin-top: 2px;
}

.fn-gr-card__stars {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
}
.fn-gr-star {
    color: rgba(0, 0, 0, .15);
}
.fn-gr-star--filled {
    color: #fbbc04;
}

.fn-gr-card__text {
    flex: 1 1 auto;
    font-size: 14px;
    color: var(--text-color, #555);
    line-height: 1.5;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
}

.fn-gr-card__footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, .06);
}
.fn-gr-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary, #1a73e8);
    text-decoration: none;
}
.fn-gr-card__link:hover {
    text-decoration: underline;
}

/* Swiper navigation — hidden/shown per-device via JS-set classes */
.fn-gr-swiper .swiper-button-prev,
.fn-gr-swiper .swiper-button-next {
    color: var(--primary, #333);
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    border: 0;
    margin-top: -20px;
}
.fn-gr-swiper .swiper-button-prev::after,
.fn-gr-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}
.fn-gr-swiper .swiper-pagination-bullet-active {
    background: var(--primary, #e91e63);
}
.fn-gr-swiper.fn-gr-swiper--no-arrows .swiper-button-prev,
.fn-gr-swiper.fn-gr-swiper--no-arrows .swiper-button-next {
    display: none;
}
.fn-gr-swiper.fn-gr-swiper--no-dots .swiper-pagination {
    display: none;
}
