.cs420-gr{
  --cols-d: 3;
  --cols-t: 2;
  --cols-m: 1;
  width: 100%;
  padding: 18px;
  border-radius: 18px;
}
.cs420-gr__header{
  text-align:center;
  padding: 10px 0 18px;
}
.cs420-gr__headerTitle{
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 22px;
}
.cs420-gr__headerStars{margin-top: 6px;}
.cs420-gr__headerMeta{opacity:.85; margin-top: 6px; font-size: 14px;}
.cs420-gr__googleWord{
  margin-top: 10px;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  opacity: .9;
}
.cs420-gr__stars{display:inline-flex; gap:4px;}
.cs420-gr__star{font-size: 18px; line-height: 1;}
.cs420-gr__star.is-full{color:#f4b400;}
.cs420-gr__star.is-half{color:#f4b400; opacity:.65;}
.cs420-gr__star.is-empty{color: rgba(255,255,255,.28);} /* will be overridden by card text on white */

.cs420-gr__grid{
  display: grid;
  grid-template-columns: repeat(var(--cols-d), minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1024px){
  .cs420-gr__grid{grid-template-columns: repeat(var(--cols-t), minmax(0, 1fr));}
}
@media (max-width: 767px){
  .cs420-gr{padding: 14px; border-radius: 16px;}
  .cs420-gr__grid{grid-template-columns: repeat(var(--cols-m), minmax(0, 1fr));}
  .cs420-gr__googleWord{font-size: 30px;}
}

.cs420-gr__card{
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}
.cs420-gr__cardTop{
  display:flex;
  align-items:center;
  gap: 12px;
}
.cs420-gr__avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  background: rgba(0,0,0,.08);
}
.cs420-gr__who{flex: 1; min-width: 0;}
.cs420-gr__author{font-weight: 800; font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.cs420-gr__when{opacity:.7; font-size: 13px; margin-top:2px;}
.cs420-gr__gmark{
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  background: rgba(0,0,0,.06);
}

.cs420-gr__rating{margin-top: 10px;}
.cs420-gr__text{margin-top: 10px; font-size: 15px; line-height: 1.45; opacity: .92;}
.cs420-gr__more{margin-top: 12px; font-size: 13px; opacity: .6;}

.cs420-gr__empty{
  grid-column: 1 / -1;
  padding: 16px;
  border-radius: 14px;
  background: rgba(0,0,0,.08);
  color: rgba(255,255,255,.9);
}


/* Carrusel tipo "slide" */
.cs420-gr--carousel .cs420-gr__grid{
  display:flex;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling: touch;
  gap:16px;
  padding-bottom:10px;
}
.cs420-gr--carousel .cs420-gr__grid::-webkit-scrollbar{height:10px;}
.cs420-gr--carousel .cs420-gr__grid::-webkit-scrollbar-thumb{background:rgba(255,255,255,.18); border-radius:999px;}
.cs420-gr--carousel .cs420-gr__card{
  scroll-snap-align:start;
  flex: 0 0 calc((100% - (var(--cols-d) - 1) * 16px) / var(--cols-d));
}
@media (max-width: 1024px){
  .cs420-gr--carousel .cs420-gr__card{
    flex-basis: calc((100% - (var(--cols-t) - 1) * 16px) / var(--cols-t));
  }
}
@media (max-width: 767px){
  .cs420-gr--carousel .cs420-gr__card{
    flex-basis: calc((100% - (var(--cols-m) - 1) * 16px) / var(--cols-m));
  }
}
