.grc-summary-card{
    min-height:320px;
    border-radius:18px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    position:relative;
}

.grc-summary-overlay{
    background:rgba(0,0,0,.65);
    min-height:320px;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.grc-summary-overlay h2{
    color:#fff;
    font-size:38px;
    margin:0 0 15px;
    font-weight:700;
}

.grc-big-stars{
    color:#FB8C00;
    font-size:36px;
    margin-bottom:10px;
}

.grc-rating-number{
    font-size:30px;
    font-weight:700;
    margin-bottom:10px;
}

.grc-total{
    font-size:18px;
    line-height:1.6;
}

.grc-google-word{
    margin-top:20px;
    font-size:42px;
    font-weight:700;
}

.blue{color:#4285F4;}
.red{color:#EA4335;}
.yellow{color:#FBBC05;}
.green{color:#34A853;}


.grc-wrapper{
    position:relative;
    padding:20px 50px;
}
.grc-google-icon {
    font-size: 22px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    line-height: 1;

    background: conic-gradient(
        #4285F4 0deg 90deg,
        #34A853 90deg 180deg,
        #FBBC05 180deg 270deg,
        #EA4335 270deg 360deg
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.grc-card{
    background:#fff;
    border:1px solid #E0E0E0;
    border-radius:12px;
    padding:20px;
    min-height:320px;
    display:flex;
    flex-direction:column;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.grc-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.grc-user{
    display:flex;
    gap:12px;
    align-items:center;
}

.grc-avatar,
.grc-avatar-letter{
    width:48px;
    height:48px;
    border-radius:50%;
    object-fit:cover;
}

.grc-avatar-letter{
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
}

.grc-name{
    color:#1967D2;
    font-size:16px;
    font-weight:700;
}

.grc-google-icon{
    width:26px;
    height:26px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#4285F4;
    border:1px solid #ddd;
}

.grc-stars{
    margin-top:15px;
    color:#FB8C00;
    font-size:24px;
    letter-spacing:2px;
	text-align: left;
}

.grc-review-text{
    margin-top:12px;
    line-height:1.7;
    font-size:15px;
    color:#333;
    max-height:110px;
    overflow-y:auto;
    padding-right:6px;
	text-align: left;
  text-transform: none;
}

.grc-review-text::-webkit-scrollbar{
    width:5px;
}

.grc-review-text::-webkit-scrollbar-thumb{
    background:#ccc;
    border-radius:20px;
}

.grc-prev,
.grc-next{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:9;
    cursor:pointer;
    border:1px solid #ddd;
    box-shadow:0 2px 8px rgba(0,0,0,.12);
}

.grc-prev{
    left:0;
}

.grc-next{
    right:0;
}

.grc-prev:before{
    transform: translate(-30%, -50%) rotate(45deg);
	transition: all 200ms ease-out;
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 0;
    border-bottom-width: 0px;
    border-left-width: 0px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-color: #575757;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
}

.grc-next:before{
   transform: translate(-70%, -50%) rotate(-135deg);
  transition: all 200ms ease-out;
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 0;
	border-bottom-width: 2px;
  border-left-width: 2px;
  border-color: #575757;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
}

.swiper-pagination{
    margin-top:25px;
    position:relative !important;
}

.swiper-pagination-bullet{
    background:#d5d5d5;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#FB8C00;
}

@media(max-width:991px){

    .grc-wrapper{
        padding:20px 40px;
    }

}

@media(max-width:767px){

    .grc-wrapper{
        padding:20px 20px;
    }

    .grc-prev,
    .grc-next{
        display:none;
    }

}