.newcomers-brand {
  position: relative;

  &::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 240px;
    left: 0;
    top: 100%;

    background: #FFFFFF;
    z-index: 1;
    clip-path: ellipse(63% 68% at 59% 14%);

    @media screen and (max-width: 768px) {
      height: 100px;
    }
  }

  .brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 80px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: auto;

    @media screen and (max-width: 768px) {
      grid-template-columns: 1fr;
      width: 100%;
    }

    .brand-panel {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 4;
      row-gap: 0;

      .brand-panel__image-wrapper {
        width: 100%;
        margin-bottom: 16px;
        aspect-ratio: 450/330;

        .brand-panel__image {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 6px;
        }
      }

      .brand-panel__brand_name {
        font-family: 'Noto Sans', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 150%;
        text-align: left;
        margin-bottom: 12px;
      }

      .brand-panel__brand_description {
        margin-bottom: 16px;

        p {
          margin: 0;
          font-family: 'Noto Sans', sans-serif;
          font-style: normal;
          font-weight: 400;
          font-size: 16px;
          line-height: 150%;
          text-align: left;
        }
      }

      .brand-panel__brand-button {
        font-family: 'Noto Sans', sans-serif;
        font-style: normal;

        .brand-panel__brand-button--link {
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          padding: 14px 15px;
          margin: 0 auto;

          width: 200px;
          height: 50px;

          background: rgba(var(--nicobay-green));
          border-radius: 40px;
          color: white;
          text-decoration: none;

        }
      }
    }
  }
}