@media only screen and (min-width: 0rem) {
  #review {
    padding: var(--sectionPadding);
  }
  #review .cs-container {
    margin: auto;
    max-width: 40rem;
  }
  #review .cs-content {
    margin: auto;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
  }
  #review .cs-logo {
    text-align: center;
    margin-bottom: 1rem;
  }
  #review .cs-logo img {
    height: auto;
    max-width: 150px;
    display: inline-block;
  }
  #review .cs-content .cs-title {
    margin-bottom: 1rem;
  }
  #review .cs-form {
    flex: none;
    width: 100%;
    gap: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 1rem;
    max-width: 40.625rem;
    flex-direction: column;
    box-sizing: border-box;
    font-family: var(--bodyFont);
    background: var(--itemColor);
    justify-content: space-between;
    padding: clamp(2rem, 5.18vw, 3rem) clamp(1rem, 5vw, 3.75rem);
  }
  #review .cs-title {
    margin: 0;
  }
  #review label {
    display: block;
    margin-bottom: 0.75rem;
  }
  #review .star-rating {
    gap: 10px;
    display: flex;
    margin: 1rem 0;
  }
  #review .star {
    border: none;
    color: #CCC;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    transition: color 0.3s;
  }
  #review .star:hover,
  #review .star.selected {
    color: gold;
  }
  #feedback-fields {
    display: none;
    margin-top: 1rem;
  }
  #review textarea {
    width: 100%;
    border: none;
    font-size: 1rem;
    padding: 0.75rem;
    min-height: 7.5rem;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    margin-bottom: 1rem;
    background: #FFF;
    border-radius: 0.25rem;
    font-family: var(--bodyFont);
    margin: 0 0 clamp(1rem, 3vw, 1.75rem) 0;
  }
  #review .cs-sbs-row {
    gap: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #review input {
    padding: 0;
    width: 100%;
    border: none;
    height: 3.5rem;
    color: #1A1A1A;
    font-size: 1rem;
    background: #FFF;
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    border-radius: 0.25rem;
    box-sizing: border-box;
  }
  #review button[type="submit"] {
    border: none;
    cursor: pointer;
  }
  #review button {
    width: 100%;
    border: none;
  }
}
@media only screen and (min-width: 40rem) {
  #review .cs-sbs-row {
    flex-direction: row;
  }
  #review .cs-sbs-row .cs-label {
    width: 50%;
  }
}