/* ==========================================================================
   MTS CIGARS CO. - BLOG & KNOWLEDGE PAGE STYLES
   ========================================================================== */

/* Blog Card Styles */
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: #ffffff;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12) !important;
  border-color: var(--mts-gold) !important;
}

/* Image Wrappers */
.blog-img-wrapper {
  height: 280px;
  background: #14100c;
}

@media (max-width: 767.98px) {
  .blog-img-wrapper {
    height: 220px;
  }
}

.blog-featured-img {
  height: 100%;
  transition: transform 0.5s ease;
}

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

/* Single Article Styles */
.article-featured-image-wrapper {
  max-height: 480px;
  background: #14100c;
}

.article-main-img {
  max-height: 480px;
  object-fit: cover;
  width: 100%;
}

.article-body {
  font-family: var(--font-sans);
}

.article-quote {
  position: relative;
  background: #120e0b;
}

.gold-icon-circle-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--mts-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* Circle Arrow Animation */
.circle-gold-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--mts-gold);
  color: #0c0a08;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hover-gold-link:hover .circle-gold-arrow {
  background-color: var(--mts-gold-hover);
  transform: translateX(3px);
}

.hover-gold:hover {
  color: var(--mts-gold) !important;
}

.max-w-700 {
  max-width: 700px;
}

.max-w-600 {
  max-width: 600px;
}

.max-w-900 {
  max-width: 900px;
}
