/* ======== Blog Listing Page ======== */

/* ====== Blog Listing Hero Section ====== */
.blog-listing-hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #007f80 100%);
  color: white;
  padding: 4rem 1.5rem;
  margin-top: 87px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-listing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

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

.blog-listing-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.blog-listing-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-listing-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.blog-listing-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #007f80;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====== Blog Listing Container ====== */
.blog-listing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.blog-listing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-listing-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.blog-listing-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ====== Blog Grid ====== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-grid-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

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

.blog-grid-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.blog-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 127, 128, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-grid-card:hover .blog-grid-overlay {
  opacity: 1;
}

.read-more-btn {
  background: white;
  color: #007f80;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #007f80;
  color: white;
  transform: scale(1.05);
}

.blog-grid-content {
  padding: 1.5rem;
}

.blog-grid-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.blog-grid-date {
  color: #666;
  font-weight: 500;
}

.blog-grid-category {
  background: #f0f8f8;
  color: #007f80;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-weight: 500;
  font-size: 0.8rem;
}

.blog-grid-title {
  margin-bottom: 1rem;
}

.blog-grid-title a {
  color: #222;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-grid-title a:hover {
  color: #007f80;
}

.blog-grid-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.blog-grid-link {
  color: #007f80;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.blog-grid-link:hover {
  color: #005f60;
  gap: 0.75rem;
}

.blog-grid-link .arrow {
  transition: transform 0.3s ease;
}

.blog-grid-link:hover .arrow {
  transform: translateX(3px);
}

.tldr-box {
  background: #f9fafb; /* light gray background */
  border-left: 5px solid #1e40af; /* brand accent color */
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tldr-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tldr-box span {
  font-weight: 700;
  color: #1e40af; /* brand blue */
  text-transform: uppercase;
  margin-right: 0.25rem;
}
/* ====== Blog Listing Footer ====== */
.blog-listing-footer {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid #f0f0f0;
  margin-top: 2rem;
}

.blog-cta {
  max-width: 600px;
  margin: 0 auto;
}

.blog-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.blog-cta p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: #007f80;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 127, 128, 0.3);
}

.cta-button:hover {
  background: #005f60;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 127, 128, 0.4);
}

/* ====== Legacy Blog Card Styles (for individual blog posts) ====== */
.blog-card {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 300px;
  height: auto;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card-content a{
    color: #007f80;
}

.blog-card h2 {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  color: #007f80;
}

.blog-card .blog-date {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 1rem;
}

.blog-card .excerpt {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.blog-card .read-more {
  align-self: flex-start;
  padding: 0.5rem 1.25rem;
  background-color: #007f80;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.blog-card a.read-more:hover {
  background-color: #005f60;
}

/* ========== NEW ENGAGING BLOG HEADER ========== */

.blog-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 87px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #007f80 100%);
}

.blog-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.blog-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.blog-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-hero-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Logo and Branding */
.blog-branding {
  text-align: center;
  margin-bottom: 1rem;
}

.blog-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.blog-logo:hover {
  transform: scale(1.05);
}

.brand-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007f80, #fff);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb Navigation */
.blog-breadcrumb {
  margin-bottom: 2rem;
}

.blog-breadcrumb ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.blog-breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
}

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

.blog-breadcrumb a:hover {
  color: #fff;
}

.blog-breadcrumb li[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

/* Main Hero Content */
.blog-hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.blog-hero-text {
  text-align: left;
}

/* Category Badge */
.blog-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.category-icon {
  font-size: 1.1rem;
}

.category-text {
  color: #fff;
}

/* Blog Title */
.blog-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Blog Excerpt */
.blog-excerpt {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Meta Information */
.blog-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.meta-item i {
  color: #007f80;
  font-size: 1.1rem;
}

/* Call to Action */
.blog-cta {
  text-align: left;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #007f80, #005f60);
  color: #fff !important;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 127, 128, 0.3);
  border: 2px solid transparent;
}

.cta-button a {
    color: white;
}

.cta-button:hover {
  background: linear-gradient(135deg, #005f60, #004d4d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 127, 128, 0.4);
  color: #fff;
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateY(2px);
}

/* Visual Elements with Thumbnail */
.blog-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-thumbnail-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumbnail-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.3s ease;
  background: #fff;
  padding: 8px;
}

.thumbnail-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-thumbnail {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 127, 128, 0.1), rgba(30, 60, 114, 0.1));
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thumbnail-frame:hover .thumbnail-overlay {
  opacity: 1;
}

.thumbnail-badge {
  background: rgba(0, 127, 128, 0.9);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

/* Floating Elements Around Thumbnail */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
  top: 10%;
  left: 5%;
}

.floating-icon:nth-child(2) {
  top: 20%;
  right: 10%;
}

.floating-icon:nth-child(3) {
  bottom: 20%;
  left: 15%;
}

.floating-icon:nth-child(4) {
  bottom: 10%;
  right: 5%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Trust Indicators */
.blog-trust-indicators {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.trust-item i {
  color: #007f80;
  font-size: 1.2rem;
}

/* Content Section */
.blog-content-container {
  background: #fff;
  padding: 4rem 0;
}

.blog-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.blog-post {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #e9ecef;
}

.sidebar-widget h3 {
  color: #1d3557;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Recent Blog Posts */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.recent-post-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.recent-post-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: #007f80;
}

.recent-post-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.recent-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumbnail img {
  transform: scale(1.1);
}

.recent-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recent-post-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
}

.recent-post-content h4 a {
  color: #1d3557;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
  color: #007f80;
}

.recent-post-date {
  margin: 0;
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}

.view-all-posts {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #007f80;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  color: #005f60;
  transform: translateX(3px);
}

.view-all-link i {
  transition: transform 0.3s ease;
}

.view-all-link:hover i {
  transform: translateX(3px);
}

.related-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-services li {
  margin-bottom: 0.75rem;
}

.related-services a {
  color: #007f80;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.related-services a:hover {
  color: #005f60;
}

.sidebar-cta {
  display: inline-block;
  background: linear-gradient(135deg, #007f80, #005f60);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.sidebar-cta:hover {
  background: linear-gradient(135deg, #005f60, #004d4d);
  transform: translateY(-2px);
  color: #fff;
}

/* ========== Blog Post Content Styling ========== */

.blog-post h1 {
  font-size: 2.5rem;
  color: #1d3557;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.blog-post h2 {
  font-size: 1.8rem;
  color: #1d3557;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.blog-post h3 {
  font-size: 1.4rem;
  color: #2a5298;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-post p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.blog-post .lead {
  font-size: 1.3rem;
  color: #555;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.blog-post a {
  color: #007f80;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.blog-post a:hover {
  color: #005f60;
}

.blog-post .cta {
  text-align: center;
  margin: 3rem 0;
}

.blog-post .button {
  display: inline-block;
  background: linear-gradient(135deg, #007f80, #005f60);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 127, 128, 0.3);
}

.blog-post .button:hover {
  background: linear-gradient(135deg, #005f60, #004d4d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 127, 128, 0.4);
  color: #fff;
}

/* ========== Media / Visuals ========== */
.blog-post img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-post blockquote {
  border-left: 4px solid #007f80;
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  font-style: italic;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 0 8px 8px 0;
  color: #333;
}

/* ========== Responsive Design ========== */

@media (max-width: 1024px) {
  .blog-hero-main {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .blog-hero-text {
    text-align: center;
  }
  
  .blog-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .blog-title {
    font-size: 2.8rem;
  }
  
  /* Blog Listing Responsive */
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .blog-listing-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    min-height: auto;
    padding: 3rem 1rem;
  }
  
  .blog-logo {
    height: 60px;
  }
  
  .blog-title {
    font-size: 2.2rem;
  }
  
  .blog-excerpt {
    font-size: 1.1rem;
  }
  
  .blog-meta {
    justify-content: center;
    gap: 1rem;
  }
  
  .blog-trust-indicators {
    gap: 1rem;
  }
  
  .trust-item {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  
  .blog-content-wrapper {
    padding: 0 1rem;
  }
  
  .blog-post {
    padding: 1.5rem;
  }
  
  .blog-post h1 {
    font-size: 2rem;
  }
  
  .blog-post h2 {
    font-size: 1.5rem;
  }
  
  .blog-post p {
    font-size: 1rem;
  }
  
  .thumbnail-frame {
    transform: none;
  }
  
  .thumbnail-frame:hover {
    transform: scale(1.02);
  }
  
  /* Blog Listing Responsive */
  .blog-listing-hero {
    padding: 3rem 1rem;
  }
  
  .blog-listing-title {
    font-size: 2rem;
  }
  
  .blog-listing-subtitle {
    font-size: 1rem;
  }
  
  .blog-listing-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-grid-image {
    height: 200px;
  }
  
  .blog-listing-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .blog-title {
    font-size: 1.8rem;
  }
  
  .blog-excerpt {
    font-size: 1rem;
  }
  
  .blog-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .blog-trust-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .floating-elements {
    display: none;
  }
  
  .blog-logo {
    height: 50px;
  }
  
  /* Blog Listing Responsive */
  .blog-listing-hero {
    padding: 2rem 1rem;
  }
  
  .blog-listing-title {
    font-size: 1.8rem;
  }
  
  .blog-listing-subtitle {
    font-size: 0.9rem;
  }
  
  .blog-listing-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    flex-direction: row;
    gap: 0.5rem;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .blog-grid-image {
    height: 180px;
  }
  
  .blog-grid-content {
    padding: 1rem;
  }
  
  .blog-grid-title a {
    font-size: 1.1rem;
  }
  
  .blog-listing-header h2 {
    font-size: 1.8rem;
  }
  
  .blog-cta h3 {
    font-size: 1.5rem;
  }
}
