/* ==========================================
   WordPress Magazine & News Theme Design Tokens
   ========================================== */
:root {
  --bg-main: #0b0f19;
  --bg-surface: #131b2e;
  --bg-card: rgba(19, 27, 46, 0.85);
  --bg-glass: rgba(15, 23, 42, 0.92);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(99, 102, 241, 0.4);

  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --accent-indigo: #6366f1;
  --accent-cyan: #38bdf8;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-pink: #ec4899;
  --accent-wp: #21759b; /* WordPress Signature Blue */

  --gradient-global: linear-gradient(135deg, #6366f1 0%, #38bdf8 100%);
  --gradient-knews: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  --gradient-wp: linear-gradient(135deg, #0073aa 0%, #00a0d2 100%);

  --font-sans: 'Noto Sans KR', -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Noto Sans KR', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.5);
  --transition: all 0.25s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Graphic Effects */
body::before {
  content: '';
  position: fixed;
  top: -150px;
  left: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 40%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================
   1. WordPress Top Admin & Utility Bar
   ========================================== */
.wp-admin-topbar {
  background: #090d16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: var(--text-muted);
  height: 38px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.wp-topbar-container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wp-badge {
  background: rgba(33, 117, 155, 0.2);
  color: #3894c4;
  border: 1px solid rgba(56, 148, 196, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-ticker {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 500px;
}

.topbar-ticker i {
  color: var(--accent-amber);
}

.wp-topbar-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wp-topbar-link:hover {
  color: var(--accent-cyan);
}

.wp-topbar-link.highlight {
  color: var(--accent-emerald);
  font-weight: 700;
}

/* ==========================================
   2. WordPress Header & Brand Area
   ========================================== */
.wp-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.wp-header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo-box {
  width: 50px;
  height: 50px;
  background: var(--gradient-wp);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 115, 170, 0.4);
  text-decoration: none;
}

.wp-site-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wp-site-badge {
  font-size: 0.65rem;
  background: var(--gradient-global);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 800;
}

.wp-site-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.wp-search-box {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 4px 6px 4px 16px;
  width: 320px;
  transition: var(--transition);
}

.wp-search-box:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
}

.wp-search-box input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  width: 100%;
  outline: none;
}

.wp-search-box button {
  background: var(--accent-indigo);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.wp-search-box button:hover {
  background: var(--accent-cyan);
}

/* Primary Navigation Menu */
.wp-nav {
  background: rgba(10, 15, 26, 0.95);
  border-top: 1px solid var(--border-color);
}

.wp-nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-menu {
  display: flex;
  gap: 4px;
}

.wp-menu-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 18px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 3px solid transparent;
}

.wp-menu-item:hover, .wp-menu-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-bottom-color: var(--accent-cyan);
}

.wp-menu-item.git-item {
  color: var(--accent-emerald);
}

.wp-menu-item.git-item:hover {
  border-bottom-color: var(--accent-emerald);
}

.lang-selector-wp select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 5px 10px;
  border-radius: 16px;
  font-size: 0.8rem;
  outline: none;
  cursor: pointer;
}

/* ==========================================
   3. Main WordPress Layout (2 Columns: Main + Sidebar)
   ========================================== */
.wp-body-wrapper {
  max-width: 1320px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .wp-body-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Feature Hero Magazine Banner */
.wp-featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .wp-featured-grid {
    grid-template-columns: 1fr;
  }
}

.featured-main-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.95) 100%), url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1200&q=80') center/cover;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.featured-tag {
  align-self: flex-start;
  background: var(--gradient-global);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.featured-main-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 0.8rem;
}

.featured-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.featured-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  gap: 16px;
  align-items: center;
}

.featured-sub-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.featured-sub-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.featured-sub-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* Post Section Titles */
.wp-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent-cyan);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wp-section-title span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wp-section-title i {
  color: var(--accent-cyan);
}

/* News Post Stream Layout */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.news-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.card-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-cyan);
}

.traffic-views {
  font-size: 0.75rem;
  color: var(--accent-pink);
  font-weight: 600;
}

.news-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.card-summary-box {
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--accent-indigo);
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 0.8rem;
  margin-top: auto;
}

.btn-card-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-card-action:hover {
  background: var(--gradient-global);
  color: #fff;
  border-color: transparent;
}

/* Category Pills Filter */
.category-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.pill.active, .pill:hover {
  background: var(--gradient-global);
  color: #fff;
  border-color: transparent;
}

/* Track 2 Multilingual Cards */
.multilingual-tabs {
  display: flex;
  gap: 8px;
}

.lang-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-tab.active {
  background: var(--gradient-knews);
  color: #fff;
  border-color: transparent;
}

.k-news-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.k-news-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.k-news-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.k-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-pink);
  background: rgba(236, 72, 153, 0.15);
  padding: 3px 10px;
  border-radius: 12px;
}

.translated-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.orig-title-sub {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
  font-style: italic;
}

.translated-content {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 12px;
  border-radius: 6px;
  line-height: 1.5;
}

/* Card Studio Carousel */
.card-studio-glass {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  margin-bottom: 2.5rem;
}

.card-slide-box {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  max-width: 750px;
  margin: 0 auto 1.5rem auto;
}

.card-slide-badge {
  display: inline-block;
  background: var(--accent-amber);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.card-slide-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-amber);
  margin: 1rem 0;
}

.summary-line {
  font-size: 0.9rem;
}

.summary-line i {
  color: var(--accent-emerald);
  margin-right: 6px;
}

.studio-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.btn-icon:hover {
  background: var(--accent-indigo);
}

/* Workflow Steps */
.workflow-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.wf-step-card {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
  position: relative;
}

.step-num {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-dim);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin: 0 auto 0.8rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}

.step-icon.blue { background: var(--gradient-global); }
.step-icon.amber { background: var(--gradient-knews); }
.step-icon.pink { background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%); }
.step-icon.emerald { background: var(--gradient-emerald); }

.wf-arrow {
  font-size: 1rem;
  color: var(--text-dim);
}

/* AdSense Strategy Grid */
.adsense-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.adsense-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.ad-icon {
  font-size: 1.5rem;
  color: var(--accent-amber);
  margin-bottom: 0.8rem;
}

/* ==========================================
   4. WordPress Sidebar Widgets (Right 4 Cols)
   ========================================== */
.wp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.wp-widget {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.wp-widget-title {
  font-size: 1.05rem;
  font-weight: 700;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent-indigo);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wp-widget-title i {
  color: var(--accent-cyan);
}

/* Popular Posts Widget */
.popular-posts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popular-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.popular-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-pink);
  min-width: 20px;
}

.popular-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  transition: var(--transition);
  cursor: pointer;
}

.popular-title:hover {
  color: var(--accent-cyan);
}

.popular-views {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Tag Cloud Widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  text-decoration: none;
  transition: var(--transition);
}

.tag-item:hover {
  background: var(--gradient-global);
  color: #fff;
  border-color: transparent;
}

/* AdSense Banner Box Widget */
.adsense-widget-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: 1px dashed var(--accent-amber);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  text-align: center;
}

.adsense-widget-box .ad-label {
  font-size: 0.68rem;
  color: var(--accent-amber);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Newsletter Widget */
.newsletter-box input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 10px;
  outline: none;
}

.newsletter-box button {
  width: 100%;
  background: var(--gradient-emerald);
  border: none;
  color: #fff;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-box button:hover {
  opacity: 0.9;
}

/* ==========================================
   5. WordPress Multi-Column Footer
   ========================================== */
.wp-footer {
  background: #080c16;
  border-top: 1px solid var(--border-color);
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  margin-top: 4rem;
}

.wp-footer-grid {
  max-width: 1320px;
  margin: 0 auto 2.5rem auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 992px) {
  .wp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .wp-footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent-indigo);
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-menu a:hover {
  color: var(--accent-cyan);
}

.wp-footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.version-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Modal Popup */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  padding: 2rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.summary-box-modal {
  background: rgba(56, 189, 248, 0.1);
  border-left: 4px solid var(--accent-cyan);
  padding: 1rem;
  border-radius: 6px;
  margin: 1.2rem 0;
  font-size: 0.95rem;
}

.full-content-modal {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
