:root {
  --h-gutter: 3rem;
  --v-gutter: 1.5rem;
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../../assets/fonts/open-sans/open-sans-v40-latin-500.woff2")
    format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../../assets/fonts/open-sans/open-sans-v40-latin-700.woff2")
    format("woff2");
}

body {
  font-family: "Open Sans", sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
}

header {
  display: grid;
  grid-template-columns: 7fr 1fr;
  gap: calc(var(--h-gutter) / 2);
  padding: var(--v-gutter) var(--h-gutter);
  padding-top: calc(var(--v-gutter) * 2);
}
.header__logo-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__logo img {
  height: 4.75rem;
}
.header__logo-two img {
  height: 3.5rem;
}
.header__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 0.5rem;
}
.section-videos {
  overflow: hidden;
  display: grid;
  grid-template-columns: 7fr 1fr;
  gap: calc(var(--h-gutter) / 2);
  padding: 0 var(--h-gutter);
  padding-bottom: var(--v-gutter);
}
.hidden {
  display: none;
}
video {
  width: 100%;
  aspect-ratio: 16 / 9;
}
#buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
button {
  background-color: #f9f9f9;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 14px;
  padding: 0.375rem 0.5rem;
  width: 100%;
  display: block;
  text-align: left;
  margin-left: 0;
  line-height: 1.2;
}
button + button {
  margin-top: 0.5rem;
}
button.active {
  background-color: black;
  color: white;
}
h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-left: 0.375rem;
  padding-top: 1rem;
  border-top: 1px solid black;
}
