.layoutRoot {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.bodyWrapper {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  background: #fff;
  gap: 0;
}

.sidebar {
  min-width: 320px;
  max-width: 380px;
  border-right: 1px solid #e0e0e0;
  background: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mainContent {
  flex: 1 1 0%;
  padding: 0;
  background: #fff;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* HERO SECTION TEMPLATE */
.hero {
  position: relative;
  width: 100%;
  min-height: 300px;
  max-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 2rem;
}

.heroImage {
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}

.imageLoading {
  opacity: 0;
}

.imageLoaded {
  opacity: 1;
}

/* Loading placeholder */
.heroPlaceholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  z-index: 1;
}

.loadingSpinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #1081c9;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error placeholder */
.heroError {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f8f8 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.errorContent {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.retryMessage {
  color: #0d4a6f;
  font-size: 0.95rem;
  font-weight: 500;
}

.retryButton {
  padding: 0.55rem 1.2rem;
  border: none;
  border-radius: 6px;
  background: #1081c9;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.retryButton:hover {
  background: #0d6ba5;
}

.heroOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.2);
  z-index: 2;
}

.heroTitle {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 4.65rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
  -webkit-text-stroke: 1.5px #000000;
  text-shadow: 4px 4px 16px rgba(0,0,0,0.3);
  font-family: 'Tw Cen MT', Arial, sans-serif;
  font-weight: 500;
}

.contentSection {
  background: #fff;
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(44, 54, 126, 0.08);
  margin-top: -2rem;
  z-index: 4;
  position: relative;
  font-family: 'Tw Cen MT', Arial, sans-serif;
}

.contentSection strong {
  font-size: 1.25rem;
  color: #222;
  font-weight: bold;
  display: block;
  margin-bottom: 1rem;
}

.contentSection p {
  font-size: 1.1rem;
  color: #7f7f7f;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.contentSection ul {
  margin: 1.5rem 0 1.5rem 1.5rem;
  padding: 0;
  font-size: 1.1rem;
  color: #7f7f7f;
  line-height: 1.7;
}

.contentSection li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contentSection li strong {
  color: #000000;
  font-size: 1.08em;
  font-weight: bold;
}

@media (max-width: 900px) {
  .sidebar {
    min-width: 180px;
    max-width: 220px;
  }
  .mainContent {
    padding: 0 8px 16px 8px;
  }
  .heroTitle {
    font-size: 2.2rem;
  }
  .contentSection {
    padding: 1.5rem 0.5rem 1rem 0.5rem;
  }
}

@media (max-width: 768px) {
  .bodyWrapper {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    min-width: 0;
    max-width: none;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
  }
  .mainContent {
    width: 100%;
    padding: 0 4px 12px 4px;
  }
  .heroTitle {
    font-size: 2.5rem;
  }
} 

@media (max-width: 480px) {
  .bodyWrapper {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    min-width: 0;
    max-width: none;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
  }
  .mainContent {
    width: 100%;
    padding: 0 4px 12px 4px;
  }
  .heroTitle {
    font-size: 2.5rem;
    -webkit-text-stroke: 0.5px #000000;
    font-weight: 500;
  }
  .hero{
    width: 100%;
  }
  .heroImage {
    width: 100%;
  }

} 