/*
  TROTPOST Modern Online News Media Stylesheet
  ===========================================
  Focus: Mobile-first responsive, high contrast, clean typography, 18px body font.
*/

:root {
  --primary-color: #1b2a4a;
  --secondary-color: #2c3e50;
  --accent-color: #d9381e;
  --accent-gold: #d4af37;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #222222;
  --text-muted: #555555;
  --border-color: #e2e8f0;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans KR", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-dark);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-color);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Header */
.site-header {
  background-color: var(--primary-color);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-logo a {
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.logo-main {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #ffffff;
}

.logo-sub {
  font-size: 12px;
  color: #cbd5e1;
  letter-spacing: 1px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 16px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #e2e8f0;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
}

.main-nav a:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.nav-search-btn {
  background-color: var(--accent-color);
  color: #ffffff !important;
}

/* Main Container */
.main-container {
  max-width: 1000px;
  margin: 24px auto;
  padding: 0 20px;
  min-height: 70vh;
}

/* Hero Section */
.hero-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.hero-content h2 {
  font-size: 26px;
  margin: 8px 0 12px 0;
  line-height: 1.4;
}

.hero-content h2 a {
  color: var(--primary-color);
}

.hero-summary {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 16px;
}

.hero-meta {
  font-size: 14px;
  color: #64748b;
  display: flex;
  gap: 16px;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 8px;
}

.section-header h2 {
  font-size: 22px;
  color: var(--primary-color);
}

.view-all-link {
  font-size: 15px;
  font-weight: 600;
}

/* Article Grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.article-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
}

.badge-category {
  background-color: #e2e8f0;
  color: var(--primary-color);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.badge-singer a {
  color: var(--accent-color);
  font-weight: 700;
}

.card-title {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-summary {
  font-size: 16px;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 14px;
}

.card-meta {
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
}

.card-badge-mode {
  background-color: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Singer Chips */
.singer-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.singer-chip {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 14px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.singer-chip:hover {
  border-color: var(--primary-color);
  background-color: #f0f4f8;
  text-decoration: none;
}

/* Assurance Box */
.assurance-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.assurance-box h3 {
  color: #1e40af;
  margin-bottom: 12px;
}

.assurance-box ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 16px;
  font-size: 16px;
}

.policy-btn {
  display: inline-block;
  background-color: #1e40af;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
}

/* Article Detail Page */
.article-detail {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.breadcrumb {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  gap: 8px;
}

.breadcrumb li::after {
  content: "›";
  margin-left: 8px;
}

.breadcrumb li:last-child::after {
  content: "";
}

.article-title {
  font-size: 28px;
  line-height: 1.4;
  margin: 14px 0 18px 0;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.article-summary-box {
  background-color: #f8fafc;
  border-left: 4px solid var(--accent-color);
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 24px;
  word-break: keep-all;
}

/* Callout Box (Focus Card) */
.article-focus-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--accent-color, #0284c7);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 20px 0 28px 0;
}

.focus-card-header {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.focus-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.focus-card-list li {
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 8px;
  word-break: keep-all;
}

.focus-card-list li:last-child {
  margin-bottom: 0;
}

.article-meta-bar {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #64748b;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.article-hero-figure {
  margin-bottom: 24px;
}

.article-hero-figure img,
.inline-photo-figure img {
  width: auto;
  max-width: 100%;
  max-height: 560px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

.article-hero-figure figcaption {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

.image-notice-box {
  background-color: #fff7ed;
  border: 1px solid #ffedd5;
  color: #9a3412;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 15px;
  margin-bottom: 24px;
}

.article-body-content p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.85;
  color: #1e293b;
  letter-spacing: -0.015em;
  word-break: keep-all;
}

.article-body-content h2 {
  font-size: 21px;
  font-weight: 800;
  margin: 36px 0 16px 0;
  color: #0f172a;
  border-left: 4px solid var(--accent-color);
  padding-left: 12px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

/* External Media Embeds (YouTube & Instagram) */
.external-media-section {
  margin-top: 32px;
  margin-bottom: 24px;
}

.external-media-section .section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e2e8f0;
}

.youtube-embed-container {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  margin: 16px auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: #000;
}

.youtube-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.shorts-embed-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  margin: 16px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  background-color: #000;
}

/* Custom YouTube Thumbnail Card with Centered Play Button */
.custom-video-card {
  margin-top: 16px;
}

.video-thumbnail-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #0f172a;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.video-thumbnail-container:hover .video-thumb-img {
  transform: scale(1.03);
  filter: brightness(0.9);
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  transition: transform 0.2s ease;
}

.video-thumbnail-container:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.15);
}

.media-caption {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.media-channel {
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 6px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.instagram-embed-container {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-white);
}

.instagram-embed-container iframe {
  width: 100%;
  min-height: 480px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.inline-media-figure {
  margin: 24px 0;
  text-align: center;
}

.media-caption-inline {
  font-size: 15px;
  color: #475569;
  margin-top: 8px;
  font-weight: 600;
  text-align: center;
}

/* ==========================================================================
   Related Articles & Internal Links (5070 Mobile Friendly)
   ========================================================================== */
.related-articles-section {
  margin-top: 36px;
  margin-bottom: 28px;
  padding: 22px;
  background: #f8fafc;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.related-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}

.singer-all-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.singer-all-link:hover {
  text-decoration: underline;
  background-color: rgba(200, 16, 46, 0.06);
}

.related-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-card-item {
  display: flex;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.related-card-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.08);
}

.related-card-item:active {
  transform: scale(0.99);
}

.related-thumb-col {
  width: 90px;
  min-width: 90px;
  height: 75px;
  border-radius: 8px;
  overflow: hidden;
  background: #e2e8f0;
  flex-shrink: 0;
}

.related-thumb-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-info-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.related-badge-row {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 4px;
}

.related-cat-badge {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: #475569;
  padding: 2px 7px;
  border-radius: 4px;
  line-height: 1.3;
}

.related-singer-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.3;
}

.related-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
  margin: 0 0 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
  letter-spacing: -0.015em;
}

.related-card-date {
  font-size: 12px;
  color: #94a3b8;
}

.related-hub-banner {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #cbd5e1;
}

.hub-banner-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #1e293b;
  font-size: 14.5px;
  transition: all 0.18s ease;
  word-break: keep-all;
}

.hub-banner-link:hover {
  border-color: var(--accent-color);
  background: #fff5f6;
}

.hub-banner-link .hub-icon {
  font-size: 18px;
  margin-right: 8px;
}

.hub-banner-link .hub-text {
  flex: 1;
}

.hub-banner-link .hub-arrow {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 13.5px;
  flex-shrink: 0;
}

/* Sources & Footer Notice */
.sources-section {
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius);
  margin-top: 32px;
}

.sources-section h3 {
  font-size: 18px;
  margin-bottom: 12px;

}

.sources-list {
  list-style: none;
  font-size: 15px;
}

.sources-list li {
  margin-bottom: 8px;
}

.src-publisher {
  font-weight: 700;
  color: var(--primary-color);
}

.src-link {
  font-size: 14px;
  color: #2563eb;
  margin-left: 8px;
}

.article-footer-notice {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  color: #64748b;
}

/* Singer Directory & Badge Cards (1:2 Ratio & Fandom Color Accent) */
.singers-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 40px;
}

.singer-badge-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.singer-badge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-avatar-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.avatar-initial {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.card-info-col {
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.singer-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.singer-name-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-color);
  margin: 0;
}

.fandom-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
}

.singer-sub-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.3;
}

.singer-action-link {
  font-size: 14px;
  font-weight: 700;
}

.disclaimer-box {
  margin-bottom: 8px;
}

/* Search Box Page */
.search-box-container {
  margin: 24px 0;
}

#search-form {
  display: flex;
  gap: 10px;
}

#search-input {
  flex-grow: 1;
  padding: 14px;
  font-size: 18px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
}

#search-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

#search-button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}

/* Footer */
.site-footer {
  background-color: var(--primary-color);
  color: #cbd5e1;
  padding: 40px 20px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #334155;
}

.footer-brand h3 {
  color: #fff;
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 14px;
  margin-top: 12px;
  color: #94a3b8;
  line-height: 1.6;
  word-break: keep-all;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  font-size: 14px;
}

.footer-col a {
  color: #cbd5e1;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  color: #64748b;
}

/* Responsive Rules (5070 Senior Mobile Readability Optimized) */
@media (max-width: 768px) {
  body {
    font-size: 17px;
    letter-spacing: -0.015em;
  }
  .main-container {
    padding: 0 12px;
    margin: 14px auto;
  }
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav ul {
    gap: 8px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .article-detail {
    padding: 16px 12px;
  }
  .article-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .article-badges span a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 20px;
  }
  .article-title {
    font-size: 23px;
    line-height: 1.38;
    margin: 12px 0 16px 0;
  }
  .article-summary-box {
    font-size: 16px;
    line-height: 1.75;
    padding: 14px 15px;
    margin-bottom: 20px;
  }
  .article-meta-bar {
    gap: 10px;
    font-size: 13px;
    margin-bottom: 20px;
  }
  .article-body-content p {
    font-size: 17.5px;
    line-height: 1.85;
    margin-bottom: 22px;
    color: #1e293b;
    word-break: keep-all;
  }
  .article-body-content h2 {
    font-size: 19.5px;
    margin: 30px 0 14px 0;
    padding-left: 10px;
  }
  .related-articles-section {
    padding: 16px 12px;
    margin-top: 28px;
    border-radius: 12px;
  }
  .related-title {
    font-size: 18px;
  }
  .related-thumb-col {
    width: 80px;
    min-width: 80px;
    height: 70px;
  }
  .related-card-title {
    font-size: 15px;
    line-height: 1.4;
  }
  .hub-banner-link {
    font-size: 13.5px;
    padding: 10px 12px;
  }
}

/* ==========================================================================
   Policy & Legal Pages Professional Styling
   ========================================================================== */
.policy-wrapper {
  max-width: 880px;
  margin: 0 auto;
  padding: 32px 16px 64px;
}

.policy-page {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 44px 48px;
}

.policy-header {
  margin-bottom: 32px;
}

.policy-badge {
  display: inline-block;
  background: #0f172a;
  color: #38bdf8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.policy-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #64748b;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #e2e8f0;
}

.policy-meta .meta-divider {
  color: #cbd5e1;
}

.policy-section {
  margin-top: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f1f5f9;
}

.policy-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.policy-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.policy-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  margin-top: 20px;
  margin-bottom: 8px;
}

.policy-section p {
  font-size: 16px;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 14px;
  word-break: keep-all;
}

.policy-section ul,
.policy-section ol {
  padding-left: 24px;
  margin: 14px 0 18px;
}

.policy-section li {
  font-size: 15.5px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 10px;
  word-break: keep-all;
}

.policy-section li strong {
  color: #1e293b;
}

.policy-highlight-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #00A4E3;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
}

.policy-highlight-box h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 17px;
}

.policy-highlight-box p {
  margin-bottom: 0;
  font-size: 15px;
  color: #475569;
}

.policy-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.policy-card-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.policy-card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.policy-card-item .card-icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

.policy-card-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.policy-card-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 0;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14.5px;
}

.policy-table th,
.policy-table td {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  text-align: left;
  line-height: 1.6;
}

.policy-table th {
  background: #f8fafc;
  font-weight: 700;
  color: #1e293b;
}

.policy-table td {
  color: #475569;
}

@media (max-width: 768px) {
  .policy-wrapper {
    padding: 16px 12px 48px;
  }
  .policy-page {
    padding: 24px 20px;
    border-radius: 12px;
  }
  .policy-title {
    font-size: 22px;
  }
  .policy-section h2 {
    font-size: 18px;
  }
  .policy-section p,
  .policy-section li {
    font-size: 15px;
  }
  .policy-grid-cards {
    grid-template-columns: 1fr;
  }
}
