* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.otherhero {
  display: grid;
  grid-template-columns: .5fr 1.5fr;
  align-items: center;
  margin: 0 4rem 0 4rem;
  gap: 2rem;
  min-height: 70vh;
}

.otherhero-content h1 {
  font-family: Raleway;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.otherhero-content p {
  font-family: Raleway;
  text-align: justify;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #ff6b6b;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ff4b4b;
}

.otherphoto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  gap: 10px;
}

.otherphoto-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.otherphoto-grid .wide {
  grid-column: span 2;
}

.otherphoto-grid .tall {
  grid-row: span 2;
}

.otherphoto-grid .tallwide {
    grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .otherhero {
    grid-template-columns: 1fr;
  }
}