/* Blog Styles - В стиле основного сайта Сконвертировать.рф */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* === BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === CSS VARIABLES (точно как на основном сайте) === */
:root {
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  --color-bg: #030014;
  --color-bg-secondary: #0a0a1f;
  --color-primary: #7c3aed;
  --color-secondary: #ec4899;
  --color-accent: #f97316;

  --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f97316 100%);
  --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
  --gradient-accent: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #7c3aed 100%);
  --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.4) 0%, rgba(236, 72, 153, 0.4) 100%);
}

/* === ANIMATED BACKGROUND === */
body.blog-body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-bg);
  color: white;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Animated background with gradient blobs */
body.blog-body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
  animation: bgShift 20s ease-in-out infinite;
  z-index: -3;
  pointer-events: none;
}

@keyframes bgShift {
  0%, 100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1) rotate(5deg);
  }
}

/* Grid pattern overlay */
body.blog-body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  pointer-events: none;
}

/* === GLASSMORPHISM === */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === HEADER === */
.blog-header {
  background: rgba(15, 15, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.blog-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.blog-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.blog-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  transition: all 0.3s ease;
}

.blog-logo:hover .blog-logo-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(124, 58, 237, 0.6);
}

.blog-logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.blog-nav {
  display: flex;
  gap: 20px;
}

.blog-nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.blog-nav-link:hover,
.blog-nav-link.active {
  color: white;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.2));
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.blog-search-form {
  display: flex;
  gap: 10px;
}

.blog-search-input {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  outline: none;
  min-width: 250px;
  transition: all 0.3s ease;
}

.blog-search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.blog-search-btn {
  padding: 10px 24px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.blog-search-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5), 0 0 60px rgba(236, 72, 153, 0.3);
}

/* === MAIN CONTENT === */
.blog-main {
  padding: 40px 0;
  min-height: calc(100vh - 200px);
}

.blog-container {
  margin-top: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

@media (max-width: 968px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* === PAGE TITLE === */
.blog-page-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(124, 58, 237, 0.5));
}

.blog-page-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* === BLOG CARDS === */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.5), 0 0 80px rgba(236, 72, 153, 0.3);
  border-color: rgba(124, 58, 237, 0.5);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--gradient-primary);
  position: relative;
}

.blog-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 25px;
}

.blog-card-category {
  display: inline-block;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(236, 72, 153, 0.25));
  color: #fbbf24;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 15px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.blog-card-category:hover {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.6);
  transform: translateY(-2px);
}

.blog-card-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.blog-card-title a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-card-title a:hover {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.5));
}

.blog-card-excerpt {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.7;
}

.blog-card-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}

.blog-card-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-card-tag {
  background: rgba(124, 58, 237, 0.15);
  color: #d8b4fe;
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease;
}

.blog-card-tag:hover {
  background: rgba(236, 72, 153, 0.25);
  border-color: rgba(236, 72, 153, 0.5);
  color: #fbbf24;
}

/* === BLOG POST (отдельная статья) === */
.blog-post {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.blog-post-header {
  margin-bottom: 35px;
}

.blog-post-category {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
  transition: all 0.3s ease;
}

.blog-post-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(236, 72, 153, 0.6);
}

.blog-post-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.15;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 50px rgba(124, 58, 237, 0.6));
}

.blog-post-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  font-size: 1rem;
}

.blog-post-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-post-tag {
  background: rgba(124, 58, 237, 0.15);
  color: #d8b4fe;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease;
}

.blog-post-tag:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
}

.blog-post-content {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.9;
}

.blog-post-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 35px 0 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.blog-post-content h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 30px 0 15px;
  font-weight: 700;
  color: #fbbf24;
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 20px 0;
  padding-left: 35px;
}

.blog-post-content li {
  margin-bottom: 12px;
}

.blog-post-content a {
  color: var(--color-secondary);
  text-decoration: none;
  border-bottom: 2px solid rgba(236, 72, 153, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
}

.blog-post-content a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  text-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
}

.blog-post-content code {
  background: rgba(124, 58, 237, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  color: #fbbf24;
  border: 1px solid rgba(124, 58, 237, 0.3);
  font-weight: 600;
}

.blog-post-content pre {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 12px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 25px 0;
}

.blog-post-content pre code {
  background: none;
  padding: 0;
  border: none;
}

.blog-post-content blockquote {
  border-left: 4px solid transparent;
  border-image: var(--gradient-primary) 1;
  padding-left: 20px;
  margin: 25px 0;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.05));
  padding: 20px 25px;
  border-radius: 0 12px 12px 0;
  position: relative;
}

.blog-post-content blockquote::before {
  content: '"';
  position: absolute;
  left: -15px;
  top: 0;
  font-size: 4rem;
  color: var(--color-secondary);
  opacity: 0.3;
  font-family: Georgia, serif;
}

/* === RELATED POSTS === */
.blog-related-posts {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 2px solid transparent;
  border-image: var(--gradient-primary) 1;
}

.blog-related-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.blog-related-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.blog-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4), 0 0 60px rgba(236, 72, 153, 0.2);
  border-color: rgba(124, 58, 237, 0.4);
}

.blog-related-card-title a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  font-family: var(--font-display);
}

.blog-related-card-title a:hover {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-related-card-excerpt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 12px;
  line-height: 1.6;
}

/* === SIDEBAR === */
.blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.blog-sidebar-widget {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.blog-sidebar-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-sidebar-list {
  list-style: none;
}

.blog-sidebar-list li {
  margin-bottom: 12px;
}

.blog-sidebar-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
}

.blog-sidebar-link:hover {
  color: white;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(236, 72, 153, 0.15));
  padding-left: 18px;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.blog-sidebar-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  margin-bottom: 35px;
}

.breadcrumbs-list {
  display: flex;
  gap: 12px;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-link:hover {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.breadcrumbs-separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs-current {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* === PAGINATION === */
.blog-pagination {
  margin-top: 50px;
}

.blog-pagination-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.blog-pagination-btn {
  padding: 14px 32px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.blog-pagination-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5), 0 0 60px rgba(236, 72, 153, 0.3);
}

.blog-pagination-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.blog-pagination-info {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* === FOOTER === */
.blog-footer {
  background: rgba(15, 15, 26, 0.9);
  backdrop-filter: blur(20px);
  border-top: 2px solid transparent;
  border-image: var(--gradient-primary) 1;
  padding: 50px 0 25px;
  margin-top: 80px;
}

.blog-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.blog-footer-title {
  font-family: var(--font-display);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 800;
}

.blog-footer-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.blog-footer-links {
  list-style: none;
}

.blog-footer-links li {
  margin-bottom: 12px;
}

.blog-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-footer-links a:hover {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-left: 8px;
}

.blog-footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

/* === EMPTY STATE === */
.blog-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* === SCROLL TO TOP === */
.scroll-to-top {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.15);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.7), 0 0 80px rgba(236, 72, 153, 0.4);
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 6px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-accent);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .blog-header-content {
    flex-direction: column;
    gap: 20px;
  }

  .blog-search {
    width: 100%;
  }

  .blog-search-input {
    width: 100%;
    min-width: 0;
  }

  .blog-page-title {
    font-size: 2.2rem;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-post {
    padding: 30px 20px;
  }

  .blog-post-title {
    font-size: 2rem;
  }

  .blog-post-content h2 {
    font-size: 1.8rem;
  }

  .blog-post-content h3 {
    font-size: 1.4rem;
  }
}
