/**
 * Legal Page Style Overrides
 * Shared by privacy-policy.php, page-privacy-policy.php,
 * terms-conditions.php, page-cookie-policy.php
 *
 * @package Teleworld_AI_Theme
 * @since 1.2.0
 */

/* ============================================================
   Base – Container & Layout Resets (both .teleworld-legal-page & .legal-page)
   ============================================================ */
.teleworld-legal-page,
.legal-page {
  box-sizing: border-box;
}

.teleworld-legal-page *,
.legal-page * {
  box-sizing: border-box;
}

/* Container centering */
.teleworld-legal-page .legal-container,
.legal-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* Content card */
.teleworld-legal-page .legal-content,
.legal-page .legal-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
}

/* Section resets */
.teleworld-legal-page .legal-section {
  width: 100%;
  margin: 0 0 2rem;
  padding: 0;
}

.teleworld-legal-page .legal-section h2 {
  width: 100%;
  margin: 0 0 1rem;
}

.teleworld-legal-page .legal-section p {
  width: 100%;
  margin: 0 0 1rem;
}

.teleworld-legal-page .legal-section ul {
  width: 100%;
  margin: 0 0 1rem 1.5rem;
  padding: 0;
}

/* Header centering */
.teleworld-legal-page .legal-header,
.legal-page .legal-page-header {
  text-align: center;
  width: 100%;
}

.teleworld-legal-page .legal-header h1,
.legal-page .legal-page-title {
  width: 100%;
  text-align: center;
}

.teleworld-legal-page .legal-header p,
.legal-page .legal-page-subtitle {
  width: 100%;
  text-align: center;
}

/* ============================================================
   Responsive – 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .teleworld-legal-page .legal-content,
  .legal-page .legal-content {
    padding: 2.5rem;
  }
}

/* ============================================================
   Responsive – 768px
   ============================================================ */
@media (max-width: 768px) {
  .teleworld-legal-page .legal-container,
  .legal-page .container {
    padding: 0 1rem;
  }

  .teleworld-legal-page .legal-content,
  .legal-page .legal-content {
    padding: 2rem;
  }

  .teleworld-legal-page .legal-section h2 {
    font-size: 1.4rem;
  }
}

/* ============================================================
   Responsive – 480px
   ============================================================ */
@media (max-width: 480px) {
  .teleworld-legal-page .legal-content,
  .legal-page .legal-content {
    padding: 1.5rem;
    border-radius: 14px;
  }

  .teleworld-legal-page .legal-section h2 {
    font-size: 1.25rem;
  }

  .teleworld-legal-page .legal-section p,
  .teleworld-legal-page .legal-section li {
    font-size: 0.92rem;
  }

  .teleworld-legal-page .legal-section ul {
    margin-left: 1.25rem;
  }
}

/* ============================================================
   Responsive – 360px
   ============================================================ */
@media (max-width: 360px) {
  .teleworld-legal-page .legal-content,
  .legal-page .legal-content {
    padding: 1.25rem;
  }

  .teleworld-legal-page .legal-header h1,
  .legal-page .legal-page-title {
    font-size: 1.5rem;
  }
}

/* ============================================================
   Landscape
   ============================================================ */
@media (orientation: landscape) and (max-height: 500px) {
  .teleworld-legal-page,
  .legal-page .legal-page-header {
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .teleworld-legal-page .legal-content,
  .legal-page .legal-content-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* ============================================================
   Safe-area insets
   ============================================================ */
@supports (padding: env(safe-area-inset-left)) {
  .teleworld-legal-page .legal-container,
  .legal-page .container {
    padding-left: max(env(safe-area-inset-left), 1.5rem);
    padding-right: max(env(safe-area-inset-right), 1.5rem);
  }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .teleworld-legal-page,
  .legal-page {
    background: #fff;
    color: #1e293b;
  }

  .teleworld-legal-page .legal-content,
  .legal-page .legal-content {
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .teleworld-legal-page .legal-section h2,
  .legal-page .content-section h2 {
    color: #1e293b;
  }

  .teleworld-legal-page .legal-section p,
  .teleworld-legal-page .legal-section li,
  .legal-page .content-section p,
  .legal-page .content-section li {
    color: #475569;
  }
}
