.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/delta_aerial.jpg");
  height: 400px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 20px;
}

.hero-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 80%;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.author {
  font-style: italic;
  font-size: 1.2rem;
}

.content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-image-placeholder {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.image-caption {
  font-style: italic;
  color: #555;
  margin: 10px 0 0 0;
  font-size: 0.9rem;
  text-align: center;
}

.feature-box {
  background-color: #f9f9f9;
  border-left: 4px solid #2a7d2e;
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 5px 5px 0;
}

.feature-link {
  display: inline-block;
  color: #2a7d2e;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
}

.feature-link:hover {
  text-decoration: underline;
}

.inline-link {
  color: #2a7d2e;
  text-decoration: none;
  font-weight: bold;
}

.inline-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.4rem;
  }
  
  .content-image-placeholder {
    min-height: 100px;
  }
}
