/* ============================================
   MHOT Automotive Tools - Custom Styles
   Slider / Carousel / Branding
   ============================================ */

/* ---- Slider / Carousel ---- */
/* Limit width + center + fixed height */
.slider-wrapper,
.carousel-container,
.v-carousel {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Carousel inner container */
.v-carousel .carousel-inner,
.slider-wrapper .slider-content {
  height: 450px !important;
  max-height: 450px !important;
  overflow: hidden;
}

/* Images fill height */
.v-carousel img,
.slider-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Fade transition style */
.v-carousel .carousel-inner {
  transition: opacity 0.6s ease-in-out !important;
}

/* Hide default arrows if too many */
.v-carousel .VueCarousel-navigation-button,
.v-carousel .carousel-control-prev,
.v-carousel .carousel-control-next {
  display: none !important;
}

/* Dots at bottom center */
.v-carousel .carousel-indicators,
.v-carousel .VueCarousel-dot-container {
  bottom: 16px !important;
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
/* ============================================
   MHOT Cookie Consent - EU/USA Privacy Compliant
   Professional overlay with backdrop blur
   ============================================ */

#mhot-cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 999998;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: mhotFadeIn 0.3s ease;
}

#mhot-cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
  background: #ffffff;
  color: #1a1a2e;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 680px;
  width: calc(100% - 32px);
  padding: 28px 32px;
  animation: mhotSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

#mhot-cookie-consent.hiding {
  animation: mhotSlideDown 0.3s ease forwards;
}

#mhot-cookie-consent .mhot-cookie-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

#mhot-cookie-consent .mhot-cookie-icon {
  width: 36px;
  height: 36px;
  background: #fef2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

#mhot-cookie-consent .mhot-cookie-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  letter-spacing: -0.01em;
}

#mhot-cookie-consent .mhot-cookie-body {
  color: #555;
  font-size: 13.5px;
  margin-bottom: 20px;
  padding-left: 48px;
}

#mhot-cookie-consent .mhot-cookie-body a {
  color: #e63946;
  text-decoration: underline;
  font-weight: 500;
}

#mhot-cookie-consent .mhot-cookie-body a:hover {
  color: #c1121f;
}

#mhot-cookie-consent .mhot-cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding-left: 48px;
}

#mhot-cookie-consent .mhot-btn-accept {
  background: #1a1a2e;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

#mhot-cookie-consent .mhot-btn-accept:hover {
  background: #e63946;
  transform: translateY(-1px);
}

#mhot-cookie-consent .mhot-btn-decline {
  background: transparent;
  color: #888;
  border: 1px solid #ddd;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

#mhot-cookie-consent .mhot-btn-decline:hover {
  border-color: #ccc;
  color: #555;
  background: #fafafa;
}

@keyframes mhotFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mhotSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes mhotSlideDown {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to { opacity: 0; transform: translateX(-50%) translateY(24px); }
}

@media (max-width: 640px) {
  #mhot-cookie-consent {
    bottom: 16px;
    padding: 20px 20px;
    max-width: calc(100% - 32px);
  }
  #mhot-cookie-consent .mhot-cookie-body,
  #mhot-cookie-consent .mhot-cookie-actions {
    padding-left: 0;
  }
  #mhot-cookie-consent .mhot-cookie-actions {
    flex-direction: column-reverse;
  }
  #mhot-cookie-consent .mhot-btn-accept,
  #mhot-cookie-consent .mhot-btn-decline {
    width: 100%;
    text-align: center;
  }
}


/* ===== 手机端 (768px以下) MHOT LOGO 向上移动 ===== */
/* 调整手机端顶部LOGO位置 */
/* 使用媒体查询 `max-width: 768px` 限定只影响手机 */
/* 选择器用header里lg:hidden（手机端专属）区域的logo链接 */
@media (max-width: 768px) {
    header [class*="lg:hidden"] a[href*="mhot.store"] {
        margin-top: -24px !important;
    }
    header [class*="lg:hidden"] a[href*="mhot.store"] img {
        margin-top: -16px !important;
    }
}
/* 调整方法：修改上面 margin-top 的负值即可
   -4px = 微上移，-8px = 中等，-12px = 较多，-16px = 大量 */

/* === 电脑端不受影响 === */
/* 电脑端header用的是lg:flex（>1024px显示），完全不在此媒体查询范围内 */


/* ===== 促销横幅 — MHOT 工业黄 #F5B800 ===== */
.mhot-offer h1 {
    background-color: #F5B800 !important;
    color: #C80000 !important;
    font-size: 14px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    letter-spacing: 2px !important;
}

/* ===== 促销横幅 — 质感深灰 + 金属拉丝分割线 ===== */
.mhot-offer {
    background: linear-gradient(135deg, #1a1a1e 0%, #2a2a2e 50%, #1a1a1e 100%);
    border-top: 1px solid rgba(245, 184, 0, 0.25);
    border-bottom: 1px solid rgba(245, 184, 0, 0.15);
    position: relative;
    overflow: hidden;
}
/* 微妙的斜纹纹理叠加 */
.mhot-offer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.015) 2px,
            rgba(255,255,255,0.015) 4px
        );
    pointer-events: none;
}
/* 左边金色竖条装饰 */
.mhot-offer::after {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(180deg, #F5B800, #D49400, #F5B800);
    border-radius: 0 2px 2px 0;
}
.mhot-offer h1 {
    color: rgba(255,255,255,0.92) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: 3px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    text-align: center !important;
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif !important;
    text-transform: uppercase !important;
    position: relative;
    z-index: 1;
    background: transparent !important;
}

/* 文字周围的装饰分隔符号 */
.mhot-offer h1::before {
    content: '◆' !important;
    display: inline-block !important;
    font-size: 6px !important;
    color: #F5B800 !important;
    margin-right: 14px !important;
    vertical-align: middle !important;
    opacity: 0.6;
}
.mhot-offer h1::after {
    content: '◆' !important;
    display: inline-block !important;
    font-size: 6px !important;
    color: #F5B800 !important;
    margin-left: 14px !important;
    vertical-align: middle !important;
    opacity: 0.6;
}

/* 手机端适配 */
@media (max-width: 768px) {
    .mhot-offer h1 {
        font-size: 10px !important;
        letter-spacing: 2px !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
    .mhot-offer h1::before,
    .mhot-offer h1::after {
        display: none !important;
    }
    .mhot-offer::before {
        background: none !important;
    }
}


/* ==================================================
   MHOT.STORE — 高级交互提升（纯CSS，不动布局）
   ================================================== */

/* --- 1. 所有可点击卡片微悬浮 + 阴影递进 --- */
.mhot-offer, 
.category-card,
.product-card,
.featured-products .card,
a[class*="card"] {
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.mhot-offer:hover,
.category-card:hover,
.product-card:hover,
.featured-products .card:hover,
a[class*="card"]:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04) !important;
}

/* --- 2. 轮播左右箭头的悬停放大 --- */
.carousel-next, .carousel-prev,
.slick-next, .slick-prev,
[class*="carousel"] button,
[class*="slider"] button {
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}
.carousel-next:hover, .carousel-prev:hover,
.slick-next:hover, .slick-prev:hover,
[class*="carousel"] button:hover,
[class*="slider"] button:hover {
    transform: scale(1.15) !important;
}

/* --- 3. 分类图片/产品图进入视口时的微妙淡入 --- */
.category-card img, .product-card img,
[class*="product"] img, [class*="category"] img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.4s ease !important;
}
.category-card img:hover, .product-card img:hover {
    transform: scale(1.03) !important;
}

/* --- 4. 导航链接底部滑入线 --- */
header nav a, .navbar a, .footer a,
header [class*="nav"] a {
    position: relative !important;
}
header nav a::after, .navbar a::after,
header [class*="nav"] a::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 50% !important;
    width: 0 !important;
    height: 2px !important;
    background: #F5B800 !important;
    transition: width 0.3s ease, left 0.3s ease !important;
}
header nav a:hover::after, .navbar a:hover::after,
header [class*="nav"] a:hover::after {
    width: 100% !important;
    left: 0 !important;
}

/* --- 5. 按钮微飘入效果 --- */
button, [class*="btn"], a[class*="btn"] {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
button:hover, [class*="btn"]:hover, a[class*="btn"]:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08) !important;
}
button:active, [class*="btn"]:active, a[class*="btn"]:active {
    transform: translateY(0) !important;
}

/* --- 6. 促销条的内容悬浮感知 --- */
.mhot-offer:hover h1 {
    letter-spacing: 4px !important;
    transition: letter-spacing 0.4s ease !important;
}

/* --- 7. 图片加载完成后的柔和过渡 --- */
img {
    transition: opacity 0.3s ease !important;
}
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease !important;
}
img[loading="lazy"]:not([src=""]) {
    opacity: 1;
}

/* ============================================
   Mobile Drawer Navigation - MHOT
   ============================================ */

/* --- Drawer panel wider & more breathing --- */
@media (max-width: 768px) {
    /* --- Pages section --- */
    /* Bigger section title */
    .mt-8 .px-6 .text-\[10px\] {
        letter-spacing: 0.12em !important;
        margin-bottom: 14px !important;
    }
    
    /* Category section heading */
    .border-t.border-zinc-200 + .v-mobile-category + * + * .text-\[10px\],
    .border-t.border-zinc-200 ~ .text-\[10px\] {
        font-size: 11px !important;
        letter-spacing: 0.12em !important;
        margin-bottom: 14px !important;
    }
    }



/* === 修复顶部空白：隐藏残留的shimmer占位DOM === */
/* Bagisto Vue组件 mount 后，加载时的 shimmer fallback DOM 未被正确移除 */
/* 两个相同的 min-h-[78px] flex div 同时存在：前一个占位78px空白，后一个是真实导航 */
/* 隐藏 header 内第一个 flex min-h-[78px] (即残留的shimmer) */
header > div.flex.min-h-\[78px\]:first-child {
    display: none !important;
}




/* === Contact v3 — Professional B2B layout === */

/* Grid layout — two columns */
.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.3fr !important;
    gap: 4rem !important;
    align-items: start !important;
}

.contact-left-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.contact-right-col {
    min-width: 0 !important;
}

/* Card base */
.contact-card {
    position: relative !important;
    margin-bottom: 1.5rem !important;
    border-radius: 1rem !important;
    border: 1px solid #e4e4e7 !important;
    background: #fff !important;
    padding: 1.75rem !important;
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94) !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04) !important;
}

.contact-card:last-child {
    margin-bottom: 0 !important;
}

.contact-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px -8px rgba(0,0,0,0.08) !important;
    border-color: #d4d4d8 !important;
}

/* Card icon container */
.contact-card-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 3rem !important;
    height: 3rem !important;
    border-radius: 0.75rem !important;
    margin-bottom: 1.25rem !important;
}

/* Card title */
body .contact-card-title {
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
    color: #18181b !important;
    margin: 0 0 0.25rem 0 !important;
    line-height: 1.3 !important;
}

/* Card description */
body .contact-card-desc {
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    color: #71717a !important;
    margin: 0 !important;
}

/* Card link (phone/email) */
body .contact-link {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #d97706 !important;
    text-decoration: none !important;
    border-bottom: 1px solid transparent !important;
    transition: all 0.2s ease !important;
}

body .contact-link:hover {
    border-bottom-color: #d97706 !important;
}

/* Card address */
body .contact-address {
    margin-top: 0.75rem !important;
    font-size: 0.875rem !important;
    line-height: 1.7 !important;
    color: #52525b !important;
}

/* Form card */
.contact-form-card {
    border-radius: 1rem !important;
    border: 1px solid #e4e4e7 !important;
    background: #fff !important;
    padding: 2.5rem !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04) !important;
}

body .contact-form-title {
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-size: 1.75rem !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
    color: #18181b !important;
    margin: 0 !important;
}

.contact-form-sub {
    margin-top: 0.5rem !important;
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    color: #a1a1aa !important;
}

/* Form labels */
.contact-form-label {
    display: inline-block !important;
    margin-bottom: 0.375rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #71717a !important;
}

/* Form group spacing */
.contact-form-group {
    margin-bottom: 1.25rem !important;
}

/* Inputs */
.ct-input {
    width: 100% !important;
    border-radius: 0.625rem !important;
    border: 1px solid #e4e4e7 !important;
    background: #fff !important;
    padding: 0.875rem 1.125rem !important;
    font-size: 0.938rem !important;
    line-height: 1.5 !important;
    color: #18181b !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02) !important;
    box-sizing: border-box !important;
}

.ct-input:hover {
    border-color: #d4d4d8 !important;
}

.ct-input:focus {
    border-color: #18181b !important;
    box-shadow: 0 0 0 3px rgba(24,24,27,0.06) !important;
}

.ct-input::placeholder {
    color: #a1a1aa !important;
    font-weight: 400 !important;
}

/* Select arrow custom */
select.ct-input {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 0.875rem !important;
    padding-right: 2.5rem !important;
    cursor: pointer !important;
}

/* Submit button */
.contact-submit-btn {
    display: block !important;
    width: 100% !important;
    margin-top: 2rem !important;
    border-radius: 0.75rem !important;
    background: #18181b !important;
    padding: 1rem 2rem !important;
    text-align: center !important;
    font-size: 0.813rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.contact-submit-btn:hover {
    background: #27272a !important;
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.15) !important;
}

.contact-submit-btn:active {
    transform: scale(0.98) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .contact-form-card {
        padding: 1.5rem !important;
    }
    .contact-card {
        padding: 1.5rem !important;
    }
}

@media (max-width: 600px) {
    section:first-of-type {
        min-height: 240px !important;
    }
    body .contact-form-title {
        font-size: 1.5rem !important;
    }
    .ct-input {
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
    }
}


/* === Blog page (CMS) — Professional B2B layout === */

.blog-page-banner {
    position: relative;
    background: linear-gradient(135deg, #0a0a1a 0%, #0f1a2e 60%, #1a1a2e 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-page-banner-overlay {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.blog-page-banner-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 0.75rem 0;
}

.blog-page-banner-sub {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    max-width: 500px;
    margin: 0 auto;
}

.blog-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem 1.5rem;
}

/* Featured card */
.blog-featured-card {
    position: relative;
    border-radius: 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d97706, #f59e0b);
}

.blog-featured-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -12px rgba(0,0,0,0.3);
}

.blog-featured-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.blog-cat-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.15);
    color: #f59e0b;
    margin-bottom: 1rem;
}

.blog-featured-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.01em;
}

.blog-featured-desc {
    font-size: 0.938rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 1.25rem 0;
}

.blog-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-meta {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.4);
}

.blog-featured-card .blog-meta {
    color: rgba(255, 255, 255, 0.45);
}

.blog-read-more {
    font-size: 0.875rem;
    font-weight: 500;
    color: #d97706;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.blog-read-more:hover {
    border-bottom-color: #d97706;
}

.blog-featured-card .blog-read-more {
    color: #f59e0b;
}

.blog-featured-card .blog-read-more:hover {
    border-bottom-color: #f59e0b;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.blog-grid-card {
    border-radius: 0.875rem;
    border: 1px solid #e4e4e7;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.blog-grid-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.08);
    border-color: #d4d4d8;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.3;
    color: #18181b;
    margin: 0.75rem 0 0.5rem 0;
    letter-spacing: -0.01em;
}

.blog-card-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #71717a;
    margin: 0 0 1rem 0;
}

.blog-grid-card .blog-meta {
    color: #a1a1aa;
}

/* CTA box */
.blog-cta-box {
    text-align: center;
    border-radius: 1rem;
    border: 1px solid #e4e4e7;
    background: #fff;
    padding: 2.5rem;
}

.blog-cta-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: #18181b;
    margin: 0 0 1.25rem 0;
}

.blog-cta-btn {
    display: inline-block;
    border-radius: 0.75rem;
    background: #18181b;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-cta-btn:hover {
    background: #27272a;
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-page-banner {
        min-height: 220px;
    }
    .blog-featured-card {
        padding: 1.5rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .blog-card-body {
        padding: 1.25rem;
    }
    .blog-cta-box {
        padding: 1.5rem;
    }
    .blog-featured-title {
        font-size: 1.25rem;
    }
}
