.brand {
  width: 100%;
  height: auto;
  min-height: 100svh;
  padding: 174px 30px 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .brand {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(0, 1fr))[18];
    grid-template-columns: repeat(18, minmax(0, 1fr));
    min-height: 100vh;
    padding: 280px 80px 200px;
  }
}
@media screen and (min-width: 1536px) {
  .brand {
    max-width: 1376px;
    margin: 0 auto;
  }
}

.section-brand .section__heading {
  display: block;
  font-family: "EB Garamond", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .section-brand {
    display: -ms-grid;
    display: grid;
    -ms-grid-column: 4;
    -ms-grid-column-span: 13;
    grid-column: 4/17;
    -ms-grid-columns: subgrid;
    grid-template-columns: subgrid;
  }
  .section-brand .section__heading {
    grid-column: 1/-1;
    font-size: 4.8rem;
  }
}

.brand__content {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .brand__content {
    padding-top: 100px;
    grid-column: 6/-1;
    min-width: 360px;
  }
}

.brand__list {
  display: -ms-grid;
  display: grid;
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .brand__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 26px;
  }
}

.brand__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  color: #fff;
}

.brand__link .brand__name {
  font-family: "EB Garamond", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.brand__link .brand__arrow {
  font-family: "EB Garamond", sans-serif;
  font-size: 1.3rem;
  padding-left: 12px;
}
