/* Page Header */
.page-header {
  background-color: #0a1628;
  color: #ffffff;
}

.page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 16px;
}

@media (min-width: 640px) {
  .page-header-inner {
    padding: 80px 24px;
  }
}

@media (min-width: 768px) {
  .page-header-inner {
    padding: 112px 24px;
  }
}

@media (min-width: 1024px) {
  .page-header-inner {
    padding: 128px 32px;
  }
}

/* Header label removed - only title shown in page header */

.header-title {
  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
  max-width: 900px;
  line-height: 1.1;
  text-wrap: balance;
  color: #ffffff;
}

@media (min-width: 768px) {
  .header-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .header-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .header-title {
    font-size: 4.5rem;
  }
}

.header-description {
  color: #e5e5e5;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 24px;
  max-width: 900px;
}

@media (min-width: 768px) {
  .header-description {
    font-size: 1.25rem;
  }
}

/* Main Content */
.main-content {
  min-height: 100vh;
}

.site-main {
  min-height: 100vh;
}

/* Section Container */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
}

@media (min-width: 640px) {
  .section-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 768px) {
  .section-container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Entry Content */
.entry-content {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #404040;
}

.entry-content p {
  margin-bottom: 24px;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-content h2 {
  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: 1.875rem;
  font-weight: 500;
  color: #0a1628;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .entry-content h2 {
    font-size: 2.25rem;
  }
}

.entry-content h3 {
  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #0a1628;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .entry-content h3 {
    font-size: 1.875rem;
  }
}

.entry-content ul,
.entry-content ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.entry-content li {
  margin-bottom: 12px;
}

.entry-content a {
  color: #0a1628;
  text-decoration: underline;
  text-decoration-color: #ffd046;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.entry-content a:hover {
  color: #ffd046;
}

/* Search Results - Moved to search.css */

/* No Results */
.no-results {
  text-align: center;
  padding: 64px 0;
}

.no-results-message {
  font-size: 1.125rem;
  color: #404040;
  margin-bottom: 32px;
}

/* Error 404 */
.error-404-content {
  text-align: center;
  padding: 64px 0;
}

.error-message {
  font-size: 1.125rem;
  color: #404040;
  margin-bottom: 32px;
}

.error-links {
  margin-top: 32px;
}

.cta-button {
  display: inline-block;
  background-color: #0a1628;
  color: #ffffff;
  padding: 16px 32px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cta-button:hover {
  background-color: #ffd046;
  color: #0a1628;
}

.cta-button:focus-visible {
  outline: 2px solid #ffd046;
  outline-offset: 2px;
}

/* Search Form Styling - Removed, using search.css instead */
