.recommend {
  padding: 8rem 0;
  text-align: center;

  h1 {
    font-size: 2rem;
    color: var(--y);
    margin-bottom: 1rem;
  }

  .intro {
    width: 90%;
    margin: 0 auto 3rem auto;
    line-height: 1.8rem;
  }

  .brands {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .brand {
    background-color: var(--gr);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .brand img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
  }

  .brand .text {
    padding: 1.5rem;
  }

  .brand h2 {
    color: var(--y);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .brand p {
    margin-bottom: 0.8rem;
  }

  .highlight {
    color: var(--y);
    font-weight: 600;
  }

  .btn {
    display: inline-block;
    background-color: var(--y);
    color: var(--d);
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 0.3rem;
    text-decoration: none;
  }

  .note {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #aaa;
  }
}

@media (min-width: 768px) {
  .recommend .brands {
    flex-direction: row;
    justify-content: space-between;
  }

  .recommend .brand {
    width: 48%;
  }

  .recommend h1 {
    font-size: 2.5rem;
  }
}
