/* ============================================ */
/* 📝 BLOG PAGE STYLES                         */
/* ============================================ */

/* Blog Hero Section */
.blog-hero-section {
  background: linear-gradient(135deg, var(--bg-color-c) 0%, var(--text-color-b) 100%);
  padding: 180px 8% 100px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.blog-hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

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

.blog-hero-container h1 {
  font-family: var(--ff-1);
  font-size: 3.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bg-color-a);
  margin-bottom: 20px;
  line-height: 1.2;
}

.blog-hero-container p {
  font-family: var(--ff-2);
  font-size: 1.3rem;
  color: var(--bg-color-d);
  margin: 0;
}

/* Blog Posts Section */
.blog-posts-section {
  background-color: var(--bg-color-d);
  padding: 100px 8%;
  min-height: auto;
}

.blog-posts-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Blog Card */
.blog-card {
  background-color: var(--bg-color-a);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--bg-color-c), var(--text-color-b));
  color: var(--bg-color-a);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--ff-1);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

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

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-family: var(--ff-2);
  font-size: 0.85rem;
  color: var(--text-color-c);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  font-size: 0.9rem;
}

.blog-card-content h3 {
  font-family: var(--ff-1);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bg-color-c);
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: var(--text-color-b);
}

.blog-card-content p {
  font-family: var(--ff-2);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color-a);
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-1);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg-color-c);
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.blog-read-more i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: var(--text-color-b);
}

.blog-read-more:hover i {
  transform: translateX(5px);
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 80px;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-color-a);
  color: var(--bg-color-c);
  padding: 12px 25px;
  font-family: var(--ff-1);
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid var(--bg-color-c);
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(63, 59, 81, 0.2);
}

.pagination-btn:hover:not(.disabled) {
  background-color: var(--bg-color-c);
  color: var(--bg-color-a);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(63, 59, 81, 0.3);
}

.pagination-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-current {
  font-family: var(--ff-1);
  font-weight: 600;
  color: var(--text-color-a);
}

/* Newsletter Section */
.blog-newsletter-section {
  background: linear-gradient(135deg, var(--bg-color-b) 0%, var(--bg-color-a) 100%);
  padding: 100px 8%;
  text-align: center;
}

.blog-newsletter-container {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--bg-color-c), var(--text-color-b));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  box-shadow: 0 10px 30px rgba(63, 59, 81, 0.2);
}

.newsletter-icon i {
  font-size: 2.5rem;
  color: var(--bg-color-a);
}

.blog-newsletter-container h2 {
  font-family: var(--ff-1);
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bg-color-c);
  margin-bottom: 15px;
}

.blog-newsletter-container p {
  font-family: var(--ff-2);
  font-size: 1.05rem;
  color: var(--text-color-a);
  margin-bottom: 35px;
  line-height: 1.6;
}

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

.newsletter-form input {
  flex: 1;
  padding: 15px 25px;
  font-family: var(--ff-2);
  font-size: 1rem;
  border: 2px solid var(--bg-color-c);
  border-radius: 30px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--text-color-b);
  box-shadow: 0 0 0 3px rgba(136, 117, 97, 0.1);
}

.newsletter-form button {
  padding: 15px 35px;
  background: linear-gradient(135deg, var(--bg-color-c), var(--text-color-b));
  color: var(--bg-color-a);
  font-family: var(--ff-1);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(63, 59, 81, 0.3);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--text-color-a), var(--text-color-b));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(63, 59, 81, 0.4);
}

/* ============================================ */
/* 📄 SINGLE BLOG POST STYLES                  */
/* ============================================ */

/* Blog Post Header */
.blog-post-header {
  background: linear-gradient(135deg, var(--bg-color-d) 0%, var(--bg-color-b) 100%);
  padding: 180px 8% 80px 8%;
  text-align: center;
}

.blog-post-header-container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-post-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-2);
  font-size: 0.9rem;
  color: var(--text-color-c);
  margin-bottom: 25px;
}

.blog-post-breadcrumb a {
  color: var(--text-color-c);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-breadcrumb a:hover {
  color: var(--bg-color-c);
}

.blog-post-breadcrumb span:last-child {
  color: var(--bg-color-c);
  font-weight: 600;
}

.blog-post-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--bg-color-c), var(--text-color-b));
  color: var(--bg-color-a);
  padding: 8px 20px;
  border-radius: 25px;
  font-family: var(--ff-1);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.blog-post-header h1 {
  font-family: var(--ff-1);
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bg-color-c);
  line-height: 1.2;
  margin-bottom: 30px;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-2);
  font-size: 0.95rem;
  color: var(--text-color-a);
}

.meta-item i {
  font-size: 1rem;
  color: var(--bg-color-c);
}

/* Featured Image */
.blog-post-featured-image {
  background-color: var(--bg-color-d);
  padding: 0 8% 80px 8%;
}

.featured-image-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.featured-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blog Post Content Section */
.blog-post-content-section {
  background-color: var(--bg-color-b);
  padding: 80px 8%;
}

.blog-post-content-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Main Article Content */
.blog-post-article {
  background-color: var(--bg-color-a);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.blog-content-intro .lead {
  font-family: var(--ff-2);
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-color-a);
  margin-bottom: 40px;
  font-weight: 500;
}

.blog-post-article h2 {
  font-family: var(--ff-1);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bg-color-c);
  margin-top: 50px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-post-article h2:first-of-type {
  margin-top: 0;
}

.blog-post-article h3 {
  font-family: var(--ff-1);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text-color-b);
  margin-top: 35px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-post-article p {
  font-family: var(--ff-2);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color-a);
  margin-bottom: 20px;
}

.blog-post-article ul,
.blog-post-article ol {
  font-family: var(--ff-2);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color-a);
  margin-bottom: 25px;
  padding-left: 30px;
}

.blog-post-article li {
  margin-bottom: 10px;
}

.blog-post-article strong {
  color: var(--bg-color-c);
  font-weight: 600;
}

/* Blockquote */
.blog-blockquote {
  position: relative;
  background: linear-gradient(135deg, var(--bg-color-d) 0%, var(--bg-color-b) 100%);
  border-left: 5px solid var(--bg-color-c);
  padding: 40px 40px 40px 70px;
  margin: 40px 0;
  border-radius: 10px;
}

.blog-blockquote i {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 2rem;
  color: var(--bg-color-c);
  opacity: 0.3;
}

.blog-blockquote p {
  font-family: var(--ff-1);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 600;
  color: var(--bg-color-c);
  margin-bottom: 15px;
  line-height: 1.6;
}

.blog-blockquote cite {
  font-family: var(--ff-2);
  font-size: 1rem;
  font-style: normal;
  color: var(--text-color-a);
  font-weight: 600;
}

/* Call to Action Box */
.blog-cta-box {
  background: linear-gradient(135deg, var(--bg-color-c), var(--text-color-b));
  border-radius: 15px;
  padding: 40px;
  margin: 50px 0;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 30px;
}

.cta-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon i {
  font-size: 2.5rem;
  color: var(--bg-color-a);
}

.cta-content {
  flex-grow: 1;
  text-align: left;
}

.cta-content h3 {
  font-family: var(--ff-1);
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bg-color-a);
  margin: 0 0 10px 0;
}

.cta-content p {
  font-family: var(--ff-2);
  font-size: 1.05rem;
  color: var(--bg-color-d);
  margin: 0 0 20px 0;
}

.cta-button {
  display: inline-block;
  background-color: var(--bg-color-a);
  color: var(--bg-color-c);
  padding: 12px 30px;
  font-family: var(--ff-1);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: var(--bg-color-d);
  color: var(--bg-color-c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Sidebar */
.blog-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: var(--bg-color-a);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
  font-family: var(--ff-1);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bg-color-c);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--bg-color-d);
}

/* Author Widget */
.author-widget {
  text-align: center;
}

.author-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid var(--bg-color-d);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.author-widget h3 {
  border: none;
  padding: 0;
  margin-bottom: 5px;
}

.author-title {
  font-family: var(--ff-2);
  font-size: 0.9rem;
  color: var(--text-color-b);
  font-weight: 600;
  margin-bottom: 15px;
}

.author-bio {
  font-family: var(--ff-2);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color-a);
  margin-bottom: 20px;
}

.author-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--bg-color-c), var(--text-color-b));
  color: var(--bg-color-a);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(63, 59, 81, 0.3);
}

/* Categories Widget */
.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget li {
  margin-bottom: 12px;
}

.categories-widget a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-2);
  font-size: 0.95rem;
  color: var(--text-color-a);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.categories-widget a:hover {
  background-color: var(--bg-color-d);
  color: var(--bg-color-c);
  padding-left: 20px;
}

.categories-widget span {
  font-size: 0.85rem;
  color: var(--text-color-c);
  font-weight: 600;
}

/* Recent Posts Widget */
.recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bg-color-d);
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.recent-post-content {
  flex-grow: 1;
}

.recent-post-content a {
  font-family: var(--ff-1);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color-a);
  text-decoration: none;
  line-height: 1.4;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.recent-post-content a:hover {
  color: var(--bg-color-c);
}

.recent-post-date {
  font-family: var(--ff-2);
  font-size: 0.8rem;
  color: var(--text-color-c);
}

/* Newsletter Widget */
.newsletter-widget p {
  font-family: var(--ff-2);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color-a);
  margin-bottom: 20px;
}

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

.sidebar-newsletter-form input {
  padding: 12px 18px;
  font-family: var(--ff-2);
  font-size: 0.95rem;
  border: 2px solid var(--bg-color-d);
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}

.sidebar-newsletter-form input:focus {
  border-color: var(--bg-color-c);
}

.sidebar-newsletter-form button {
  padding: 12px;
  background: linear-gradient(135deg, var(--bg-color-c), var(--text-color-b));
  color: var(--bg-color-a);
  font-family: var(--ff-1);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-newsletter-form button:hover {
  background: linear-gradient(135deg, var(--text-color-a), var(--text-color-b));
  transform: translateY(-2px);
}

/* Blog Post Footer Section */
.blog-post-footer-section {
  background-color: var(--bg-color-d);
  padding: 60px 8%;
}

.blog-post-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Share Buttons */
.blog-share {
  text-align: center;
  margin-bottom: 50px;
}

.blog-share h3 {
  font-family: var(--ff-1);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bg-color-c);
  margin-bottom: 25px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  font-family: var(--ff-1);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg-color-a);
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.share-facebook {
  background-color: #1877f2;
}

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

.share-linkedin {
  background-color: #0a66c2;
}

.share-whatsapp {
  background-color: #25d366;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Post Navigation */
.blog-post-navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.nav-post {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--bg-color-a);
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.nav-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.nav-post i {
  font-size: 1.5rem;
  color: var(--bg-color-c);
}

.nav-post-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-label {
  font-family: var(--ff-2);
  font-size: 0.8rem;
  color: var(--text-color-c);
  text-transform: uppercase;
  font-weight: 600;
}

.nav-title {
  font-family: var(--ff-1);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color-a);
  transition: color 0.3s ease;
}

.nav-post:hover .nav-title {
  color: var(--bg-color-c);
}

.nav-prev {
  justify-self: start;
}

.nav-next {
  justify-self: end;
  flex-direction: row-reverse;
}

.nav-next .nav-post-content {
  align-items: flex-end;
  text-align: right;
}

.nav-all-posts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--bg-color-c), var(--text-color-b));
  color: var(--bg-color-a);
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(63, 59, 81, 0.2);
}

.nav-all-posts:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(63, 59, 81, 0.3);
}

.nav-all-posts i {
  font-size: 1.5rem;
}

.nav-all-posts span {
  font-family: var(--ff-1);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Related Posts Section */
.related-posts-section {
  background-color: var(--bg-color-b);
  padding: 80px 8%;
}

.related-posts-container {
  max-width: 1400px;
  margin: 0 auto;
}

.related-posts-container h2 {
  font-family: var(--ff-1);
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bg-color-c);
  text-align: center;
  margin-bottom: 50px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.related-post-card {
  background-color: var(--bg-color-a);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.related-post-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.related-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--bg-color-c), var(--text-color-b));
  color: var(--bg-color-a);
  padding: 5px 14px;
  border-radius: 15px;
  font-family: var(--ff-1);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.related-post-content {
  padding: 25px;
}

.related-post-content h3 {
  margin-bottom: 12px;
}

.related-post-content h3 a {
  font-family: var(--ff-1);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bg-color-c);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.related-post-content h3 a:hover {
  color: var(--text-color-b);
}

.related-post-content p {
  font-family: var(--ff-2);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-color-a);
  margin-bottom: 15px;
}

.related-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-1);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg-color-c);
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-read-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.related-read-more:hover {
  color: var(--text-color-b);
}

.related-read-more:hover i {
  transform: translateX(5px);
}

/* ============================================ */
/* 📱 RESPONSIVE - BLOG PAGES                  */
/* ============================================ */

/* 991px - Tablets/Small Laptops */
@media (max-width: 991px) {
  .blog-hero-section {
    padding: 160px 5% 80px 5%;
  }

  .blog-hero-container h1 {
    font-size: 3rem;
  }

  .blog-hero-container p {
    font-size: 1.15rem;
  }

  .blog-posts-section {
    padding: 80px 5%;
  }

  .blog-posts-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .blog-post-header {
    padding: 160px 5% 70px 5%;
  }

  .blog-post-header h1 {
    font-size: 2.5rem;
  }

  .blog-post-featured-image {
    padding: 0 5% 70px 5%;
  }

  .blog-post-content-section {
    padding: 70px 5%;
  }

  .blog-post-content-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-post-article {
    padding: 40px;
  }

  .blog-post-sidebar {
    order: -1;
  }

  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px - Tablets */
@media (max-width: 768px) {
  .blog-hero-section {
    padding: 140px 4% 70px 4%;
  }

  .blog-hero-container h1 {
    font-size: 2.5rem;
  }

  .blog-hero-container p {
    font-size: 1.1rem;
  }

  .blog-posts-section {
    padding: 70px 4%;
  }

  .blog-posts-container {
    gap: 30px;
  }

  .blog-card-content h3 {
    font-size: 1.3rem;
  }

  .blog-newsletter-section {
    padding: 80px 4%;
  }

  .blog-newsletter-container h2 {
    font-size: 2rem;
  }

  .blog-post-header {
    padding: 140px 4% 60px 4%;
  }

  .blog-post-header h1 {
    font-size: 2.2rem;
  }

  .blog-post-featured-image {
    padding: 0 4% 60px 4%;
  }

  .blog-post-content-section {
    padding: 60px 4%;
  }

  .blog-post-article {
    padding: 35px;
  }

  .blog-post-article h2 {
    font-size: 1.8rem;
  }

  .blog-post-article h3 {
    font-size: 1.3rem;
  }

  .blog-cta-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-content {
    text-align: center;
  }

  .blog-post-navigation {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .nav-all-posts {
    order: -1;
  }

  .related-posts-section {
    padding: 70px 4%;
  }

  .related-posts-container h2 {
    font-size: 2.2rem;
  }
}

/* 576px - Mobile */
@media (max-width: 576px) {
  .blog-hero-section {
    padding: 120px 3% 60px 3%;
  }

  .blog-hero-container h1 {
    font-size: 2rem;
  }

  .blog-hero-container p {
    font-size: 1rem;
  }

  .blog-posts-section {
    padding: 60px 3%;
  }

  .blog-posts-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blog-card-image {
    height: 220px;
  }

  .blog-card-content {
    padding: 25px;
  }

  .blog-card-content h3 {
    font-size: 1.2rem;
  }

  .blog-card-content p {
    font-size: 0.9rem;
  }

  .blog-pagination {
    flex-direction: column;
    gap: 15px;
    margin-top: 60px;
  }

  .pagination-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .blog-newsletter-section {
    padding: 70px 3%;
  }

  .newsletter-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }

  .newsletter-icon i {
    font-size: 2rem;
  }

  .blog-newsletter-container h2 {
    font-size: 1.8rem;
  }

  .blog-newsletter-container p {
    font-size: 0.95rem;
  }

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

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .blog-post-header {
    padding: 120px 3% 50px 3%;
  }

  .blog-post-header h1 {
    font-size: 1.8rem;
  }

  .blog-post-meta {
    gap: 15px;
  }

  .blog-post-featured-image {
    padding: 0 3% 50px 3%;
  }

  .blog-post-content-section {
    padding: 50px 3%;
  }

  .blog-post-article {
    padding: 25px;
  }

  .blog-post-article h2 {
    font-size: 1.6rem;
  }

  .blog-post-article h3 {
    font-size: 1.2rem;
  }

  .blog-post-article p,
  .blog-post-article ul,
  .blog-post-article ol {
    font-size: 0.95rem;
  }

  .blog-blockquote {
    padding: 30px 30px 30px 60px;
  }

  .blog-blockquote p {
    font-size: 1.1rem;
  }

  .blog-cta-box {
    padding: 30px;
  }

  .cta-icon {
    width: 70px;
    height: 70px;
  }

  .cta-icon i {
    font-size: 2rem;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .blog-post-footer-section {
    padding: 50px 3%;
  }

  .blog-share h3 {
    font-size: 1.3rem;
  }

  .share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .share-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .nav-post {
    flex-direction: column;
    text-align: center;
  }

  .nav-next .nav-post-content {
    align-items: center;
    text-align: center;
  }

  .related-posts-section {
    padding: 60px 3%;
  }

  .related-posts-container h2 {
    font-size: 2rem;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* 480px - Small Mobile */
@media (max-width: 480px) {
  .blog-hero-container h1 {
    font-size: 1.8rem;
  }

  .blog-card-content h3 {
    font-size: 1.1rem;
  }

  .blog-newsletter-container h2 {
    font-size: 1.6rem;
  }

  .blog-post-header h1 {
    font-size: 1.6rem;
  }

  .blog-post-article {
    padding: 20px;
  }

  .related-posts-container h2 {
    font-size: 1.8rem;
  }
}

/* 320px - Very Small Mobile */
@media (max-width: 320px) {
  .blog-hero-section {
    padding: 100px 2% 50px 2%;
  }

  .blog-hero-container h1 {
    font-size: 1.5rem;
  }

  .blog-hero-container p {
    font-size: 0.9rem;
  }

  .blog-posts-section {
    padding: 50px 2%;
  }

  .blog-card-content {
    padding: 20px;
  }

  .blog-card-content h3 {
    font-size: 1rem;
  }

  .blog-card-content p {
    font-size: 0.85rem;
  }

  .blog-newsletter-section {
    padding: 60px 2%;
  }

  .blog-newsletter-container h2 {
    font-size: 1.4rem;
  }

  .blog-post-header {
    padding: 100px 2% 40px 2%;
  }

  .blog-post-header h1 {
    font-size: 1.4rem;
  }

  .blog-post-featured-image {
    padding: 0 2% 40px 2%;
  }

  .blog-post-content-section {
    padding: 40px 2%;
  }

  .blog-post-article {
    padding: 18px;
  }

  .blog-post-article h2 {
    font-size: 1.4rem;
  }

  .blog-post-article h3 {
    font-size: 1.1rem;
  }

  .blog-post-footer-section {
    padding: 40px 2%;
  }

  .related-posts-section {
    padding: 50px 2%;
  }

  .related-posts-container h2 {
    font-size: 1.6rem;
  }
}

