@charset "UTF-8";
/* ===================================
   BLOG PAGE SPECIFIC STYLES
   =================================== */
/* Blog Hero Section */
.blog-hero {
  background: linear-gradient(135deg, #1a4d7c 0%, #2a5f8f 100%);
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: gradientFlow 20s ease-in-out infinite;
  background-size: 200% 200%;
}

/* Animated color transitions for background - more dynamic and uneven */
@keyframes gradientFlow {
  0% {
    background: linear-gradient(135deg, #1a4d7c 0%, #2a5f8f 50%, #1c5080 100%);
    background-position: 0% 50%;
  }
  15% {
    background: linear-gradient(220deg, #0f3a5f 0%, #2a5f8f 40%, #143d66 100%);
    background-position: 25% 75%;
  }
  30% {
    background: linear-gradient(45deg, #1c5080 0%, #0d2f4a 60%, #2a5f8f 100%);
    background-position: 75% 25%;
  }
  45% {
    background: linear-gradient(180deg, #163e6b 0%, #1a4d7c 30%, #0a2540 100%);
    background-position: 50% 100%;
  }
  60% {
    background: linear-gradient(315deg, #0d2f4a 0%, #2a5f8f 45%, #1a4d7c 100%);
    background-position: 100% 50%;
  }
  75% {
    background: linear-gradient(90deg, #2a5f8f 0%, #0f3a5f 55%, #1c5080 100%);
    background-position: 25% 0%;
  }
  100% {
    background: linear-gradient(135deg, #1a4d7c 0%, #2a5f8f 50%, #1c5080 100%);
    background-position: 0% 50%;
  }
}
/* Subtle floating light effect */
.blog-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  animation: floatLight 12s ease-in-out infinite;
}

@keyframes floatLight {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-30px);
    opacity: 0.7;
  }
}
.article-lead h2.lead-title {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* Network Nodes Visualization */
.network-nodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Individual node styling - will be added via JavaScript */
.network-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.4);
  animation: nodePulse 2s ease-in-out infinite;
  /* transition removed - conflicts with JS animation */
}

.network-node::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: nodeRipple 2s ease-out infinite;
}

@keyframes nodePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 0 0 20px rgb(255, 255, 255), 0 0 40px rgba(255, 255, 255, 0.6);
  }
}
@keyframes nodeRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
/* Connection lines between nodes */
.network-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform-origin: left center;
  pointer-events: none;
  animation: lineFlow 3s ease-in-out infinite;
  transition: all 0.5s ease;
}

@keyframes lineFlow {
  0%, 100% {
    opacity: 0.2;
    filter: brightness(1);
  }
  50% {
    opacity: 0.8;
    filter: brightness(1.5);
  }
}
.blog-hero h1 {
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -1px;
}

.blog-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Featured Post Section */
.featured-post-section {
  padding: 0px 20px;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 50px;
  font-weight: 700;
}

.featured-post {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.featured-post-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 17/7; /* Accommodates 1700x700 images perfectly */
  min-height: 300px;
  max-height: 500px;
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}

.featured-post:hover .featured-post-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff6b35;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.featured-post-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.post-category {
  background: #e3f2fd;
  color: #1a4d7c;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-date {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.featured-post-content h3 {
  font-size: 2rem;
  color: #1a4d7c;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.featured-post-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.read-more-btn {
  display: inline-block;
  background: #1a4d7c;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.read-more-btn:hover {
  background: #2a5f8f;
  transform: translateX(5px);
}

/* Filter Section */
.filter-section {
  padding: 60px 20px 40px;
  background: #ffffff;
}

.filter-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #f0f0f0;
  border: 2px solid transparent;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #e3f2fd;
  color: #1a4d7c;
}

.filter-btn.active {
  background: #1a4d7c;
  color: #ffffff;
  border-color: #1a4d7c;
}

/* Blog Grid Section */
.blog-grid-section {
  padding: 40px 20px 80px;
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}

/* Flexible image handling for various sizes */
.blog-card-image img {
  /* This ensures images of various sizes (including 1700x700) fit properly */
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-content h3 {
  font-size: 1.4rem;
  color: #1a4d7c;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.blog-card-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more-link {
  color: #1a4d7c;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.read-more-link:hover {
  color: #ff6b35;
  transform: translateX(5px);
}

/* Load More Button */
.load-more-container {
  text-align: center;
  margin-top: 20px;
}

.load-more-btn {
  background: #1a4d7c;
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: #2a5f8f;
  transform: scale(1.05);
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #1a4d7c 0%, #2a5f8f 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.newsletter-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.newsletter-btn {
  background: #fc4f10;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #ff5722;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .blog-hero {
    padding: 100px 20px 60px;
  }
  .blog-hero h1 {
    font-family: "Inter", sans-serif; /* ← ADD THIS LINE */
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
  }
  .blog-hero p {
    font-size: 1.1rem;
  }
  .featured-post-image {
    min-height: 250px;
    max-height: 350px;
  }
  .featured-post-content {
    padding: 30px;
  }
  .featured-post-content h3 {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .filter-controls {
    gap: 10px;
  }
  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-content h2 {
    font-size: 2rem;
  }
  .newsletter-content p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .blog-hero h1 {
    font-size: 5.5rem;
  }
  .blog-hero p {
    font-size: 1rem;
  }
  .featured-post-content h3 {
    font-size: 1.4rem;
  }
  .blog-card-content {
    padding: 20px;
  }
  .blog-card-content h3 {
    font-size: 1.2rem;
  }
}
/* Hidden class for filtering */
.blog-card.hidden {
  display: none;
}

/* Animation for filtered cards */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-card {
  animation: fadeIn 0.5s ease forwards;
}

.blog-grid-section {
  display: none;
}

/* ===================================
   BLOG ARTICLE PAGE STYLES
   =================================== */
/* Navbar fixes for blog articles */
.page-blog-article .navbar .logo,
.page-blog-article .navbar img.logo {
  height: 60px;
  max-width: 200px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Footer fixes for blog articles */
.page-blog-article .footer-modern .social-icons a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Article-specific page wrapper */
.page-blog-article {
  background-color: #f8f9fa;
}

/* Article Header */
.article-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 2rem 0 3rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #00d9ff;
}

.separator {
  color: rgba(255, 255, 255, 0.5);
}

.article-meta-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.category-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  background-color: #00d9ff;
  color: #1a1a2e;
}

.publish-date,
.read-time {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.article-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 1.5rem 0;
  font-weight: 700;
}

.article-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
  background-color: white;
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.author-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.share-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #00d9ff;
}

/* Featured Image */
.article-featured-image {
  max-width: 1400px;
  margin: -2rem auto 3rem;
  padding: 0 1rem;
}

.article-featured-image img {
  width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Article Content Layout */
.article-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.article-content .container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}

/* Main Article Body */
.article-body {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  max-width: 100%;
  min-width: 0;
}

.article-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
}

.article-body h2 {
  font-size: 1.8rem;
  color: #1a1a2e;
  margin: 2.5rem 0 1.5rem;
  font-weight: 700;
}

.article-body h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.article-body h4 {
  font-size: 1.1rem;
  color: #34495e;
  margin: 1.5rem 0 0.8rem;
  font-weight: 600;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.article-body ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.article-body ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

.article-body ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #00d9ff;
  font-weight: bold;
}

.article-body strong {
  color: #1a1a2e;
  font-weight: 600;
}

/* Callout Boxes */
.callout-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2.5rem 0;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.callout-box h3 {
  color: white !important;
  margin-top: 0 !important;
  font-size: 1.4rem !important;
}

.callout-box p {
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 0;
}

/* Highlight Stats */
.highlight-stat {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 12px;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* Strategy List */
.strategy-list {
  margin: 2rem 0;
}

.strategy-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #00d9ff;
}

.strategy-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00d9ff, #0099cc);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.strategy-content h4 {
  margin-top: 0;
  color: #1a1a2e;
}

.strategy-content p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Conclusion Box */
.conclusion-box {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  padding: 2rem;
  border-radius: 12px;
  margin: 2.5rem 0;
  color: #1a1a2e;
}

.conclusion-box p {
  color: #1a1a2e !important;
  margin-bottom: 1rem;
}

.conclusion-box strong {
  color: #0d0d0d;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 2rem;
  height: -moz-fit-content;
  height: fit-content;
}

.sidebar-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1.1rem;
  color: #1a1a2e;
  margin-top: 0;
  margin-bottom: 1rem;
}

.table-of-contents {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.table-of-contents a {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  transition: all 0.3s;
}

.table-of-contents a:hover {
  color: #00d9ff;
  border-left-color: #00d9ff;
}

.cta-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.cta-card h3 {
  color: white !important;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.sidebar-cta-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background-color: #00d9ff;
  color: #1a1a2e;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 1rem;
}

.sidebar-cta-btn:hover {
  background-color: #00b8d4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}

.share-buttons {
  display: flex;
  gap: 1rem;
}

.share-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all 0.3s;
}

.share-link img {
  width: 20px;
  height: 20px;
}

.share-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Related Articles */
.related-articles {
  background: white;
  padding: 4rem 0;
}

/* Ensure navbar and footer span full width but content is centered */
.page-blog-article .navbar,
.page-blog-article .footer-modern {
  width: 100%;
  max-width: 100%;
}

/* Keep navbar CONTENT centered with max-width */
.page-blog-article .navbar .container {
  display: flex !important;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Keep footer CONTENT centered - DON'T change display property */
.page-blog-article .footer-modern .footer-content {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center; /* Ensure centered text */
}

@media (max-width: 900px) {
  .page-blog-article .navbar .container,
  .page-blog-article .footer-modern .footer-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.related-articles h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 3rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.related-content {
  padding: 1.5rem;
}

.related-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: #00d9ff;
  color: #1a1a2e;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.related-content h3 {
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.related-link {
  color: #00d9ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.related-link:hover {
  color: #0099cc;
}

/* ===================================
   RESPONSIVE - BLOG ARTICLES
   =================================== */
/* Desktop logo for blog articles - match global navbar */
.page-blog-article .navbar .logo,
.page-blog-article .navbar img.logo,
.page-blog-article .navbar a img.logo {
  height: 100px;
  max-width: 240px;
}

/* Tablets and smaller (≤900px) */
@media (max-width: 900px) {
  /* Navbar logo tablet fix */
  .page-blog-article .navbar .logo,
  .page-blog-article .navbar img.logo {
    height: 55px;
    max-width: 180px;
  }
  .page-blog-article .article-header {
    padding: 1.5rem 0 2rem;
  }
  .page-blog-article .article-title {
    font-size: 2rem;
  }
  .page-blog-article .author-avatar {
    width: 80px;
    height: 80px;
  }
  .page-blog-article .article-featured-image {
    margin: -1.5rem auto 2rem;
  }
  .page-blog-article .article-featured-image img {
    width: 60%;
    height: auto;
  }
  /* Stack sidebar below content */
  .page-blog-article .article-content .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .page-blog-article .article-sidebar {
    position: static;
    top: auto;
  }
  .page-blog-article .article-body {
    padding: 2rem;
  }
  .page-blog-article .article-body h2 {
    font-size: 1.6rem;
    margin: 2rem 0 1.2rem;
  }
  .page-blog-article .article-body h3 {
    font-size: 1.3rem;
  }
  .page-blog-article .strategy-item {
    gap: 1rem;
    padding: 1.25rem;
  }
  .page-blog-article .strategy-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .page-blog-article .related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .page-blog-article .related-articles {
    padding: 3rem 0;
  }
  .page-blog-article .related-articles h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
/* Mobile devices (≤600px) */
@media (max-width: 600px) {
  /* Navbar logo mobile fix */
  .page-blog-article .navbar .logo,
  .page-blog-article .navbar img.logo {
    height: 50px;
    max-width: 160px;
  }
  .page-blog-article .article-header {
    padding: 1rem 0 1.5rem;
  }
  .page-blog-article .article-title {
    font-size: 1.6rem;
    margin: 1rem 0;
  }
  .page-blog-article .breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  .page-blog-article .article-meta-header {
    gap: 1rem;
  }
  .page-blog-article .category-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }
  .page-blog-article .publish-date,
  .page-blog-article .read-time {
    font-size: 0.85rem;
  }
  .page-blog-article .author-avatar {
    width: 60px;
    height: 60px;
  }
  .page-blog-article .author-name {
    font-size: 1rem;
  }
  .page-blog-article .author-title {
    font-size: 0.85rem;
  }
  .page-blog-article .share-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  .page-blog-article .article-featured-image img {
    width: 100%;
  }
  .page-blog-article .article-content {
    padding: 0 0.5rem 3rem;
  }
  .page-blog-article .article-body {
    padding: 1.5rem;
    border-radius: 8px;
  }
  .page-blog-article .article-lead {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .page-blog-article .article-body h2 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
  }
  .page-blog-article .article-body h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
  }
  .page-blog-article .article-body h4 {
    font-size: 1.05rem;
  }
  .page-blog-article .article-body p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .page-blog-article .article-body ul li {
    padding-left: 1.5rem;
    font-size: 0.95rem;
  }
  .page-blog-article .callout-box {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  .page-blog-article .callout-box h3 {
    font-size: 1.2rem !important;
  }
  .page-blog-article .callout-box p {
    font-size: 0.95rem !important;
  }
  .page-blog-article .highlight-stat {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
  }
  .page-blog-article .stat-number {
    font-size: 2rem;
  }
  .page-blog-article .stat-label {
    font-size: 0.9rem;
  }
  .page-blog-article .strategy-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .page-blog-article .strategy-number {
    align-self: flex-start;
  }
  .page-blog-article .strategy-content h4 {
    font-size: 1.05rem;
  }
  .page-blog-article .strategy-content p {
    font-size: 0.95rem;
  }
  .page-blog-article .conclusion-box {
    padding: 1.25rem;
    margin: 1.5rem 0;
  }
  .page-blog-article .conclusion-box p {
    font-size: 0.95rem !important;
  }
  .page-blog-article .sidebar-card {
    padding: 1.25rem;
  }
  .page-blog-article .sidebar-card h3 {
    font-size: 1rem;
  }
  .page-blog-article .table-of-contents a {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 0.8rem;
  }
  .page-blog-article .related-articles {
    padding: 2rem 0;
  }
  .page-blog-article .related-articles h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .page-blog-article .related-card img {
    height: 180px;
  }
  .page-blog-article .related-content {
    padding: 1.25rem;
  }
  .page-blog-article .related-content h3 {
    font-size: 1.1rem;
  }
  .page-blog-article .related-category {
    font-size: 0.75rem;
    padding: 0.25rem 0.7rem;
  }
}
.hidden-section {
  display: none;
}

/* Make list bullets (arrows) thicker and stronger */
.article-body ul li::before {
  content: "▸";
  position: absolute;
  left: -0.2em;
  top: -0.2em; /* Adjust this - try 0.15em, 0.2em, or 0.25em */
  font-weight: bold;
  font-size: 3em;
  color: #1a4d7c;
  line-height: 1;
}

/* Keep the no-bullet class working */
.article-body ul li.no-bullet::before {
  content: none;
}/*# sourceMappingURL=blog.css.map */