.amphibious-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 1rem 0 2.5rem;
  padding: 1.5rem 2rem;
  border-radius: 0.4rem;
  background: var(--md-code-bg-color);
}

.amphibious-masthead-text h1 {
  margin: 0 0 0.75rem;
  font-size: 2.4rem;
}

.amphibious-masthead-text p {
  margin: 0;
}

.amphibious-masthead-logo {
  flex: 0 0 150px;
}

.amphibious-masthead-logo img {
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .amphibious-masthead {
    flex-direction: column;
    text-align: center;
  }

  .amphibious-masthead-logo {
    order: -1;
  }
}

.md-content__inner > h1:first-child {
  display: none;
}

.amphibious-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0 1rem;
}

.md-typeset .amphibious-release {
  margin-top: 3.5rem;
}

.amphibious-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.amphibious-gallery-item h2 {
  margin: 0 0 1rem;
}

.amphibious-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 1rem;
}

.amphibious-gallery-item p {
  margin: 0;
}

@media screen and (max-width: 700px) {
  .amphibious-gallery {
    grid-template-columns: 1fr;
  }
}


