.gd-rating-shell {
  margin: 18px auto 34px;
  color: #111;
}

.gd-rating-title {
  margin: 0 0 10px;
  color: #111;
  font-family: var(--font_tartuffotrial);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.gd-rating-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #fff7ef;
  color: #4b4038;
  font-size: 14px;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.07);
}

.gd-rating-date strong {
  color: #111;
}

.gd-rating-list {
  display: grid;
  gap: 18px;
}

.gd-card,
.gd-card * {
  box-sizing: border-box;
}

.gd-card ul,
.gd-card ol {
  margin: 0;
  padding: 0;
  list-style: none !important;
}

.gd-card li {
  list-style: none !important;
}

.gd-card li::marker {
  content: "" !important;
}

.gd-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(251, 142, 28, 0.14), rgba(255, 255, 255, 0.74) 44%, rgba(17, 17, 17, 0.04)),
    #fff;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
}

.gd-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #111, #fb8e1c 58%, #ffd39e);
}

.gd-card__rank {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.gd-card__badge {
  position: absolute;
  top: 5px;
  left: 22px;
  z-index: 1;
  padding: 7px 16px;
  border-radius: 0 0 8px 8px;
  background: #fb8e1c;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.gd-card__inner {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr) 190px;
  gap: 22px;
  align-items: start;
  padding: 34px 24px 22px;
}

.gd-card__brand {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.gd-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 185px;
  height: 88px;
  padding: 12px;
  border-radius: 8px;
  background: #111;
}

.gd-card__logo img {
  display: block;
  max-width: 160px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gd-card__logo span {
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.gd-card__score {
  text-align: center;
}

.gd-card__score strong {
  color: #111;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.gd-card__score > span {
  color: #71665d;
  font-size: 15px;
  font-weight: 800;
}

.gd-card__stars {
  display: inline-block;
  margin-top: 3px;
  color: transparent;
  background: linear-gradient(90deg, #fb8e1c var(--gd-stars), #d6d0ca var(--gd-stars));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 22px;
  letter-spacing: 0;
}

.gd-card__score small {
  display: block;
  color: #766b62;
  font-size: 13px;
}

.gd-card__body h3 {
  margin: 0 0 12px;
  color: #111;
  font-family: var(--font_dmsans);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.16;
}

.gd-card__features {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.gd-card__features li {
  position: relative;
  padding-left: 25px;
  color: #3e372f;
  font-size: 16px;
  line-height: 1.35;
}

.gd-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fb8e1c;
  box-shadow: inset 0 0 0 5px #fff;
}

.gd-card__metrics--desktop {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gd-card__metrics--mobile {
  display: none;
}

.gd-card__metric {
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.gd-card__metric span {
  display: block;
  margin-bottom: 3px;
  color: #86796d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gd-card__metric strong {
  display: block;
  overflow-wrap: anywhere;
  color: #111;
  font-size: 15px;
  line-height: 1.25;
}

.gd-card__actions {
  display: grid;
  gap: 10px;
  padding-top: 24px;
}

.gd-card__cta,
.gd-card__review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.gd-card__cta,
.gd-card__cta:hover {
  color: #111;
  background: linear-gradient(180deg, #ffad55, #fb8e1c);
  box-shadow: 0 14px 26px rgba(236, 128, 11, 0.28);
}

.gd-card__review {
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: #111;
  background: #fff;
  text-transform: none;
}

.gd-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.66);
}

.gd-card__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gd-card__payments span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: #fff;
  color: #3f352d;
  font-size: 13px;
  font-weight: 800;
}

.gd-card__responsible,
.gd-card__responsible * {
  color: #756b62;
  font-size: 13px;
  line-height: 1.35;
}

.gd-card__responsible p {
  margin: 0;
}

@media (max-width: 767px) {
  .hero-area-10 .hero-area-10__inner {
    padding-top: 70px !important;
    padding-bottom: 12px !important;
  }

  .hero-area-10__wrapper {
    margin-bottom: 18px !important;
  }

  .hero-area-10__wrapper .text p {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .hero-area-10-title-wrap .title {
    font-size: 42px !important;
    line-height: 1.02 !important;
  }

  .section.pt-2 {
    padding-top: 0 !important;
  }

  .gd-rating-shell {
    margin: 4px -2px 24px;
  }

  .gd-rating-title {
    margin-bottom: 7px;
    font-size: 28px;
  }

  .gd-rating-date {
    margin-bottom: 10px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .gd-rating-list {
    gap: 10px;
  }

  .gd-card {
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
  }

  .gd-card__rank {
    top: 13px;
    right: 12px;
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .gd-card__badge {
    left: 12px;
    padding: 5px 11px;
    font-size: 11px;
  }

  .gd-card__inner {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 10px;
    padding: 24px 10px 12px;
  }

  .gd-card__brand {
    gap: 7px;
  }

  .gd-card__logo {
    width: 98px;
    height: 56px;
    padding: 8px;
  }

  .gd-card__logo img {
    max-width: 86px;
    max-height: 40px;
  }

  .gd-card__score strong {
    font-size: 25px;
  }

  .gd-card__stars {
    font-size: 16px;
  }

  .gd-card__score small {
    font-size: 11px;
  }

  .gd-card__body h3 {
    margin-bottom: 7px;
    padding-right: 25px;
    font-size: 18px;
    line-height: 1.14;
  }

  .gd-card__features {
    gap: 5px;
    margin-bottom: 8px;
  }

  .gd-card__features li {
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.22;
  }

  .gd-card__features li:nth-child(n+3) {
    display: none;
  }

  .gd-card__features li::before {
    top: 0.42em;
    width: 11px;
    height: 11px;
    box-shadow: inset 0 0 0 4px #fff;
  }

  .gd-card__metrics--desktop {
    display: none;
  }

  .gd-card__metrics--mobile {
    display: block;
  }

  .gd-card__metrics--mobile summary {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 6px 10px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 8px;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 900;
    list-style: none;
  }

  .gd-card__metrics--mobile summary::-webkit-details-marker {
    display: none;
  }

  .gd-card__mobile-metrics {
    display: grid;
    gap: 7px;
    margin-top: 8px;
  }

  .gd-card__metric {
    padding: 8px 9px;
  }

  .gd-card__metric span {
    font-size: 10px;
  }

  .gd-card__metric strong {
    font-size: 13px;
  }

  .gd-card__actions {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .gd-card__cta,
  .gd-card__review {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 14px;
  }

  .gd-card__foot {
    display: block;
    padding: 10px 12px 12px;
  }

  .gd-card__payments {
    gap: 6px;
    margin-bottom: 8px;
  }

  .gd-card__payments span {
    min-height: 23px;
    padding: 3px 8px;
    font-size: 11px;
  }

  .gd-card__responsible,
  .gd-card__responsible * {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .gd-card__inner {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .gd-card__body h3 {
    font-size: 17px;
  }
}
