@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&family=Rajdhani:wght@600;700&display=swap');

:root {
  --bg: #0b1220;
  --bg-soft: #121c2f;
  --panel: rgba(15, 23, 42, 0.88);
  --panel-soft: rgba(18, 28, 47, 0.9);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(93, 188, 210, 0.45);
  --text: #e5eef8;
  --muted: #95a8c1;
  --accent: #5bd1c4;
  --accent-strong: #0ea5a9;
  --accent-alt: #ffb84d;
  --danger: #ff7272;
  --shadow: 0 16px 40px rgba(4, 12, 24, 0.28);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Be Vietnam Pro', 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(91, 209, 196, 0.12), transparent 35%),
    radial-gradient(circle at top left, rgba(255, 184, 77, 0.08), transparent 28%),
    linear-gradient(180deg, #08111d 0%, #0b1220 45%, #101a2a 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow-container {
  width: min(620px, calc(100% - 32px));
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(91, 209, 196, 0.28);
  background: rgba(8, 18, 34, 0.64);
  color: #c7fff9;
  font-size: 0.92rem;
  font-weight: 600;
}

.pill-featured {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 184, 77, 0.95);
  color: #1d1400;
  border: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #032528;
  font-weight: 700;
}

.button-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.button-ghost {
  background: transparent;
  border-color: rgba(91, 209, 196, 0.32);
  color: #b9fff5;
}

.button-danger {
  background: rgba(255, 114, 114, 0.12);
  color: #ffd7d7;
  border-color: rgba(255, 114, 114, 0.24);
}

.button-small {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.button-block {
  width: 100%;
}

.site-header,
.admin-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 12, 23, 0.78);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.nav-shell,
.admin-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  min-width: 0;
}

.brand-logo {
  width: 52px !important;
  height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.brand-text {
  letter-spacing: 0.03em;
}

.main-nav,
.admin-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 12px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  color: #07252a !important;
  background: linear-gradient(135deg, var(--accent-alt) 0%, #ffdca6 100%) !important;
  font-weight: 700;
}

.hero-section {
  padding: 50px 0 22px;
}

.hero-grid,
.why-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 28px;
}

.hero-simple-grid {
  display: block;
}

.hero-copy,
.hero-panel,
.service-card,
.post-card,
.admin-panel,
.auth-card,
.article-card,
.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 36px;
}

.hero-copy-simple {
  padding: 32px 36px;
  border-color: rgba(93, 188, 210, 0.22);
  background:
    radial-gradient(circle at top left, rgba(91, 209, 196, 0.12), transparent 34%),
    rgba(15, 23, 42, 0.9);
}

.hero-copy-full {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

.hero-copy-full > .pill,
.hero-copy-full > h1,
.hero-copy-full > p {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy-full > .pill {
  padding: 8px 12px;
  font-size: 0.82rem;
}

.hero-copy-full > h1 {
  max-width: 860px;
}

.hero-copy-full > p {
  max-width: 740px;
  margin-top: 14px;
}

.hero-copy h1,
.section-heading h2,
.article-card h1,
.auth-card h2,
.admin-header h1 {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  margin-top: 14px;
  font-size: clamp(1.95rem, 3.1vw, 3.15rem);
  line-height: 1.08;
}

.hero-copy p,
.section-heading p,
.service-card p,
.post-card p,
.site-footer p,
.admin-helper,
.auth-note {
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions,
.form-actions,
.post-card-actions,
.table-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 22px;
  justify-content: center;
}

.hero-chip-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
  justify-content: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7e4f5;
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-panel {
  padding: 0;
  display: grid;
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(91, 209, 196, 0.08), transparent 55%),
    rgba(10, 17, 31, 0.92);
}

.hero-visual-frame {
  padding: 24px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background:
    radial-gradient(circle at top right, rgba(91, 209, 196, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.hero-visual-frame img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(6, 14, 27, 0.86);
}

.hero-metrics {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.hero-stat {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-stat span,
.post-meta,
.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-section,
.featured-section,
.latest-section,
.why-section,
.admin-page,
.article-page,
.simple-page {
  padding: 18px 0 56px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading-compact {
  max-width: 760px;
  margin-bottom: 18px;
}

.service-section-simple {
  padding-top: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.service-grid,
.post-grid,
.stats-grid {
  display: grid;
  gap: 20px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid-simple,
.post-grid-simple {
  gap: 18px;
}

.service-grid-reference {
  gap: 22px;
}

.featured-grid .post-card:first-child {
  grid-column: span 2;
}

.service-card,
.post-card,
.admin-panel,
.auth-card,
.article-card,
.stat-card {
  padding: 22px;
}

.service-art {
  margin: -22px -22px 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top right, rgba(91, 209, 196, 0.11), transparent 40%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.service-art img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(6, 14, 27, 0.9);
}

.service-card-simple {
  padding: 18px;
}

.service-card-simple .service-art {
  margin: -18px -18px 16px;
  padding: 14px;
}

.service-card-simple .service-art img {
  aspect-ratio: 16 / 9;
}

.service-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-emoji {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(91, 209, 196, 0.16), rgba(255, 184, 77, 0.2));
  font-size: 1rem;
}

.service-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d6e6fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.service-card h3,
.post-card h3 {
  margin: 16px 0 10px;
  font-size: 1.35rem;
}

.service-card-simple h3 {
  margin-top: 14px;
  font-size: 1.24rem;
}

.service-card-simple p {
  margin-top: 10px;
}

.service-card ul,
.why-list,
.footer-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #cdd9ea;
}

.service-card li,
.why-list li,
.footer-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.service-card-simple ul {
  margin-top: 14px;
}

.service-card-simple li {
  margin-bottom: 8px;
}

.service-card-reference {
  padding: 24px;
  background: rgba(20, 28, 43, 0.84);
  border-color: rgba(148, 163, 184, 0.16);
}

.service-heading-reference {
  margin-bottom: 6px;
}

.service-card-reference h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.22rem;
  line-height: 1.4;
}

.service-card-reference p {
  margin-bottom: 14px;
}

.service-card-reference ul {
  margin-top: 14px;
}

.service-card-reference li {
  margin-bottom: 8px;
}

.service-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(91, 209, 196, 0.08);
  border: 1px solid rgba(91, 209, 196, 0.14);
}

.service-links-label {
  margin: 0;
  color: #d9fffb;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(8, 18, 34, 0.78);
  border: 1px solid rgba(91, 209, 196, 0.22);
  color: #8df9ee;
  font-weight: 700;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-link:hover {
  color: #c8fff8;
  border-color: rgba(141, 249, 238, 0.45);
  background: rgba(10, 25, 40, 0.92);
  transform: translateY(-1px);
}

.service-link-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(91, 209, 196, 0.16);
  flex-shrink: 0;
}

.service-emoji-indigo {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.service-emoji-purple {
  background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
}

.service-emoji-cyan {
  background: linear-gradient(135deg, #0891b2 0%, #2563eb 100%);
}

.service-emoji-emerald {
  background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
}

.service-emoji-amber {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.service-emoji-slate {
  background: linear-gradient(135deg, #475569 0%, #1f2937 100%);
}

.post-card {
  padding: 0;
  overflow: hidden;
}

.post-card-media {
  position: relative;
  min-height: 190px;
  background: linear-gradient(180deg, rgba(7, 12, 23, 0.06), rgba(7, 12, 23, 0.5));
}

.post-card-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
}

.post-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 23, 0.02), rgba(7, 12, 23, 0.34));
  pointer-events: none;
}

.post-card-icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(8, 18, 34, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 1.3rem;
}

.post-card-body {
  padding: 18px;
}

.post-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.post-card h3 {
  min-height: 0;
  font-size: 1.2rem;
  line-height: 1.35;
}

.post-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.empty-box {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(148, 163, 184, 0.28);
  color: var(--muted);
}

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

.why-list li {
  padding: 18px 18px 18px 52px;
  position: relative;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.why-list li::before {
  content: '✓';
  position: absolute;
  left: 18px;
  top: 17px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(91, 209, 196, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(7, 12, 23, 0.74);
}

.footer-shell {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(91, 209, 196, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.03);
  padding: 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 36px;
}

.footer-brand-block,
.footer-panel {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

.footer-brand-block {
  min-height: 100%;
  padding-right: 8px;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-brand-logo {
  width: 128px !important;
  height: 128px !important;
  max-width: 128px !important;
  max-height: 128px !important;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.footer-brand-copy {
  max-width: 360px;
}

.footer-brand-note {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-brand-copy h3,
.footer-panel h4 {
  margin: 0 0 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.02em;
}

.footer-panel h4 {
  font-size: 1.35rem;
}

.footer-panel {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(8, 18, 34, 0.46);
  min-height: 100%;
}

.footer-commitment-panel {
  max-width: 420px;
  justify-self: end;
}

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

.footer-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.footer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.footer-contact-list li {
  padding-left: 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px 14px;
  align-items: start;
}

.footer-contact-list li::before {
  display: none;
}

.footer-contact-list strong {
  color: #f0f6ff;
  font-size: 0.95rem;
}

.footer-contact-list span {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-contact-bar h4 {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-contact-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  color: var(--muted);
}

.footer-contact-items span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.footer-contact-items strong {
  color: #f0f6ff;
}

.flash-stack {
  display: grid;
  gap: 12px;
  margin: 20px auto;
}

.flash {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
}

.flash-success {
  background: rgba(91, 209, 196, 0.12);
  border-color: rgba(91, 209, 196, 0.28);
}

.flash-warning {
  background: rgba(255, 184, 77, 0.12);
  border-color: rgba(255, 184, 77, 0.28);
}

.flash-danger {
  background: rgba(255, 114, 114, 0.12);
  border-color: rgba(255, 114, 114, 0.3);
}

.flash-info {
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.24);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 20px;
}

.stat-card span {
  display: block;
  color: var(--muted);
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
  font-family: 'Rajdhani', sans-serif;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  vertical-align: top;
  text-align: left;
}

.admin-table th {
  color: #c7d4e6;
  font-size: 0.94rem;
}

.admin-table strong {
  display: block;
  margin-bottom: 8px;
}

.table-actions form {
  margin: 0;
}

.auth-card {
  margin-top: 24px;
}

.auth-form,
.post-form {
  display: grid;
  gap: 18px;
}

.auth-form label,
.post-form label {
  display: grid;
  gap: 10px;
}

.auth-form span,
.post-form span {
  color: #c7d4e6;
  font-size: 0.95rem;
}

input[type="text"],
input[type="password"],
input[type="file"],
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(7, 12, 23, 0.75);
  color: var(--text);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(91, 209, 196, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid-full {
  grid-column: 1 / -1;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 0 0;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
}

.cover-preview {
  margin-top: 18px;
}

.cover-preview img,
.article-cover {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.editor-toolbar button {
  min-width: 52px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.editor-textarea {
  display: none;
}

.editor-surface {
  min-height: 320px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(7, 12, 23, 0.84);
  line-height: 1.75;
}

.editor-surface:focus {
  outline: none;
  border-color: var(--line-strong);
}

.editor-surface img {
  border-radius: 16px;
  margin: 14px 0;
}

.editor-helper {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-layout {
  display: grid;
  gap: 22px;
}

.article-card h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  margin: 12px 0;
}

.article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
}

.article-excerpt {
  font-size: 1.08rem;
}

.article-download {
  margin: 24px 0;
}

.article-content {
  color: #deebfb;
  line-height: 1.8;
}

.article-content h2,
.article-content h3 {
  font-family: 'Rajdhani', sans-serif;
  margin-top: 28px;
}

.article-content blockquote,
.highlight-quote {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: rgba(91, 209, 196, 0.08);
  color: #d7fff8;
}

.inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  margin-right: 6px;
}

@media (max-width: 960px) {
  .hero-simple-grid,
  .hero-grid,
  .why-grid,
  .footer-grid,
  .service-grid,
  .post-grid,
  .stats-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid .post-card:first-child {
    grid-column: span 1;
  }

  .nav-shell,
  .admin-shell,
  .panel-heading,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav,
  .admin-actions {
    width: 100%;
  }

  .main-nav a,
  .admin-actions > * {
    width: 100%;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .hero-copy,
  .hero-panel,
  .service-card,
  .post-card-body,
  .admin-panel,
  .auth-card,
  .article-card,
  .stat-card {
    padding: 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand-head {
    align-items: flex-start;
  }

  .footer-shell,
  .footer-panel {
    padding: 18px;
  }

  .footer-commitment-panel {
    max-width: none;
    justify-self: stretch;
  }

  .footer-brand-logo {
    width: 104px !important;
    height: 104px !important;
    max-width: 104px !important;
    max-height: 104px !important;
  }

  .footer-contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-contact-bar,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact-items {
    justify-content: flex-start;
  }
}
