.elementor-1290 .elementor-element.elementor-element-edf4653{--display:flex;}.elementor-1290 .elementor-element.elementor-element-eee514d{--display:flex;}.elementor-1290 .elementor-element.elementor-element-19eb0d7{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* ============================================
   BLOG POST TEMPLATE - COMPLETE STYLING
   ============================================
   
   Brand Colors:
   - Deep Indigo: #2D1B69
   - Vibrant Magenta: #C41E7A
   - Rich Gold: #F2A900
   - Electric Teal: #00BFA5
   - Warm Cream: #FFF8E7
   - Charcoal: #2C3E50
   
   Fonts:
   - Headlines: 'Space Grotesk', sans-serif
   - Body: 'Inter', sans-serif
   - Code: 'JetBrains Mono', monospace
   ============================================ */


/* ========================================
   POST HERO SECTION
   ======================================== */

.post-hero {
  background: linear-gradient(135deg, #2D1B69 0%, #1a0f3d 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.post-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(196, 30, 122, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.post-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.breadcrumb a {
  color: #FFF8E7;
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.breadcrumb a:hover {
  color: #F2A900;
  opacity: 1;
}

.breadcrumb .separator {
  color: #FFF8E7;
  opacity: 0.5;
}

.breadcrumb .current {
  color: #FFF8E7;
  opacity: 0.6;
}

/* Category Badge */
.post-category {
  margin-bottom: 20px;
}

.category-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(196, 30, 122, 0.2);
  border: 2px solid #C41E7A;
  border-radius: 50px;
  color: #FFF8E7;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Post Title */
.post-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFF8E7;
  margin: 0 0 30px;
  animation: fadeInUp 1s ease;
}

/* Post Metadata */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  color: #FFF8E7;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  opacity: 0.9;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  opacity: 0.8;
}

/* Featured Image */
.featured-image-container {
  max-width: 1200px;
  margin: -40px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.featured-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: block;
}

.image-caption {
  text-align: center;
  font-size: 14px;
  color: #2C3E50;
  opacity: 0.7;
  margin-top: 15px;
  font-style: italic;
  font-family: 'Inter', sans-serif;
}


/* ========================================
   MAIN CONTENT LAYOUT
   ======================================== */

.post-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}

/* Sidebar */
.post-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background: white;
  border: 2px solid #FFF8E7;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.sidebar-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2D1B69;
  margin: 0 0 15px;
}

/* Table of Contents */
.table-of-contents {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-link {
  padding: 8px 12px;
  color: #2C3E50;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

.toc-link:hover {
  background: #FFF8E7;
  border-left-color: #C41E7A;
  color: #2D1B69;
  padding-left: 16px;
}

.toc-link.active {
  border-left-color: #F2A900;
  color: #2D1B69;
  font-weight: 600;
  background: #FFF8E7;
}

.toc-link.toc-indent {
  padding-left: 24px;
  font-size: 13px;
}

/* Share Buttons */
.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.share-btn svg {
  width: 20px;
  height: 20px;
}

.share-twitter {
  background: #1DA1F2;
  color: white;
}

.share-twitter:hover {
  background: #1a8cd8;
  transform: translateY(-2px);
}

.share-linkedin {
  background: #0077B5;
  color: white;
}

.share-linkedin:hover {
  background: #006399;
  transform: translateY(-2px);
}

.share-email {
  background: #EA4335;
  color: white;
}

.share-email:hover {
  background: #d33426;
  transform: translateY(-2px);
}

.share-copy {
  background: #2C3E50;
  color: white;
}

.share-copy:hover {
  background: #1a252f;
  transform: translateY(-2px);
}

/* Author Card in Sidebar */
.author-card {
  text-align: center;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: block;
  border: 3px solid #F2A900;
}

.author-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2D1B69;
  margin: 0 0 5px;
}

.author-title {
  font-size: 14px;
  color: #C41E7A;
  font-weight: 600;
  margin: 0 0 12px;
  font-family: 'Inter', sans-serif;
}

.author-bio-short {
  font-size: 14px;
  line-height: 1.6;
  color: #2C3E50;
  margin: 0 0 15px;
  font-family: 'Inter', sans-serif;
}

.author-link {
  display: inline-block;
  color: #00BFA5;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.author-link:hover {
  color: #009485;
}


/* ========================================
   MAIN ARTICLE CONTENT
   ======================================== */

.post-content {
  max-width: 720px;
  width: 100%;
}

/* Intro Paragraph */
.post-intro {
  font-size: 22px;
  line-height: 1.6;
  color: #2C3E50;
  margin: 0 0 30px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* Regular Paragraphs */
.post-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #2C3E50;
  margin: 0 0 25px;
  font-family: 'Inter', sans-serif;
}

/* Headings */
.post-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #2D1B69;
  margin: 50px 0 25px;
  scroll-margin-top: 100px; /* For anchor link offset */
}

.post-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #2D1B69;
  margin: 40px 0 20px;
  scroll-margin-top: 100px;
}

.post-content h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #2C3E50;
  margin: 30px 0 15px;
}

/* Links */
.post-content a {
  color: #00BFA5;
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 191, 165, 0.3);
  transition: all 0.3s ease;
}

.post-content a:hover {
  color: #009485;
  border-bottom-color: #009485;
}

/* Strong/Bold */
.post-content strong {
  font-weight: 700;
  color: #2D1B69;
}

/* Emphasis/Italic */
.post-content em {
  font-style: italic;
  color: #2C3E50;
}

/* Pull Quote */
.pull-quote {
  position: relative;
  padding: 40px;
  margin: 50px 0;
  background: linear-gradient(135deg, #FFF8E7 0%, #fff 100%);
  border-left: 4px solid #C41E7A;
  border-radius: 8px;
}

.quote-icon {
  width: 40px;
  height: 40px;
  fill: #C41E7A;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.pull-quote blockquote {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  color: #2D1B69;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  font-style: italic;
}

/* Info Box */
.info-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  margin: 40px 0;
  background: white;
  border: 2px solid #00BFA5;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 191, 165, 0.1);
}

.info-box-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.info-box-content {
  flex: 1;
}

.info-box-content h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #00BFA5;
  margin: 0 0 10px;
}

.info-box-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
}

/* Lists */
.content-list {
  margin: 25px 0;
  padding-left: 30px;
}

.content-list li {
  font-size: 18px;
  line-height: 1.7;
  color: #2C3E50;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.post-content ul.content-list li {
  list-style-type: none;
  position: relative;
  padding-left: 15px;
}

.post-content ul.content-list li::before {
  content: '→';
  position: absolute;
  left: -10px;
  color: #C41E7A;
  font-weight: bold;
}

.post-content ol.content-list {
  counter-reset: list-counter;
}

.post-content ol.content-list li {
  counter-increment: list-counter;
  list-style: none;
  position: relative;
  padding-left: 15px;
}

.post-content ol.content-list li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: -25px;
  color: #C41E7A;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

/* Code Blocks */
.code-block {
  margin: 40px 0;
  border-radius: 8px;
  overflow: hidden;
  background: #1a252f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #2C3E50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-language {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #00BFA5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.code-copy-btn {
  padding: 6px 12px;
  background: rgba(0, 191, 165, 0.2);
  border: 1px solid #00BFA5;
  border-radius: 4px;
  color: #00BFA5;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.code-copy-btn:hover {
  background: #00BFA5;
  color: white;
}

.code-block pre {
  margin: 0;
  padding: 25px;
  overflow-x: auto;
}

.code-block code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #FFF8E7;
}

/* Inline Code */
.post-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  padding: 3px 8px;
  background: #FFF8E7;
  border: 1px solid rgba(45, 27, 105, 0.1);
  border-radius: 4px;
  color: #2D1B69;
}

/* Images */
.content-image {
  margin: 40px 0;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-image figcaption {
  text-align: center;
  font-size: 14px;
  color: #2C3E50;
  opacity: 0.7;
  margin-top: 12px;
  font-style: italic;
  font-family: 'Inter', sans-serif;
}

/* Two Column Image Grid */
.image-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

/* Video Container (Responsive 16:9) */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Content CTA Box */
.content-cta {
  padding: 40px;
  margin: 60px 0 40px;
  background: linear-gradient(135deg, #2D1B69 0%, #1a0f3d 100%);
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.content-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(196, 30, 122, 0.2) 0%, transparent 100%);
  pointer-events: none;
}

.content-cta h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFF8E7;
  margin: 0 0 15px;
  position: relative;
}

.content-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: #FFF8E7;
  opacity: 0.9;
  margin: 0 0 25px;
  position: relative;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #F2A900;
  color: #2D1B69;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 5px 15px rgba(242, 169, 0, 0.2);
}

.cta-button:hover {
  background: #2D1B69;
  color: #F2A900;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(242, 169, 0, 0.3);
}


/* ========================================
   POST FOOTER
   ======================================== */

.post-footer {
  max-width: 900px;
  margin: 80px auto 0;
  padding: 60px 20px;
  border-top: 2px solid #FFF8E7;
}

/* Tags and Categories */
.post-taxonomy {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 60px;
}

.taxonomy-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.taxonomy-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2D1B69;
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 16px;
  background: #C41E7A;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.tag:hover {
  background: #a01664;
  transform: translateY(-2px);
}

.tag-outline {
  padding: 8px 16px;
  background: transparent;
  color: #2D1B69;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #2D1B69;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.tag-outline:hover {
  background: #2D1B69;
  color: white;
  transform: translateY(-2px);
}

/* Author Full Bio */
.author-bio-full {
  display: flex;
  gap: 30px;
  padding: 40px;
  background: white;
  border: 2px solid #FFF8E7;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.author-bio-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid #F2A900;
}

.author-bio-content {
  flex: 1;
}

.author-bio-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2D1B69;
  margin: 0 0 15px;
}

.author-bio-text {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  margin: 0 0 20px;
  font-family: 'Inter', sans-serif;
}

.author-bio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.author-bio-link {
  color: #00BFA5;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.author-bio-link:hover {
  color: #009485;
}

/* Mobile Share Buttons */
.share-mobile {
  display: none; /* Hidden on desktop, shown on mobile */
  text-align: center;
  padding: 30px 0;
}

.share-mobile h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2D1B69;
  margin: 0 0 20px;
}

.share-mobile .share-buttons {
  justify-content: center;
}

.share-mobile .share-btn {
  width: auto;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  gap: 8px;
}


/* ========================================
   RELATED POSTS SECTION
   ======================================== */

.related-posts-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.related-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #2D1B69;
  text-align: center;
  margin: 0 0 50px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-post-card {
  background: white;
  border: 2px solid #FFF8E7;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.related-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #C41E7A;
}

.related-post-link {
  text-decoration: none;
  display: block;
}

.related-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-post-content {
  padding: 25px;
}

.related-post-category {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(196, 30, 122, 0.1);
  color: #C41E7A;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
}

.related-post-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #2D1B69;
  margin: 0 0 12px;
  transition: color 0.3s ease;
}

.related-post-card:hover .related-post-title {
  color: #C41E7A;
}

.related-post-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #2C3E50;
  margin: 0 0 15px;
  font-family: 'Inter', sans-serif;
}

.related-post-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #2C3E50;
  opacity: 0.7;
  font-family: 'Inter', sans-serif;
}

/* Simple Post Title */
.simple-post-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #2D1B69;
  margin: 0 0 30px;
  text-align: center;
}

/* Simple Post Content */
.simple-post-content {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #2C3E50;
  max-width: 720px;
  margin: 0 auto;
}

/* Content Headings */
.simple-post-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #2D1B69;
  margin: 40px 0 20px;
}

.simple-post-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #2D1B69;
  margin: 30px 0 15px;
}

/* Content Paragraphs */
.simple-post-content p {
  margin: 0 0 20px;
}

/* Content Images */
.simple-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}

/* Content Links */
.simple-post-content a {
  color: #00BFA5;
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 191, 165, 0.3);
}

.simple-post-content a:hover {
  color: #009485;
  border-bottom-color: #009485;
}

/* Mobile */
@media (max-width: 768px) {
  .simple-post-title {
    font-size: 32px;
  }
  
  .simple-post-content {
    font-size: 16px;
  }
  
  .simple-post-content h2 {
    font-size: 28px;
  }
  
  .simple-post-content h3 {
    font-size: 22px;
  }
}


/* ========================================
   COMMENTS SECTION
   ======================================== */

.comments-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.comments-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2D1B69;
  margin: 0 0 30px;
}

#comments-container {
  /* Your comment system styles will go here */
}


/* ========================================
   NEWSLETTER CTA SECTION
   ======================================== */

.newsletter-cta-section {
  background: linear-gradient(135deg, #00BFA5 0%, #009485 100%);
  padding: 80px 20px;
  margin-top: 80px;
}

.newsletter-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.newsletter-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin: 0 0 15px;
}

.newsletter-description {
  font-size: 18px;
  line-height: 1.6;
  color: white;
  opacity: 0.95;
  margin: 0 0 30px;
  font-family: 'Inter', sans-serif;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 15px;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid white;
  border-radius: 50px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  background: white;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-submit {
  padding: 15px 35px;
  background: #F2A900;
  color: #2D1B69;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: #2D1B69;
  color: #F2A900;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.newsletter-privacy {
  font-size: 13px;
  color: white;
  opacity: 0.8;
  margin: 0;
  font-family: 'Inter', sans-serif;
}


/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
  .post-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .post-sidebar {
    display: none; /* Hide sidebar on tablet/mobile */
  }
  
  .share-mobile {
    display: block;
  }
  
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .post-hero {
    padding: 80px 0 40px;
  }
  
  .post-title {
    font-size: 36px;
  }
  
  .post-meta {
    gap: 20px;
    font-size: 14px;
  }
  
  .featured-image-container {
    margin: -30px auto 40px;
  }
  
  .post-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
  }
  
  .post-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
  }
  
  .post-content p,
  .post-content li {
    font-size: 16px;
  }
  
  .post-intro {
    font-size: 18px;
  }
  
  .pull-quote blockquote {
    font-size: 20px;
  }
  
  .image-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .author-bio-full {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-heading {
    font-size: 32px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .post-hero {
    padding: 60px 0 30px;
  }
  
  .post-title {
    font-size: 28px;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .post-content h2 {
    font-size: 28px;
  }
  
  .post-content h3 {
    font-size: 22px;
  }
  
  .pull-quote {
    padding: 25px;
  }
  
  .pull-quote blockquote {
    font-size: 18px;
  }
  
  .info-box {
    flex-direction: column;
    gap: 15px;
  }
  
  .code-block pre {
    padding: 20px 15px;
  }
  
  .content-cta {
    padding: 30px 20px;
  }
  
  .content-cta h3 {
    font-size: 24px;
  }
  
  .related-heading {
    font-size: 32px;
  }
  
  .newsletter-heading {
    font-size: 28px;
  }
}


/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: #C41E7A;
  color: white;
}

::-moz-selection {
  background: #C41E7A;
  color: white;
}


/* ========================================
   PRINT STYLES (Bonus)
   ======================================== */

@media print {
  .post-sidebar,
  .share-mobile,
  .breadcrumb,
  .newsletter-cta-section,
  .related-posts-section,
  .comments-section {
    display: none !important;
  }
  
  .post-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .post-content {
    max-width: 100%;
  }
  
  .post-hero {
    background: white;
    padding: 20px 0;
  }
  
  .post-title,
  .post-meta,
  .post-content h2,
  .post-content h3,
  .post-content p {
    color: black;
  }
}/* End custom CSS */