/* ==================================================
   BLOG & JOURNAL SPECIFIC STYLES
================================================== */
.blog-header-section {
  padding: 140px 0 35px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.5);
  margin-bottom: 12px;
}

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

.breadcrumb a:hover {
  color: #D4AF37;
}

.blog-header-section h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.blog-list-section {
  padding: 10px 0 120px;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .blog-cards-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: rgba(18, 18, 20, 0.75);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(229, 197, 137, 0.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 197, 137, 0.55);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.8), 0 0 28px rgba(212, 175, 55, 0.15);
}

.post-card-thumb {
  width: 100%;
  height: 220px;
  background: radial-gradient(circle at 50% 10%, rgba(229, 197, 137, 0.08), #09090a 85%);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-thumb img {
  transform: scale(1.04);
}

.post-card-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-date {
  font-size: 0.78rem;
  color: #dfba73;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.post-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.42;
  color: #ffffff;
  margin-bottom: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-read-more {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 980px;
  border: 1px solid rgba(229, 197, 137, 0.35);
  background: rgba(25, 24, 22, 0.6);
  color: #f7ebd0;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn-read-more:hover {
  background: linear-gradient(135deg, #f0d59b 0%, #c99e4f 100%);
  color: #0b0b0d;
  border-color: #f0d59b;
  box-shadow: 0 4px 18px rgba(201, 158, 79, 0.38);
}

.btn-read-more span {
  font-size: 1.05rem;
  line-height: 1;
  color: #dfba73;
  transition: transform 0.3s ease;
}

.btn-read-more:hover span {
  color: #0b0b0d;
  transform: translateX(3px);
}

/* ==================================================
   LOGO SIZE — matched exactly to home & product pages
================================================== */
.brand {
  height: 90px !important;
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
}

.brand img,
#nav-brand-logo {
  height: 100px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  mix-blend-mode: screen !important;
}

#footer-brand-logo {
  width: 180px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  mix-blend-mode: screen !important;
}
/* --- FORCE LARGER LOGO SIZE ON MOBILE --- */
    @media (max-width: 768px) {
      header, #navbar {
        height: 75px !important;
      }

      .brand {
        height: auto !important;
        min-width: unset !important;
      }

      .brand img,
      #nav-brand-logo {
        height: 56px !important;
        max-height: 56px !important;
        width: auto !important;
        max-width: 160px !important;
        object-fit: contain !important;
      }

      #footer-brand-logo {
        height: 80px !important;
        max-height: 80px !important;
        width: auto !important;
        object-fit: contain !important;
      }
    }