@charset "UTF-8";

/* ==========================================================================
   Gallery Theme - Static Page Styles (Full Screen Hero)
   ========================================================================== */

/* Full Screen Cover Image */
.page_cover {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}

.post-cover-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Page Content Wrapper (Centering) */
/* Apply to the article tag or specific content divs */
/* Title Styling */
.static_page h1 {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 20px;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  background: #fff;
  line-height: 1.3;
}

/* Content Body Styling */
.page_content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 80px;
  background: #fff;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

/* Typography & Elements within Content */
.page_content h2 {
  font-size: 1.8rem;
  margin-top: 50px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.page_content h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page_content p {
  margin-bottom: 1.5em;
}

.page_content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page_cover {
    height: 60vh;
    /* Smaller height on mobile */
  }

  .static_page h1 {
    font-size: 1.8rem;
    padding: 30px 20px 10px;
  }

  .page_content {
    padding-bottom: 50px;
    font-size: 1rem;
  }
}