/* Wrapper */
section.hs-testreport-card {
    margin: 20px 0;
    grid-column: col-start 2 / span 7 !important;
    display: grid;
    grid-template-columns: subgrid;
}

/* Gesamte Box */
.hs-testreport-card__main {
    display: grid;
    background: #EAF1F6;
    border-radius: 26px;
    grid-column: col-start 1 / span 7;
    grid-template-columns: subgrid;
}

/* Linke Fläche */
.hs-testreport-card__left {
    grid-column: col-start 1 / span 5;
    padding: 20px;
    display: grid;
}

/* Titel */
.hs-testreport-card__title {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
  font-family: "Brandon Text medium";
  color: var(--color-theme-black);
  margin: 6px 0 18px;
}
.hs-testreport-card__title a {
  color: inherit;
  text-decoration: none;
}
.hs-testreport-card__title a:hover {
  text-decoration: underline;
}

/* Pro/Contra */
.hs-testreport-card__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.hs-testreport-card__row {
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 12px;
    align-items: baseline;
    margin: 10px 0;
    font-size: 16px;
    color: #155A7B;
}

.hs-testreport-card__icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-family: 'Brandon Text Medium';  
    line-height: 1;
    font-size: 16px;
}

.hs-testreport-card__icon--pro {
  background: #77b84a;
  color: #fff;
}

.hs-testreport-card__icon--con {
  background: #c75a4b;
  color: #fff;
}

/* CTA */
.hs-testreport-card__cta {
  display: grid;
  grid-template-columns: 160px 1fr 180px;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
}

.hs-testreport-card__shoplogo {
  max-height: 48px;
  max-width: 150px;
  width: auto;
  height: auto;
  display: block;
}

.hs-testreport-card__shopname {
  font-weight: 400;
  font-family: 'Brandon Text Medium';  
  font-size: 28px;
  color: #111;
}

.hs-testreport-card__price {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Brandon Text Medium';  
  color: #c75a4b;
}

.hs-testreport-card__priceprefix {
  font-weight: 400;
  font-family: 'Brandon Text Medium';  
  margin-right: 8px;
  display: none;
}

.hs-testreport-card__buttonwrap {
  justify-self: end;
}

.hs-testreport-card__button {
    background: #9F8273;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 400;
    font-family: 'Brandon Text Medium';  
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Rechte Fläche */
.hs-testreport-card__right {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 22px;
    padding: 18px 10px;
    display: grid;
    align-content: space-between;
    grid-column: col-start 6 / span 2;
    min-width: 163px;
}

/* Badge */
.hs-testreport-badge {
  border-radius: 18px;
  overflow: hidden;
  background: #378CB5;
  border: 1px solid #378CB5;
}

.hs-testreport-badge__top {
  padding: 15px 5px 15px;
  text-align: center;
  color: #fff;
}

.hs-testreport-badge__small {
  font-size: 14px;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.hs-testreport-badge__grade {
    font-size: 26px;
    font-weight: 400;
    font-family: 'Brandon Text Medium';  
    margin: 0px 0 4px;
    letter-spacing: 0.02em;
}

.hs-testreport-badge__meta {
  font-size: 10px;
  opacity: 0.92;
}

.hs-testreport-badge__bottom {
  background: #f6fbff;
padding: 5px 10px;
  text-align: center;
}

.hs-testreport-badge__brand {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #2a6b8a;
  background-image: url(home-and-smart-logo-svg.svg);
  background-size: contain;
  width: 100%;
  height: 27px;
  background-repeat: no-repeat;
}

.hs-testreport-card__stand {
  text-align: right;
  font-size: 14px;
    color: #2c4e66;
    opacity: 0.85;
    margin-top: 14px;
    margin-right: 15px;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 980px) {
  .hs-testreport-card__main {
    grid-template-columns: 1fr;
  }
  .hs-testreport-card__lists {
    grid-template-columns: 1fr;
  }
  .hs-testreport-card__cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .hs-testreport-card__buttonwrap {
    justify-self: start;
  }
}
