/* ============================================
   PREMIUM ENHANCEMENTS
   Organic Urban — Stunning Features
   ============================================ */

/* Product Tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--border-soft);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-sans);
}

.tab-btn:hover {
  border-color: var(--accent-sage);
  color: var(--accent-sage);
}

.tab-btn.active {
  background: var(--accent-sage);
  border-color: var(--accent-sage);
  color: var(--white);
}

.product-carousel-container {
  position: relative;
  overflow: hidden;
}

.product-carousel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.product-carousel.active {
  display: block;
}

/* Testimonials Carousel */
.testimonials-section {
  background: #FAF9F6;
  padding: 56px 24px;
}

.testimonials-section .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

.testimonials-section .section-label {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7A9A7A;
  margin-bottom: 16px;
  font-weight: 400;
  font-family: var(--font-sans);
  text-align: center;
}

.testimonials-section .section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 600;
  color: #2E2A26;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Testimonials Header with Stats */
.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
  width: 100%;
}

.testimonials-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.stats-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stars-display {
  display: flex;
  gap: 4px;
}

.rating-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark, #2E2A26);
}

.stats-count {
  font-size: 0.9375rem;
  color: var(--text-muted, #6B645E);
}

.testimonials-title-area h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text-dark, #2E2A26);
  margin-bottom: 12px;
}

.testimonials-title-area p {
  font-size: 1.0625rem;
  color: var(--text-muted, #6B645E);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-section {
  padding: 56px var(--spacing-md);
  background: linear-gradient(to bottom, var(--bg-light), rgba(247, 245, 242, 0.5));
}

.testimonials-section .section-intro {
  font-size: 1.1rem;
  color: #6B645E;
  font-family: var(--font-sans);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: visible;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  width: 100%;
  justify-content: center;
}

/* Base testimonial card - for carousel (one at a time) */
.testimonial-card {
  background: var(--white, #fff);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  display: none;
  /* Hidden by default for carousel */
  box-sizing: border-box;
  overflow: visible;
}

.testimonial-card.active {
  display: block;
}

/* Grid layout - show all cards (not carousel) */
/* Desktop: 3 cards per row, fixed container, equal cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.testimonials-grid .testimonial-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  padding: 20px 22px;
  margin: 0;
  background: var(--white, #fff);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

/* Tablet: 2 cards per row */
@media (max-width: 1024px) and (min-width: 769px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {

  /* Mobile: horizontal scroll carousel, compact cards */
  .testimonials-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 8px 0 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: none;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonials-grid .testimonial-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 82%;
    min-width: 82%;
    max-width: 82%;
    scroll-snap-align: start;
    padding: 18px 20px;
    margin: 0;
  }
}

/* Verified Purchase Badge - Subtle Update */
.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  /* Tighter gap */
  padding: 4px 10px;
  /* Smaller padding */
  background: rgba(122, 154, 122, 0.08);
  /* More transparent/subtle */
  border-radius: 99px;
  /* Pill shape */
  font-size: 0.75rem;
  /* Smaller font */
  color: #8CA88C;
  /* Muted sage */
  font-weight: 500;
  margin-bottom: 16px;
  margin-top: 0;
  align-self: flex-start;
  /* Align left */
  border: 1px solid rgba(122, 154, 122, 0.15);
  /* Subtle border definition */
}

.testimonial-verified svg {
  color: #8CA88C;
  width: 12px;
  height: 12px;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
  /* Tighter stars */
  margin-bottom: 8px;
  /* Space between stars and badge */
  margin-top: 0;
}

.testimonial-rating svg {
  width: 14px;
  /* Slightly smaller stars */
  height: 14px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  /* Serif font */
  font-size: 1.25rem;
  /* Larger text */
  line-height: 1.6;
  /* Relaxed line height */
  color: #2E2A26;
  margin-bottom: 20px;
  margin-top: 8px;
  /* Space from badge */
  font-weight: 500;
  font-style: normal;
  padding-left: 0;
  flex: 1;
}

/* Simple Customer Info (New Layout) */
.testimonial-info-simple {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  /* Very subtle separator */
  padding-top: 12px;
}

.testimonial-name-simple {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  /* Smaller name */
  font-weight: 600;
  color: #6B645E;
  /* Muted warm grey */
  text-transform: capitalize;
}

.testimonial-product-simple {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #9A938A;
  /* Very muted */
}

.testimonial-customer-section {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex: 1;
}

.testimonial-customer-initial {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #C85C5C;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F8E8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author-info strong {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #2E2A26;
  margin-bottom: 0;
}

.testimonial-location {
  font-size: 0.875rem;
  color: #9A938A;
  font-family: var(--font-sans);
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 400;
}

.testimonial-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}

.testimonial-purchased-label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9A938A;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.4;
}

.testimonial-product-name {
  font-size: 0.95rem;
  color: #7A9A7A;
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.4;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(229, 224, 216, 0.6);
  background: rgba(255, 255, 255, 0.8);
  color: #7A9A7A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  border-color: #7A9A7A;
  color: #7A9A7A;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(122, 154, 122, 0.15);
  transform: translateY(-1px);
}

.testimonial-prev:active,
.testimonial-next:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(122, 154, 122, 0.1);
}

.testimonial-prev svg,
.testimonial-next svg {
  width: 20px;
  height: 20px;
}

.testimonials-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

/* Ultra-minimal and elegant testimonial dots */
.testimonial-dot {
  width: 3px !important;
  height: 3px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(229, 224, 216, 0.4) !important;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
}

.testimonial-dot:hover {
  opacity: 1;
  background: rgba(122, 154, 122, 0.3) !important;
}

.testimonial-dot.active {
  width: 3px !important;
  height: 3px !important;
  border-radius: 50% !important;
  background: #7A9A7A !important;
  border: none !important;
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 16px;
    overflow: hidden;
  }

  .testimonials-section .section-header {
    margin-bottom: 40px;
  }

  .testimonials-section .section-header h2 {
    font-size: 2rem;
  }

  .testimonials-carousel {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
  }

  .testimonials-track {
    width: 100%;
  }

  /* Carousel-only card styles (not grid) */
  .testimonials-carousel .testimonial-card {
    padding: 36px 24px;
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .testimonial-quote-icon {
    top: -15px;
    left: 24px;
  }

  .quote-circle {
    width: 60px;
    height: 60px;
  }

  .quote-mark {
    font-size: 36px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .testimonial-footer {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-customer-section {
    width: 100%;
  }

  .testimonial-customer-initial {
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
  }

  .testimonial-author-info strong {
    font-size: 0.95rem;
  }

  .testimonial-location {
    font-size: 0.85rem;
  }

  .testimonial-product-info {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-top: 8px;
  }

  .testimonial-customer-initial {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
  }

  .testimonial-author-info strong {
    font-size: 0.95rem;
  }

  .testimonial-location {
    font-size: 0.85rem;
  }

  .testimonial-rating {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .testimonial-footer {
    flex-direction: column;
    gap: 8px;
  }

  .testimonial-product-info {
    align-items: flex-start;
    text-align: left;
  }

  .testimonials-controls {
    margin-top: 32px;
    gap: 12px;
  }

  .testimonial-prev,
  .testimonial-next {
    width: 36px;
    height: 36px;
  }

  .testimonial-prev svg,
  .testimonial-next svg {
    width: 18px;
    height: 18px;
  }

  .testimonials-dots {
    gap: 5px;
    padding: 6px 0;
  }
}

/* Where to Buy */
.where-to-buy {
  padding: var(--spacing-2xl) var(--spacing-md);
  background: var(--white);
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.marketplace-card {
  background: var(--bg-cream);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.marketplace-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-sage);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.marketplace-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #E8F5E9;
  color: #2d5016;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.marketplace-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.marketplace-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.marketplace-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Instagram Section */
.instagram-section {
  padding: var(--spacing-2xl) var(--spacing-md);
  background: var(--bg-soft);
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.instagram-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.instagram-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(188, 24, 136, 0.3);
}

/* ============================================
   BACK TO TOP BUTTON - DISABLED
   Per floating UI policy: AI Assistant is the ONLY floating element
   ============================================ */
.back-to-top,
.back-to-top.visible {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: var(--white);
  color: var(--text-dark);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  max-width: 300px;
  border-left: 4px solid var(--accent-sage);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  border-left-color: #10b981;
}

.toast-error {
  border-left-color: #ef4444;
}

.toast-info {
  border-left-color: #3b82f6;
}

/* Fade In Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-track {
    gap: 1rem;
  }

  /* Carousel cards only */
  .testimonials-carousel .testimonial-card {
    min-width: 280px;
  }

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

  /* Back to top - at bottom-right corner on mobile */
  .back-to-top {
    bottom: 1rem !important;
    right: 1rem !important;
    left: auto !important;
    width: 44px !important;
    height: 44px !important;
  }
}

/* ============================================
   BLOG SECTION
   ============================================ */

/* Blog Section - MOVED TO responsive.css for mobile-first architecture */
/* Keeping for reference:
.blog-section { background: var(--white); padding: 100px 20px; }
.blog-section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; gap: 24px; }
.blog-header-left { flex: 1; }
.blog-section .section-label { font-size: 0.875rem; letter-spacing: 0.15em; text-transform: uppercase; color: #7A9A7A; margin-bottom: 16px; font-weight: 400; font-family: var(--font-sans); }
.blog-section-header h2 { font-family: var(--font-serif); font-size: 2.75rem; font-weight: 600; color: #2E2A26; letter-spacing: -0.02em; margin: 0; }
.blog-header-right { flex-shrink: 0; }
.blog-view-all { font-size: 0.95rem; color: #2E2A26; text-decoration: none; font-family: var(--font-sans); font-weight: 500; transition: color 0.3s ease; }
.blog-view-all:hover { color: #7A9A7A; }
.blog-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1400px; margin: 0 auto; }
.blog-card { background: var(--white); border-radius: 20px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }
*/

/* Blog card image container: web = full 4/3, mobile = full square 1/1 */
.blog-card-image {
  width: 100%;
  position: relative;
  display: block;
  padding: 20px;
  border-radius: 16px 16px 0 0;
  text-decoration: none;
  overflow: hidden;
  aspect-ratio: 4/3;
}

/* With actual img: container has aspect-ratio, img fills */
a.blog-card-image.blog-card-image--with-img {
  padding: 0;
  display: block;
}

.blog-card-image--with-img {
  aspect-ratio: 4/3;
}

.blog-card-image--with-img .blog-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a.blog-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
  z-index: 1;
  transition: background 0.3s ease;
  pointer-events: none;
}

.blog-card:hover a.blog-card-image::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 55%);
}

.blog-category-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark, #1E1919);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
}

.blog-icon-wrapper {
  display: flex;
  align-items: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.blog-card-image svg {
  opacity: 0.7;
}

/* Fallback when no image: keep fixed height for icon layout */
.blog-card-image:not(.blog-card-image--with-img) {
  height: 220px;
  aspect-ratio: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
}

/* ============================================
   BLOG CARD PREMIUM STYLING (homepage)
   ============================================ */
.blog-section .blog-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-section .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(122, 154, 122, 0.15);
}

.blog-section .blog-card-content {
  padding: 28px 26px 30px;
}

.blog-section .blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.blog-section .blog-meta-separator {
  opacity: 0.5;
}

.blog-section .blog-read-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-section .blog-read-time svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.blog-section .blog-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 12px 0;
}

.blog-section .blog-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-section .blog-card:hover .blog-title a {
  color: var(--accent-sage);
}

.blog-section .blog-excerpt {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-section .blog-read-more {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-sage);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.blog-section .blog-read-more:hover {
  color: var(--accent-sage-dark);
}

/* Mobile: single card, full square image */
@media (max-width: 767px) {
  .blog-section .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blog-card-image--with-img {
    aspect-ratio: 1/1;
    height: auto;
  }

  .blog-section .blog-card-content {
    padding: 24px 22px 26px;
  }

  .blog-section .blog-title {
    font-size: 1.3rem;
  }

  .blog-section .blog-excerpt {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }
}

/* Blog card styles - MOVED TO responsive.css for mobile-first architecture */
/* Media query also moved to responsive.css */