/**
 * Homepage Template Styles
 * Styles for the homepage page template
 *
 * @package GoatWonderlust
 */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)); }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-text-light); }

.hero-subtitle {
  font-size: var(--font-size-xl);
  max-width: 600px;
  margin: 0 auto; }

.page-content-section {
  padding: var(--spacing-4xl) 0; }

.featured-posts-section {
  padding: var(--spacing-4xl) 0;
  background-color: var(--color-bg-secondary); }

.section-footer {
  margin-top: var(--spacing-3xl); }

@media screen and (max-width: 768px) {
  .hero-section {
    min-height: 50vh; }

  .hero-title {
    font-size: var(--font-size-4xl); }

  .featured-posts-section .grid {
    grid-template-columns: 1fr; } }

/*# sourceMappingURL=homepage-template.css.map */
