#heimr-nowa-rating {
  width: 100%;
  .container {
    display: flex;
    justify-content: center;
    align-items: center;

    .card {
      width: 100%;
      max-width: 550px;
      background-color: #ffffff;
      padding: 40px 56px;
      border-radius: 32px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      color: #070707 !important;
      font-family: "Montserrat", sans-serif !important;

      .section-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        .nowa-logo {
          max-width: 170px;
          position: relative;
          img {
            width: 100%;
            border-radius: 50%;
          }

          .logo-verified {
            position: absolute;
            bottom: 10px;
            right: 0;
            width: 40px;
            height: 40px;
            background-color: #e41d58;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
              width: 50%;
            }
          }
        }
        .nowa-title {
          text-align: center;
          h3 {
            font-weight: 700;
            font-size: 40px;
            line-height: 48px;
          }
        }
        .nowa-sub-title {
          text-align: center;
          h4 {
            font-weight: 400;
            font-size: 24px;
            line-height: 29px;
            color: #7a7476;
          }
        }
      }

      .section-rating {
        width: 100%;
        max-width: 180px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        .rating {
          display: flex;
          flex-direction: column;
          align-items: start;
          justify-content: center;
          border-bottom: 1px solid #7a747687;
          padding-bottom: 16px;
          gap: 0px;
          .rating-number {
            display: flex;
            flex-direction: row;
            gap: 5px;
            span {
              font-weight: 600;
              font-size: 32px;
              line-height: 40px;
            }
            svg {
              align-self: center;
            }
          }
          .rating-stars {
            font-size: 14px;
            font-weight: 400;
            line-height: 17.07px;
          }
        }
      }
    }
  }
}

#heimr-nowa-rating .container .card h3,
#heimr-nowa-rating .container .card h4,
#heimr-nowa-rating .container .card span {
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 587px) {
  #heimr-nowa-rating {
    .container {
      .card {
        justify-content: space-evenly;
        padding: 20px 30px;
        gap: 20px;
        .section-logo {
          .nowa-logo {
            width: 130px;
            .logo-verified {
              bottom: 15px;
              right: 0;
              width: 30px;
              height: 30px;
              img {
                width: 50%;
              }
            }
          }
          .nowa-title {
            h3 {
              font-size: 24px;
              line-height: 29px;
            }
          }
          .nowa-sub-title {
            h4 {
              font-size: 16px;
              line-height: 19px;
            }
          }
        }

        .section-rating {
          gap: 16px;
          .rating {
            padding-bottom: 10px;
            gap: 0px;
            .rating-number {
              gap: 5px;
              span {
                font-size: 24px;
                line-height: 30px;
              }
              svg {
                align-self: center;
              }
            }
            .rating-stars {
              font-size: 11px;
              font-weight: 400;
              line-height: 13px;
            }
          }
        }
      }
    }
  }
}
