@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0d1f3c;
  --navy-mid: #162d52;
  --navy-light: #1e3d6e;
  --accent: #e8831a;
  --accent-light: #f5a84e;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --gray-light: #eef0f6;
  --gray-mid: #c5cad8;
  --gray-text: #6b7592;
  --text-dark: #1a2540;
  --text-body: #3d4a6b;
  --border: #dde1ef;
  --shadow-sm: 0 2px 8px rgba(13, 31, 60, .08);
  --shadow-md: 0 6px 24px rgba(13, 31, 60, .12);
  --radius: 10px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

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

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

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--gray-light)
}

::-webkit-scrollbar-thumb {
  background: var(--navy-light);
  border-radius: 3px
}

/* NAVBAR */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .25)
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: -.5px
}

.logo-text {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.3px
}

.logo-text span {
  color: var(--accent-light)
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center
}

.nav-links a {
  color: rgba(255, 255, 255, .8);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1)
}

.nav-links a.active {
  color: var(--accent-light);
  background: rgba(232, 131, 26, .1)
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s
}

/* BREADCRUMB */
.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid var(--border)
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-text);
  flex-wrap: wrap
}

.breadcrumb-inner a {
  color: var(--navy-light);
  transition: color .2s
}

.breadcrumb-inner a:hover {
  color: var(--accent)
}

.breadcrumb-inner .sep {
  color: var(--gray-mid)
}

/* HERO */
.blog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3560 100%);
  padding: 52px 24px 48px;
  position: relative;
  overflow: hidden
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 131, 26, .15) 0%, transparent 70%);
  pointer-events: none
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 131, 26, .2);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(232, 131, 26, .3);
  margin-bottom: 16px
}

.hero-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -.5px
}

.hero-subtitle {
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  font-weight: 300;
  max-width: 480px
}

/* LAYOUT */
.main-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start
}

/* FILTER */
.filter-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  margin-bottom: 16px;
  font-size: 13.5px
}

.filter-label {
  font-weight: 600;
  color: var(--text-dark)
}

.filter-clear {
  color: var(--gray-text);
  font-size: 12px;
  font-weight: 500;
  transition: color .2s
}

.filter-clear:hover {
  color: var(--accent)
}

/* POSTS HEADER */
.posts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px
}

.posts-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: .6px
}

.posts-count {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px
}

/* POST CARD */
.post-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: all .3s ease
}

.post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(30, 61, 110, .2)
}

.post-card.featured {
  grid-template-columns: 1fr;
  grid-template-rows: 220px 1fr
}

.post-thumb {
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
  display: block
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.post-card:hover .post-thumb img {
  transform: scale(1.05)
}

.post-thumb-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light))
}

.post-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap
}

.post-body {
  padding: 22px 26px;
  display: flex;
  flex-direction: column
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--gray-text)
}

.author-chip {
  display: flex;
  align-items: center;
  gap: 7px
}

.author-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0
}

.author-name {
  font-size: 12.5px;
  color: var(--text-dark);
  font-weight: 500;
  transition: color .2s
}

.author-name:hover {
  color: var(--accent)
}

.post-title {
  font-family: 'Merriweather', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 10px;
  display: block;
  transition: color .2s
}

.post-title:hover {
  color: var(--navy-light)
}

.post-excerpt {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
  gap: 8px;
  flex-wrap: wrap
}

.post-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--navy-light);
  background: var(--gray-light);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: all .2s
}

.tag:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: gap .2s;
  flex-shrink: 0
}

.read-more:hover {
  gap: 9px
}

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border)
}

.empty-icon {
  font-size: 56px;
  margin-bottom: 16px
}

.empty-state h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px
}

.empty-state p {
  color: var(--gray-text);
  margin-bottom: 20px
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s
}

.btn-primary:hover {
  background: var(--navy-light)
}

/* PAGINATION */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap
}

.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  text-decoration: none
}

.page-btn:hover {
  border-color: var(--navy-light);
  color: var(--navy-light)
}

.page-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

.page-btn.disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none
}

.page-ellipsis {
  color: var(--gray-mid);
  font-size: 14px;
  padding: 0 2px
}

/* SIDEBAR */
.sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 22px
}

.widget {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden
}

.widget-header {
  padding: 14px 18px;
  background: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px
}

.widget-header h3 {
  color: #fff;
  font-size: 13.5px;
  font-weight: 600
}

.widget-header-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, .1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.widget-body {
  padding: 14px 18px
}

.cat-list {
  list-style: none
}

.cat-item {
  border-bottom: 1px solid var(--gray-light)
}

.cat-item:last-child {
  border-bottom: none
}

.cat-item.active .cat-name {
  color: var(--accent)
}

.cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  transition: all .2s;
  text-decoration: none;
  gap: 6px;
  min-width: 0
}

.cat-link:hover .cat-name {
  color: var(--accent)
}

.cat-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
  overflow: hidden
}

.cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0
}

.cat-name {
  font-size: 13.5px;
  color: var(--text-body);
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.cat-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-text);
  background: var(--gray-light);
  padding: 2px 8px;
  border-radius: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1.6
}

.pop-post {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: transform .2s;
  text-decoration: none
}

.pop-post:last-child {
  border-bottom: none
}

.pop-post:hover {
  transform: translateX(4px)
}

.pop-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-light);
  line-height: 1;
  min-width: 28px;
  font-family: 'Merriweather', serif;
  transition: color .2s
}

.pop-post:hover .pop-num {
  color: var(--accent)
}

.pop-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 3px
}

.pop-date {
  font-size: 11.5px;
  color: var(--gray-text)
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}

.cloud-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy-light);
  background: var(--gray-light);
  padding: 5px 11px;
  border-radius: 20px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none
}

.cloud-tag:hover,
.cloud-tag.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

.newsletter-widget {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: none
}

.newsletter-header {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.newsletter-text {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.newsletter-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 13px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .2s
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, .4)
}

.newsletter-input:focus {
  border-color: var(--accent-light)
}

.newsletter-btn {
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  font-family: 'DM Sans', sans-serif
}

.newsletter-btn:hover {
  background: var(--accent-light)
}

/* ARTICLE HERO */
.article-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3560 100%);
  padding: 40px 24px 0;
  position: relative;
  overflow: hidden
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .25) 0%, transparent 60%);
  pointer-events: none
}

.article-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  transition: color .2s
}

.back-btn:hover {
  color: #fff
}

.article-cat-badge {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px
}

.article-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 22px;
  max-width: 820px;
  letter-spacing: -.5px
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 28px;
  flex-wrap: wrap
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .75);
  font-size: 13.5px
}

.author-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity .2s
}

.author-link:hover {
  opacity: .85
}

.article-author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .2);
  flex-shrink: 0
}

.author-meta-name {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  line-height: 1.2
}

.author-meta-title {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .6)
}

.article-cover {
  width: 100%;
  height: 360px;
  margin-top: 28px;
  border-radius: 16px 16px 0 0;
  overflow: hidden
}

.article-cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3d6e 0%, #0d2a4e 50%, #162942 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px
}

/* ARTICLE LAYOUT */
.article-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start
}

.article-content-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 40px 44px
}

.article-lead {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--gray-light);
  font-style: italic
}

.article-body h2 {
  font-family: 'Merriweather', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 34px 0 14px;
  line-height: 1.35
}

.article-body h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy-mid);
  margin: 24px 0 10px
}

.article-body p {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 18px
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
  margin-bottom: 18px
}

.article-body li {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 7px
}

.article-body blockquote {
  border-left: 4px solid var(--accent);
  background: linear-gradient(to right, rgba(232, 131, 26, .05), transparent);
  padding: 16px 22px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0
}

.article-body blockquote p {
  color: var(--navy-mid);
  font-style: italic;
  font-size: 16px;
  margin: 0
}

.article-body .lead-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.75;
  font-style: italic
}

.info-box {
  background: linear-gradient(135deg, rgba(13, 31, 60, .04), rgba(30, 61, 110, .06));
  border: 1px solid rgba(30, 61, 110, .15);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 22px 0
}

.info-box-title {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--navy-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px
}

.info-box ul {
  margin: 0;
  padding-left: 18px
}

.article-footer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px
}

.article-tags-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px
}

.share-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.share-btn {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  line-height: 1
}

.share-btn:hover {
  opacity: .85
}

.share-twitter {
  background: #1da1f2;
  color: #fff
}

.share-linkedin {
  background: #0077b5;
  color: #fff
}

.share-link {
  background: var(--gray-light);
  color: var(--text-dark);
  border: 1px solid var(--border)
}

.author-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start
}

.author-box-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.author-box-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px
}

.author-box-role {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 10px
}

.author-box-bio {
  font-size: 13.5px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 10px
}

.author-all-posts {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-light);
  transition: color .2s
}

.author-all-posts:hover {
  color: var(--accent)
}

/* RELATED */
.related-section {
  margin-top: 36px
}

.section-title {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-light)
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.related-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .25s;
  text-decoration: none;
  display: block
}

.related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px)
}

.related-thumb {
  height: 120px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px
}

.related-info {
  padding: 13px 15px
}

.related-cat {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 5px
}

.related-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 5px
}

.related-date {
  font-size: 11.5px;
  color: var(--gray-text)
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  padding: 32px 24px;
  margin-top: 20px
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px
}

.footer-text {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  margin-bottom: 14px
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 13px
}

.footer-links a {
  color: var(--accent-light);
  transition: color .2s
}

.footer-links a:hover {
  color: #fff
}

.footer-links span {
  color: rgba(255, 255, 255, .25)
}

.footer-copy {
  color: rgba(255, 255, 255, .35);
  font-size: 12px
}

/* RESPONSIVE */
@media(max-width:1024px) {

  .main-layout,
  .article-layout {
    grid-template-columns: 1fr
  }

  .sidebar {
    position: static
  }
}

@media(max-width:768px) {
  .nav-toggle {
    display: flex
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 12px 16px 20px;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    padding: 10px 14px;
    display: block
  }

  .post-card {
    grid-template-columns: 1fr
  }

  .post-thumb {
    height: 180px
  }

  .post-thumb-placeholder {
    min-height: 180px
  }

  .article-content-wrap {
    padding: 24px 20px
  }

  .article-cover {
    height: 200px
  }

  .related-grid {
    grid-template-columns: 1fr
  }

  .article-footer {
    flex-direction: column
  }

  .main-layout,
  .article-layout {
    padding: 24px 16px
  }
}

@media(max-width:480px) {
  .article-meta {
    gap: 12px
  }

  .article-meta-item {
    font-size: 12px
  }

  .share-btns {
    gap: 6px
  }

  .share-btn {
    padding: 7px 11px;
    font-size: 12px
  }
}