/**
 * Auth Pages Styling
 * Modern authentication pages (Login, Register, Reset Password)
 * Created: December 25, 2025
 */

/* ====================================
   AUTH HERO SECTION
   ==================================== */

.auth-hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
  /* Orange Theme - Matching your site */
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #fbb040 100%);
  position: relative;
  padding: 120px 20px 60px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.auth-hero-content {
  text-align: center;
  position: relative;
}

.auth-hero-header {
  animation: fadeInUp 0.8s ease-out;
}

.auth-hero-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.auth-hero-icon i {
  font-size: 48px;
  color: #ffffff;
}

.auth-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.5px;
}

.auth-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
}

/* Decorative Background Elements */
.auth-hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.decoration-circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -50px;
  animation-delay: 0s;
  animation-duration: 8s;
}

.decoration-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -40px;
  animation-delay: 1s;
  animation-duration: 7s;
}

.decoration-circle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation-delay: 2s;
  animation-duration: 9s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================================
   AUTH FORM WRAPPER & CONTAINER
   ==================================== */

.auth-page {
  background: #f5f7fa;
  min-height: calc(100vh - 400px);
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-form-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.auth-form-container {
  width: 100%;
}

.auth-form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 45px 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-form-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* ====================================
   AUTH FORM STYLING
   ==================================== */

.auth-form {
  width: 100%;
}

.auth-form-group {
  margin-bottom: 24px;
}

.auth-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-label i {
  color: #ff6b35;
  font-size: 16px;
}

.auth-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 18px;
  pointer-events: none;
  z-index: 2;
}

.auth-input {
  width: 100%;
  padding: 14px 16px 14px 48px !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
  background: #f8fafc !important;
  color: #2d3748 !important;
}

.auth-input:focus {
  border-color: #ff6b35 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
  outline: none !important;
}

.auth-input::placeholder {
  color: #a0aec0;
}

/* Password Toggle Button */
.auth-password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  padding: 5px;
  font-size: 18px;
  transition: color 0.3s ease;
  z-index: 2;
}

.auth-password-toggle:hover {
  color: #ff6b35;
}

.auth-password-toggle:focus {
  outline: none;
}

/* ====================================
   AUTH OPTIONS ROW
   ==================================== */

.auth-options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.auth-checkbox {
  margin: 0;
}

.auth-checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  margin: 0;
  font-weight: 400;
}

.auth-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #ff6b35;
}

.auth-checkbox-label {
  font-size: 14px;
  color: #4a5568;
}

.auth-forgot-link {
  font-size: 14px;
}

.auth-forgot-link a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.auth-forgot-link a:hover {
  color: #e55a25;
  gap: 8px;
}

.auth-forgot-link a i {
  font-size: 13px;
}

/* ====================================
   AUTH BUTTONS
   ==================================== */

.auth-buttons {
  margin-bottom: 0;
}

.auth-submit-btn {
  width: 100%;
  padding: 14px 24px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  border: none !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
  cursor: pointer;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
  background: linear-gradient(135deg, #e55a25 0%, #e08316 100%) !important;
}

.auth-submit-btn:active {
  transform: translateY(0);
}

.auth-submit-btn i {
  font-size: 18px;
}

/* ====================================
   AUTH FOOTER (Register Link)
   ==================================== */

.auth-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.auth-footer-text {
  font-size: 15px;
  color: #4a5568;
  margin: 0;
}

.auth-footer-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.auth-footer-link:hover {
  color: #e55a25;
  gap: 10px;
}

.auth-footer-link i {
  font-size: 14px;
}

/* Lost Password Page - Horizontal Footer Links */
.auth-footer-links {
  text-align: center;
}

.auth-footer-link-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.auth-footer-separator {
  color: #cbd5e0;
  font-size: 14px;
  user-select: none;
}

.auth-footer-links .auth-footer-link {
  margin-left: 0;
  font-size: 14px;
}

/* ====================================
   AUTH ALERTS
   ==================================== */

.auth-alert {
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  font-size: 14px;
  line-height: 1.5;
}

.auth-alert i {
  font-size: 18px;
  flex-shrink: 0;
}

.auth-alert.alert-info {
  background: #e6f7ff;
  color: #0c5da5;
}

.auth-alert.alert-danger {
  background: #fff1f0;
  color: #cf1322;
}

.auth-alert.alert-success {
  background: #f6ffed;
  color: #389e0d;
}

/* ====================================
   AUTH BREADCRUMB STYLING
   ==================================== */

.auth-breadcrumb-wrapper {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.auth-breadcrumb-wrapper .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.auth-breadcrumb-wrapper .breadcrumb-item {
  color: #718096;
}

.auth-breadcrumb-wrapper .breadcrumb-item a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.auth-breadcrumb-wrapper .breadcrumb-item a:hover {
  color: #e55a25;
  text-decoration: underline;
}

.auth-breadcrumb-wrapper .breadcrumb-item.active {
  color: #2d3748;
  font-weight: 600;
}

.auth-breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 8px;
  color: #cbd5e0;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 768px) {
  .auth-hero-section {
    padding: 60px 20px 50px;
    min-height: 280px;
  }
  
  .auth-breadcrumb-wrapper {
    padding: 12px 0;
  }
  
  .auth-breadcrumb-wrapper .breadcrumb {
    font-size: 13px;
  }

  .auth-hero-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .auth-hero-icon i {
    font-size: 36px;
  }

  .auth-hero-title {
    font-size: 32px;
  }

  .auth-hero-subtitle {
    font-size: 16px;
  }

  .auth-page {
    padding: 40px 15px;
  }

  .auth-form-card {
    padding: 35px 25px;
    border-radius: 12px;
  }

  .auth-options-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .decoration-circle-1 {
    width: 200px;
    height: 200px;
  }

  .decoration-circle-2 {
    width: 150px;
    height: 150px;
  }

  .decoration-circle-3 {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .auth-hero-section {
    padding: 90px 15px 40px;
    margin-top: 45px;
  }
  
  .auth-hero-title {
    font-size: 28px;
  }

  .auth-hero-subtitle {
    font-size: 15px;
  }

  .auth-form-card {
    padding: 30px 20px;
  }
  
  .auth-breadcrumb-wrapper .breadcrumb {
    font-size: 12px;
  }
  
  .auth-breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 5px;
  }

  .auth-input {
    padding: 12px 16px 12px 44px !important;
    font-size: 14px !important;
  }

  .auth-submit-btn {
    padding: 12px 20px !important;
    font-size: 15px !important;
  }
}

/* ====================================
   PAGE HERO SECTION (Contact, Archives, Announcements)
   ==================================== */

.page-hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
  /* Orange Theme - Matching your site */
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #fbb040 100%);
  position: relative;
  padding: 120px 20px 60px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.page-hero-content {
  text-align: center;
  position: relative;
}

.page-hero-header {
  animation: fadeInUp 0.8s ease-out;
}

.page-hero-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.page-hero-icon i {
  font-size: 42px;
  color: #ffffff;
}

.page-hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.5px;
}

.page-hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
}

/* Decorative Background Elements */
.page-hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

/* Page Breadcrumb */
.page-breadcrumb-wrapper {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-breadcrumb-wrapper .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.page-breadcrumb-wrapper .breadcrumb-item {
  color: #718096;
}

.page-breadcrumb-wrapper .breadcrumb-item a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-breadcrumb-wrapper .breadcrumb-item a:hover {
  color: #e55a25;
  text-decoration: underline;
}

.page-breadcrumb-wrapper .breadcrumb-item.active {
  color: #2d3748;
  font-weight: 600;
}

.page-breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 8px;
  color: #cbd5e0;
}

/* Page Hero Responsive */
@media (max-width: 768px) {
  .page-hero-section {
    padding: 80px 20px 40px;
    min-height: 260px;
    margin-top: 50px;
  }
  
  .page-hero-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 18px;
  }
  
  .page-hero-icon i {
    font-size: 36px;
  }
  
  .page-hero-title {
    font-size: 32px;
  }
  
  .page-hero-subtitle {
    font-size: 16px;
  }
  
  .page-breadcrumb-wrapper {
    padding: 12px 0;
  }
  
  .page-breadcrumb-wrapper .breadcrumb {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .page-hero-section {
    padding: 70px 15px 35px;
    margin-top: 45px;
  }
  
  .page-hero-icon {
    width: 65px;
    height: 65px;
  }
  
  .page-hero-icon i {
    font-size: 30px;
  }
  
  .page-hero-title {
    font-size: 26px;
  }
  
  .page-hero-subtitle {
    font-size: 15px;
  }
  
  .page-breadcrumb-wrapper .breadcrumb {
    font-size: 12px;
  }
  
  .page-breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 5px;
  }
}

/* ====================================
   SMOOTH ANIMATIONS
   ==================================== */

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.auth-form-group {
  animation: slideIn 0.4s ease-out backwards;
}

.auth-form-group:nth-child(1) {
  animation-delay: 0.3s;
}

.auth-form-group:nth-child(2) {
  animation-delay: 0.4s;
}

.auth-options-row {
  animation: slideIn 0.4s ease-out 0.5s backwards;
}

.auth-buttons {
  animation: slideIn 0.4s ease-out 0.6s backwards;
}

.auth-footer {
  animation: fadeInUp 0.4s ease-out 0.7s backwards;
}

/* ====================================
   ACCESSIBILITY
   ==================================== */

.auth-input:focus,
.auth-submit-btn:focus,
.auth-password-toggle:focus {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ====================================
   REGISTER PAGE SPECIFIC STYLING
   ==================================== */

.auth-register-wrapper {
  max-width: 700px;
}

.auth-register-card {
  padding: 40px 45px;
}

/* Fieldset Styling */
.auth-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 35px;
}

.auth-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #f7931e;
  padding-bottom: 12px;
}

.auth-section-title i {
  color: #ff6b35;
  font-size: 22px;
}

/* Grid Layout for Form Fields */
.auth-fields-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Select Dropdown Styling */
.auth-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0aec0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px !important;
  cursor: pointer;
}

.auth-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff6b35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

/* Consent & Checkbox Sections */
.auth-consent-section,
.auth-reviewer-section {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
}

.auth-checkbox-group {
  margin-bottom: 15px;
}

.auth-checkbox-group:last-child {
  margin-bottom: 0;
}

.auth-checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
  padding: 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.auth-checkbox-label:hover {
  background-color: rgba(255, 107, 53, 0.05);
}

.auth-checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 12px 0 0;
  cursor: pointer;
  accent-color: #ff6b35;
  flex-shrink: 0;
}

.auth-checkbox-text {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}

.auth-checkbox-text a {
  color: #ff6b35;
  text-decoration: underline;
  font-weight: 600;
}

.auth-checkbox-text a:hover {
  color: #e55a25;
}

/* reCAPTCHA Section */
.auth-recaptcha-section {
  margin-bottom: 25px;
}

.auth-recaptcha-section .recaptcha {
  display: flex;
  justify-content: center;
}

/* Required Field Indicator */
.form-control-required {
  color: #e53e3e;
  margin-left: 3px;
  font-weight: 700;
}

/* Error Messages in Register Form */
.auth-alert ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.auth-alert li {
  margin: 5px 0;
}

/* Password Strength Indicator (Optional Enhancement) */
.password-strength {
  margin-top: 8px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.password-strength-bar.weak {
  width: 33%;
  background-color: #e53e3e;
}

.password-strength-bar.medium {
  width: 66%;
  background-color: #f7931e;
}

.password-strength-bar.strong {
  width: 100%;
  background-color: #38a169;
}

/* ====================================
   REGISTER PAGE RESPONSIVE
   ==================================== */

@media (max-width: 768px) {
  .auth-register-wrapper {
    max-width: 100%;
  }

  .auth-register-card {
    padding: 35px 30px;
  }

  .auth-section-title {
    font-size: 18px;
  }

  .auth-consent-section,
  .auth-reviewer-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .auth-register-card {
    padding: 30px 20px;
  }

  .auth-section-title {
    font-size: 17px;
    gap: 8px;
  }

  .auth-section-title i {
    font-size: 18px;
  }

  .auth-checkbox-label {
    padding: 10px;
  }

  .auth-checkbox-text {
    font-size: 13px;
  }

  .auth-consent-section,
  .auth-reviewer-section {
    padding: 18px;
  }
}

/* ====================================
   STATIC PAGE CONTENT STYLING
   ==================================== */

.page_static_content {
  background: #ffffff;
  padding: 40px 20px;
  min-height: 400px;
}

.page_static_content h1,
.page_static_content h2,
.page_static_content h3,
.page_static_content h4,
.page_static_content h5,
.page_static_content h6 {
  color: #2c3e50;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page_static_content h1 {
  font-size: 32px;
  border-bottom: 3px solid #ff6b35;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.page_static_content h2 {
  font-size: 26px;
  margin-top: 35px;
}

.page_static_content h3 {
  font-size: 22px;
}

.page_static_content h4 {
  font-size: 19px;
}

.page_static_content p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
  font-size: 15px;
}

.page_static_content ul,
.page_static_content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.page_static_content li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #555;
}

.page_static_content a {
  color: #ff6b35;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.page_static_content a:hover {
  color: #f7931e;
  border-bottom-color: #f7931e;
}

.page_static_content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page_static_content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.page_static_content table th {
  background: #ff6b35;
  color: #fff;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.page_static_content table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  color: #555;
}

.page_static_content table tr:last-child td {
  border-bottom: none;
}

.page_static_content table tr:hover {
  background: #f9f9f9;
}

.page_static_content blockquote {
  border-left: 4px solid #ff6b35;
  padding: 15px 20px;
  margin: 25px 0;
  background: #f9f9f9;
  font-style: italic;
  color: #666;
  border-radius: 4px;
}

.page_static_content code {
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', Courier, monospace;
  color: #c7254e;
  font-size: 90%;
}

.page_static_content pre {
  background: #2c3e50;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 25px 0;
}

.page_static_content pre code {
  background: none;
  color: #fff;
  padding: 0;
}

/* Make static page content responsive */
@media (max-width: 768px) {
  .page_static_content {
    padding: 20px 15px;
  }

  .page_static_content h1 {
    font-size: 26px;
  }

  .page_static_content h2 {
    font-size: 22px;
  }

  .page_static_content h3 {
    font-size: 19px;
  }

  .page_static_content p,
  .page_static_content li {
    font-size: 14px;
  }

  .page_static_content table {
    font-size: 13px;
  }

  .page_static_content table th,
  .page_static_content table td {
    padding: 10px 8px;
  }
}

/* ====================================
   ISSUE VIEW PAGE STYLING
   ==================================== */

.page_issue_view {
  background: #f8f9fa;
  padding: 0;
}

.issue-header {
  background: #ffffff;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-bottom: 3px solid #ff6b35;
  text-align: center;
}

.issue-header .issue-title {
  font-size: 32px;
  color: #2c3e50;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.issue-header .issue-description-short {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.issue-info-section {
  background: #ffffff;
  padding: 30px 20px;
  margin: 0 0 30px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.issue-cover-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.issue-cover-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.issue-cover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.issue-cover-image {
  width: 100%;
  height: auto;
  display: block;
}

.issue-details {
  padding: 20px;
}

.issue-meta-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  border-left: 4px solid #ff6b35;
}

.issue-meta-item {
  display: block;
  padding: 8px 0;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.issue-meta-item i {
  color: #ff6b35;
  width: 20px;
  text-align: center;
  margin-right: 8px;
}

.issue-meta-item strong {
  color: #2c3e50;
  font-weight: 600;
}

.issue-description {
  margin-top: 25px;
}

.issue-description h3 {
  font-size: 20px;
  color: #2c3e50;
  margin: 0 0 15px 0;
  font-weight: 600;
  border-bottom: 2px solid #ff6b35;
  padding-bottom: 8px;
}

.issue-description p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Full Issue Galleys */
.issue-toc .galleys {
  background: #fff;
  padding: 25px;
  margin: 0 0 30px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.issue-toc .galleys .page-header {
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
}

.issue-toc .galleys h3 {
  font-size: 22px;
  color: #2c3e50;
  margin: 0;
  font-weight: 600;
}

.issue-toc .galleys .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Sections */
.issue-toc .sections {
  background: transparent;
  padding: 0;
}

.issue-toc .no-articles-message {
  background: #ffffff;
  padding: 40px 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.issue-toc .no-articles-message .alert {
  margin: 0;
  padding: 20px;
  background: #e3f2fd;
  border: 2px solid #2196f3;
  border-radius: 8px;
  color: #1976d2;
}

.issue-toc .no-articles-message .alert i {
  font-size: 48px;
  display: block;
  margin-bottom: 15px;
  color: #2196f3;
}

.issue-toc .no-articles-message .alert strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
  color: #1565c0;
}

.issue-toc .no-articles-message .alert p {
  margin: 0;
  font-size: 15px;
  color: #1976d2;
}

.issue-toc .sections .section {
  background: #ffffff;
  padding: 30px 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.issue-toc .sections .section .page-header {
  margin: 0 0 25px 0;
  padding: 0 0 15px 0;
  border-bottom: 2px solid #ff6b35;
}

.issue-toc .sections .section .page-header h2 {
  font-size: 24px;
  color: #2c3e50;
  margin: 0;
  font-weight: 600;
}

.issue-toc .sections .media-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Responsive */
@media (max-width: 768px) {
  .issue-header .issue-title {
    font-size: 24px;
  }

  .issue-header .issue-description-short {
    font-size: 14px;
  }

  .issue-info-section {
    padding: 20px 15px;
  }

  .issue-details {
    padding: 15px 0;
  }

  .issue-meta-info {
    padding: 15px;
  }

  .issue-meta-item {
    font-size: 14px;
  }

  .issue-description h3 {
    font-size: 18px;
  }

  .issue-toc .sections .section {
    padding: 20px 15px;
  }

  .issue-toc .sections .section .page-header h2 {
    font-size: 20px;
  }
}

/* ====================================
   ISSUE ARCHIVE PAGE STYLING
   ==================================== */

.page_issue_archive {
  background: #f8f9fa;
  padding: 20px 0;
}

.page_issue_archive .issues {
  margin: 0;
  padding: 0;
  list-style: none;
}

.issue-summary-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.issue-summary-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  border-left-color: #ff6b35;
}

.issue-cover-wrapper-archive {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.issue-cover-wrapper-archive:hover {
  transform: scale(1.05);
}

.issue-cover-link {
  display: block;
  line-height: 0;
}

.issue-cover-img {
  width: 100%;
  height: auto;
  display: block;
}

.issue-summary-content {
  padding: 0 15px;
}

.issue-series-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.issue-series-badge i {
  margin-right: 5px;
}

.issue-summary-title {
  font-size: 24px;
  color: #2c3e50;
  margin: 0 0 15px 0;
  font-weight: 700;
  line-height: 1.4;
}

.issue-title-link {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.issue-title-link:hover {
  color: #ff6b35;
  text-decoration: none;
}

.issue-summary-description {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.issue-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.issue-meta-item {
  display: inline-flex;
  align-items: center;
  color: #555;
  font-size: 14px;
}

.issue-meta-item i {
  color: #ff6b35;
  margin-right: 8px;
  font-size: 16px;
}

.issue-meta-item strong {
  margin-right: 5px;
  color: #2c3e50;
}

.issue-summary-actions {
  margin-top: 15px;
}

.issue-summary-actions .btn-view-issue,
a.btn.btn-primary.btn-view-issue,
a.btn-view-issue.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.issue-summary-actions .btn-view-issue:hover,
.issue-summary-actions .btn-view-issue:focus,
.issue-summary-actions .btn-view-issue:active,
a.btn.btn-primary.btn-view-issue:hover,
a.btn.btn-primary.btn-view-issue:focus,
a.btn.btn-primary.btn-view-issue:active,
a.btn-view-issue.btn-primary:hover,
a.btn-view-issue.btn-primary:focus,
a.btn-view-issue.btn-primary:active {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%) !important;
  color: #ffffff !important;
  border: none !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
  text-decoration: none;
}

.btn-view-issue i {
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .issue-summary-card {
    padding: 20px 15px;
  }

  .issue-summary-content {
    padding: 15px 0 0 0;
  }

  .issue-summary-title {
    font-size: 20px;
  }

  .issue-summary-description {
    font-size: 14px;
  }

  .issue-cover-wrapper-archive {
    margin-bottom: 15px;
  }
}

