section.projectinfo {
  padding: 256px 0 0 0;
}

section.projectinfo,
section.next {
  margin: 0 0 200px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 10px;
  width: 100%;
}

section.projectinfo p {
  grid-column-start: 1;
  font-family: 'FT System Blank Book';
  font-size: 16px;
  line-height: 1.25;
  grid-column-end: 7;
}

h2.title {
  grid-column: 1 / 12;
  margin-bottom: 72px;
}

div.label {
  grid-column: 10 / 13;
  display: grid;
  grid-gap: 10px;
  color: var(--dark-color);
}

h6.label,
h6.item {
  font-size: 14px;
}

h6.label {
  grid-column: 1 / 2;
  font-family: 'FT System Blank Medium';
  color: var(--grey-7);
}

h6.item {
  grid-column: 2 / 4;
  font-family: 'FT System Blank Book';
  color: var(--dark-color);
}

h2.brand {
  font-family: 'FT System Blank Medium';
  font-size: 72px;
  letter-spacing: -3px;
}

h2.next {
  font-size: 42px;
  letter-spacing: -1px;
  font-family: 'FT System Blank Book';
}

section.projectassets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 10px;
  margin: 0 0 200px;
  width: 100%;
  /* overflow-x: hidden; */
}

section.projectassets img.asset,
section.projectassets iframe.asset {
  /* Directly apply to iframe with .asset class */
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

section.projectassets iframe.asset {
  /* Ensure the iframe has the correct aspect ratio */
  aspect-ratio: 16 / 9; /* Maintain the aspect ratio */
  border: none; /* Remove iframe border if present */
}

.asset {
  grid-column: span 2;
}

section.next a {
  grid-column: 7 / 12;
  color: var(--dark-color);
}

section.next h2 {
  position: relative;
  display: inline-block;
  background-color: var(--grey-9);
  border-radius: 1000px;
  padding: 0px 19px 7px 20px;
}

section.next h2:hover {
  animation: buttonAnimation 0.25s ease-in-out forwards;
}

/* Mobile Styling */
@media (max-width: 720px) {
  div.title {
    padding-top: 100px;
  }

  h3.shorthand,
  h3.next {
    font-size: 16px;
  }

  h2.brand {
    font-size: 42px;
  }

  section.next h2 {
    font-size: 32px;
    padding: 0px 15px 7px 13px;
  }

  section.projectinfo,
  section.projectassets {
    margin: 0 0 100px;
  }

  section.projectinfo p {
    grid-column: 1 / 13;
    margin-bottom: 24px;
    font-size: 14px;
  }

  div.label {
    grid-column: 1 / 8;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  section.next a {
    grid-column: 1 / 13;
  }

  section.next {
    margin: 0 0 64px;
  }
}

@media (max-width: 428px) {
  section.projectinfo {
    padding: 72px 0 0 0;
  }

  section.next h2 {
    font-size: 24px;
    padding: 0px 13px 7px 10px;
    letter-spacing: -1px;
  }

  section.projectassets {
    grid-template-columns: none;
  }

}
