/* ============================================
   HASTAM MOTORS — Enterprise Premium Blog Styles
   Design System v2.0 — Atualizado para tons de cinza

   Cores da Marca:
   - Vermelho: #BB2632
   - Cinza Light: #b0b0b0
   - Cinza: #8e8e8e
   - Cinza Dark: #6e6e6e
   - Preto: #000000

   Slogan: "Nossa alma é exclusividade"
   ============================================ */


/* ===========================================
   NAV - MATCHING INDEX.HTML
   =========================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 10vh;
  max-height: 70px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(3rem + 35px);
  background: #141414;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav__logo {
  font-family: 'area-extended', 'Lexend', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
}

.nav__logo img {
  height: 34px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: calc(3rem + 35px);
}

.nav__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.4s;
  position: relative;
  color: #ffffff;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav__link:hover {
  opacity: 1;
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__toggle {
  display: none;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 1px;
  background: #ffffff;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 900px) {
  .nav {
    justify-content: space-between;
  }
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
}


/* ===========================================
   MOBILE MENU - MATCHING INDEX.HTML
   =========================================== */
.menu {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: #050505;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.menu__close {
  position: absolute;
  top: 1.5rem;
  right: 4vw;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.menu__close span {
  position: absolute;
  width: 24px;
  height: 1px;
  background: #ffffff;
}

.menu__close span:first-child {
  transform: rotate(45deg);
}

.menu__close span:last-child {
  transform: rotate(-45deg);
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.menu__link {
  font-family: 'area-extended', 'Lexend', sans-serif;
  font-size: clamp(3rem, 12vw, 7rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateX(100px);
  opacity: 0;
}

.menu.active .menu__link {
  transform: translateX(0);
  opacity: 1;
}

.menu.active .menu__link:nth-child(1) { transition-delay: 0.15s; }
.menu.active .menu__link:nth-child(2) { transition-delay: 0.2s; }
.menu.active .menu__link:nth-child(3) { transition-delay: 0.25s; }
.menu.active .menu__link:nth-child(4) { transition-delay: 0.3s; }
.menu.active .menu__link:nth-child(5) { transition-delay: 0.35s; }

.menu__link:hover {
  transform: translateX(20px);
}

.menu__footer {
  position: absolute;
  bottom: 2rem;
  left: 4rem;
  right: 4rem;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}


/* ===========================================
   FOOTER - EXACT MATCH WITH INDEX.HTML
   =========================================== */
.footer {
  padding: 6rem 4vw 3rem !important;
  border-top: 1px solid rgba(255,255,255,0.04) !important;
  background: #050505 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.footer__grid {
  display: grid !important;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr !important;
  gap: 4rem !important;
  margin-bottom: 5rem !important;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .footer {
    overflow: visible !important;
  }
  .footer__grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 2.5rem !important;
  }
  .footer__grid > div {
    width: 100% !important;
    display: block !important;
  }
  .footer__brand {
    grid-column: auto !important;
    padding-right: 0 !important;
  }
  .footer__brand img {
    display: block !important;
    margin: 0 auto !important;
  }
  .footer__tagline {
    text-align: center !important;
  }
  .footer__title {
    text-align: center !important;
  }
  .footer__links {
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .footer__links a:hover {
    transform: none !important;
  }
  .footer__bottom {
    justify-content: center !important;
    flex-direction: column !important;
    text-align: center !important;
  }
}

.footer__brand {
  font-family: 'area-extended', 'Lexend', sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 1rem !important;
}

.footer__brand img {
  height: 52px !important;
  width: auto !important;
}

.footer__tagline {
  font-size: 15px !important;
  font-style: italic !important;
  color: rgba(255,255,255,0.3) !important;
}

.footer__title {
  font-family: 'area-normal', 'Lexend', sans-serif !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin-bottom: 1.5rem !important;
}

.footer__links {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
}

.footer__links a {
  font-family: 'area-normal', 'Lexend', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.4) !important;
  transition: color 0.3s, transform 0.3s !important;
  display: inline-block !important;
}

.footer__links a:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}

.footer__links--social a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.footer__links--social svg {
  flex-shrink: 0 !important;
}

.footer__bottom {
  padding-top: 3rem !important;
  border-top: 1px solid rgba(255,255,255,0.04) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}

.footer__copy {
  font-size: 12px !important;
  color: rgba(255,255,255,0.2) !important;
  letter-spacing: 0.05em !important;
}

/* Footer social icons matching index.html */
.footer__social {
  display: flex !important;
  gap: 0.5rem !important;
}

.footer__social a {
  width: 44px !important;
  height: 44px !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  color: rgba(255,255,255,0.35) !important;
  transition: all 0.4s ease !important;
}

.footer__social a:hover {
  background: #b0b0b0 !important;
  border-color: #b0b0b0 !important;
  color: #000000 !important;
}

/* Mobile nav adjustment for footer */
@media (max-width: 768px) {
  .footer {
    padding-bottom: 6rem !important;
  }
}


/* ===========================================
   WHATSAPP BUTTON
   =========================================== */
.whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #151515;
  border-radius: 20px;
  color: #25D366;
  font-family: 'area-normal', 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.whatsapp:hover {
  background: #25D366;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(37,211,102,0.35);
}

.whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp span {
  display: none;
}

@media (min-width: 768px) {
  .whatsapp span {
    display: block;
  }
}

@media (max-width: 768px) {
  .whatsapp {
    display: none;
  }
}


/* ===========================================
   MOBILE BOTTOM NAV
   =========================================== */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0.5rem 0.75rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}

.mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav__item span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.mobile-nav__item svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav__item:active {
  transform: scale(0.95);
}

.mobile-nav__item:active svg {
  transform: scale(1.1);
}

.mobile-nav__item--whatsapp {
  position: relative;
  color: #ffffff;
}

.mobile-nav__whatsapp-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav__item--whatsapp:active .mobile-nav__whatsapp-icon {
  transform: scale(0.95);
  box-shadow: 0 2px 10px rgba(37,211,102,0.3);
}

.mobile-nav__item--whatsapp span {
  color: #C6A962;
  font-weight: 600;
}


/* ===========================================
   ARTICLE CONTENT OVERFLOW FIX
   =========================================== */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
}

.article,
.article__content,
.article-content,
.article-body,
.article-layout,
article {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.article__content img,
.article-content img,
.article-body img,
article img {
  max-width: 100%;
  height: auto;
}

.article__content pre,
.article-content pre,
.article-body pre,
article pre {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.article__content table,
.article-content table,
.article-body table,
article table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

.article__content p,
.article-content p,
.article-body p,
article p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 768px) {
  /* ===========================================
     MOBILE LAYOUT - Enterprise UI/UX 2026
     =========================================== */

  /* Reset padding on parent containers to avoid accumulation */
  .article,
  .article__content,
  .article-content {
    padding: 0 !important;
    margin: 0;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .article-layout {
    padding: 0 !important;
    margin: 0;
    gap: 0 !important;
    max-width: 100vw;
    box-sizing: border-box;
  }

  /* Only article-body gets the padding */
  .article-body {
    padding: 24px 16px 40px 16px !important;
    margin: 0;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  /* ===========================================
     MOBILE TYPOGRAPHY - Optimal Readability
     =========================================== */

  .article-body p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
  }

  .article-body p:first-of-type {
    font-size: 17px;
    line-height: 1.7;
  }

  .article-body h2 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
    padding-top: 10px;
  }

  .article-body h3 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
  }

  .article-body h4 {
    font-size: 1.05rem;
    margin: 20px 0 10px;
  }

  .article-body ul,
  .article-body ol {
    margin: 16px 0;
    padding-left: 20px;
  }

  .article-body li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
  }

  .article-body blockquote {
    margin: 20px 0;
    padding: 16px 12px 16px 16px;
  }

  .article-body blockquote::before {
    font-size: 2rem;
    top: 6px;
    left: 8px;
  }

  .article-body blockquote p {
    font-size: 0.95rem;
    padding-left: 20px;
  }

  .article-body img {
    margin: 20px 0;
    border-radius: 4px;
  }

  /* ===========================================
     MOBILE TABLES - Scrollable Design
     =========================================== */

  /* Table container wrapper */
  .article-body table {
    display: block;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    margin-top: 20px;
    margin-bottom: 20px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    border: none;
    background: #fff;
  }

  .article-body table thead,
  .article-body table tbody,
  .article-body table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .article-body table thead {
    display: table-header-group;
    background: #1a1a1a;
    width: max-content;
    min-width: 100%;
  }

  .article-body table tbody {
    display: table-row-group;
    width: max-content;
    min-width: 100%;
  }

  .article-body table tr {
    display: table-row;
    width: max-content;
    min-width: 100%;
  }

  .article-body table th,
  .article-body table td {
    display: table-cell;
    white-space: nowrap;
  }

  .article-body th {
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    background: #1a1a1a;
    border-bottom: none;
  }

  .article-body td {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #444;
    border-bottom: 1px solid #eee;
    background: #fff;
  }

  .article-body tbody tr:nth-child(even) td {
    background: #f9f9f9;
  }

  .article-body tbody tr:last-child td {
    background: #f5f5f5;
    font-weight: 500;
    color: #222;
  }

  /* Remove pseudo-element that doesn't work on tables */
  .article-body table::after {
    display: none;
  }

  /* General overflow handling */
  .article__content *,
  .article-content *,
  .article-body * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
  }

  /* Exclude tables from max-width constraint */
  .article-body table,
  .article-body table * {
    max-width: none;
  }

  .article-body pre {
    margin: 16px -16px;
    padding: 14px 16px;
    font-size: 13px;
    border-radius: 0;
    overflow-x: auto;
  }
}


/* ===========================================
   BLOG HEADER OVERRIDE
   =========================================== */
.header--blog {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header--blog.is-scrolled {
  background: rgba(0, 0, 0, 0.98);
}

.header--blog .header__logo,
.header--blog .header__menu-btn {
  color: var(--white);
}


/* ===========================================
   BLOG HERO — Clean Enterprise Editorial
   =========================================== */
.blog-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + var(--space-14)) var(--space-6) var(--space-14);
  background: #0a0a0a;
  overflow: hidden;
}

/* Subtle gradient - more refined */
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(142, 142, 142, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Clean bottom border */
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hastam-gold), transparent);
  opacity: 0.5;
}

.blog-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.blog-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hastam-gold);
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

/* Cleaner label lines */
.blog-hero__label::before,
.blog-hero__label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--hastam-gold);
  opacity: 0.5;
}

.blog-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.blog-hero__title span {
  display: block;
  color: var(--hastam-gold);
}

.blog-hero__subtitle {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

@media (max-width: 768px) {
  .blog-hero {
    min-height: 50vh;
    padding: calc(var(--header-height) + var(--space-10)) var(--space-5) var(--space-10);
  }

  .blog-hero__subtitle {
    font-size: var(--text-sm);
  }
}


/* ===========================================
   BLOG CATEGORIES — Clean Enterprise Nav
   =========================================== */
.blog-categories {
  position: sticky;
  top: var(--header-height);
  z-index: var(--z-sticky);
  padding: var(--space-4) 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-categories__list {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.blog-categories__link {
  position: relative;
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: var(--space-3) 0;
  transition: color var(--duration-normal) var(--ease-out);
}

.blog-categories__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--hastam-gold-gradient);
  transform: translateX(-50%);
  transition: width var(--duration-normal) var(--ease-out);
}

.blog-categories__link:hover,
.blog-categories__link.is-active {
  color: var(--white);
}

.blog-categories__link:hover::after,
.blog-categories__link.is-active::after {
  width: 100%;
}


/* ===========================================
   FEATURED POST — Clean Enterprise Layout
   =========================================== */
.blog-featured {
  position: relative;
  padding: var(--space-14) 0;
  background: #0a0a0a;
}

/* Remove decorative line */
.blog-featured::before {
  display: none;
}

.blog-featured__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (max-width: 1024px) {
  .blog-featured__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.blog-featured__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
}

/* Subtle border on hover */
.blog-featured__image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.blog-featured__grid:hover .blog-featured__image::before {
  border-color: rgba(142, 142, 142, 0.3);
}

.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-featured__grid:hover .blog-featured__image img {
  transform: scale(1.03);
}

.blog-featured__content {
  padding: var(--space-2) 0;
}

.blog-featured__label {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hastam-gold);
  padding: 6px 12px;
  background: rgba(142, 142, 142, 0.1);
  border: 1px solid rgba(142, 142, 142, 0.2);
  border-radius: 2px;
  margin-bottom: var(--space-5);
}

.blog-featured__title {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.blog-featured__grid:hover .blog-featured__title {
  color: var(--hastam-gold);
}

.blog-featured__excerpt {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-400);
  margin-bottom: var(--space-6);
}

.blog-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  padding: 14px 28px;
  border: none;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--hastam-gold-light) 0%, var(--hastam-gold) 100%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(142, 142, 142, 0.2);
}

.blog-featured__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142, 142, 142, 0.3);
}

.blog-featured__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.blog-featured__link:hover svg {
  transform: translateX(3px);
}


/* ===========================================
   BLOG SECTION — Clean Enterprise Grid
   =========================================== */
.blog-section {
  position: relative;
  padding: var(--space-14) 0;
  background: #FAFAFA;
}

/* Remove decorative line */
.blog-section::before {
  display: none;
}

.blog-section__header {
  margin-bottom: var(--space-10);
}

.blog-section__title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.02em;
}

.blog-section__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--hastam-gold);
  margin-top: var(--space-3);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

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

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}


/* ===========================================
   BLOG CARD — Senior Enterprise Design
   =========================================== */
.blog-card {
  position: relative;
  background: var(--white);
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Subtle gold accent line */
.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hastam-gold) 0%, var(--hastam-gold-light) 50%, var(--hastam-gold) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
}

/* Hover state - elegant lift */
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(142, 142, 142, 0.2);
  box-shadow:
    0 20px 40px -15px rgba(0, 0, 0, 0.12),
    0 10px 20px -10px rgba(0, 0, 0, 0.08);
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.blog-card:hover .blog-card__image::after {
  opacity: 1;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.blog-card__content {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.blog-card__category {
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hastam-gold-dark);
}

.blog-card__date {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-400);
}

.blog-card__date::before {
  content: '\2022';
  margin-right: var(--space-3);
  color: var(--gray-300);
}

.blog-card__title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover .blog-card__title {
  color: var(--hastam-gold-dark);
}

.blog-card__excerpt {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray-500);
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: all 0.3s ease;
}

.blog-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__link {
  color: var(--black);
}

.blog-card:hover .blog-card__link svg {
  transform: translateX(3px);
}


/* ===========================================
   PAGINATION — Clean Enterprise
   =========================================== */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 48px 0 20px;
  flex-wrap: wrap;
}

.blog-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 500;
  color: #666;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-pagination__btn:hover:not(:disabled) {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

.blog-pagination__btn.is-active {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

.blog-pagination__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.blog-pagination__btn--arrow {
  font-size: 13px;
  padding: 0 18px;
  gap: 8px;
}

.blog-pagination__ellipsis {
  font-family: var(--font-secondary);
  font-size: 13px;
  color: #999;
  padding: 0 6px;
}

.blog-pagination__info {
  font-family: var(--font-secondary);
  font-size: 11px;
  color: #999;
  margin-left: 24px;
}

@media (max-width: 768px) {
  .blog-pagination {
    flex-wrap: wrap;
  }

  .blog-pagination__info {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: var(--space-4);
  }
}


/* ===========================================
   BLOG NEWSLETTER — Clean Enterprise CTA
   =========================================== */
.blog-newsletter {
  position: relative;
  padding: 80px 0;
  background: #0a0a0a;
  text-align: center;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.blog-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(142, 142, 142, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.blog-newsletter .container {
  position: relative;
  z-index: 1;
}

.blog-newsletter__title {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.blog-newsletter__text {
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.blog-newsletter__form {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  max-width: 550px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .blog-newsletter__form {
    flex-direction: column;
  }
}

.blog-newsletter__input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  outline: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-newsletter__input::placeholder {
  color: rgba(255,255,255,0.3);
}

.blog-newsletter__input:focus {
  border-color: #b0b0b0;
  background: rgba(255,255,255,0.02);
}

.blog-newsletter__btn {
  padding: 14px 28px;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, #b0b0b0 0%, #8e8e8e 100%);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-newsletter__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(142, 142, 142, 0.3);
}


/* ===========================================
   ARTICLE HERO — Clean Enterprise Header
   =========================================== */
.article-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 64px) 24px 64px;
  background: #0a0a0a;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(142, 142, 142, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.article-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.article-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.article-hero__breadcrumb a,
.article-hero__breadcrumb span {
  font-family: var(--font-secondary);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.article-hero__breadcrumb a:hover {
  color: #b0b0b0;
}

.article-hero__breadcrumb svg {
  color: rgba(255,255,255,0.2);
}

.article-hero__category {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b0b0b0;
  padding: 6px 14px;
  background: rgba(142, 142, 142, 0.08);
  border: 1px solid rgba(142, 142, 142, 0.2);
  border-radius: 2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.article-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 32px;
  max-width: 100%;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .article-hero__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
  opacity: 0;
}

.article-hero__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.article-hero__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b0b0b0 0%, #a0a0a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
}

.article-hero__author-name {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.article-hero__author-role {
  font-family: var(--font-secondary);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.article-hero__info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-secondary);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.article-hero__info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-hero__info svg {
  color: #b0b0b0;
  opacity: 0.7;
}


/* ===========================================
   ARTICLE IMAGE — Clean Enterprise Full-Width
   =========================================== */
.article-image {
  position: relative;
  margin-top: -24px;
  padding: 0 24px;
  z-index: 1;
}

.article-image__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 2/1;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-image__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imageReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes imageReveal {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* ===========================================
   ARTICLE CONTENT LAYOUT
   =========================================== */
.article-content {
  padding: var(--space-14) 0;
  background: var(--white-warm);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-14);
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (max-width: 1100px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.article-body {
  max-width: 780px;
}


/* ===========================================
   TABLE OF CONTENTS — Clean Enterprise Sidebar
   =========================================== */
.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 2px;
  height: fit-content;
}

.article-toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #b0b0b0 0%, #8e8e8e 100%);
}

.article-toc__title {
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8e8e8e;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.article-toc__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-toc__link {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  padding-left: 14px;
  border-left: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.article-toc__link:hover,
.article-toc__link.is-active {
  color: #0a0a0a;
  border-left-color: #b0b0b0;
}

@media (max-width: 1100px) {
  .article-toc {
    display: none;
  }
}


/* ===========================================
   MOBILE TABLE OF CONTENTS
   =========================================== */
.article-toc-mobile {
  display: none;
  margin-bottom: var(--space-10);
  background: var(--white);
  border: 1px solid var(--gray-100);
}

@media (max-width: 1100px) {
  .article-toc-mobile {
    display: block;
  }
}

.article-toc-mobile__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--black);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--duration-normal) var(--ease-out);
}

.article-toc-mobile__toggle:hover {
  background: var(--gray-50);
}

.article-toc-mobile__toggle svg {
  color: var(--hastam-gold);
  transition: transform var(--duration-normal) var(--ease-out);
}

.article-toc-mobile.is-open .article-toc-mobile__toggle svg {
  transform: rotate(180deg);
}

.article-toc-mobile__content {
  display: none;
  padding: 0 var(--space-6) var(--space-6);
  border-top: 1px solid var(--gray-100);
}

.article-toc-mobile.is-open .article-toc-mobile__content {
  display: block;
}

.article-toc-mobile__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  list-style: none;
  counter-reset: toc-counter;
}

.article-toc-mobile__list li {
  counter-increment: toc-counter;
}

.article-toc-mobile__list a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--gray-600);
  border-left: 2px solid transparent;
  transition: all var(--duration-normal) var(--ease-out);
}

.article-toc-mobile__list a::before {
  content: counter(toc-counter) ". ";
  color: var(--hastam-gold);
  font-weight: 500;
}

.article-toc-mobile__list a:hover {
  color: var(--black);
  background: var(--gray-50);
  border-left-color: var(--hastam-red);
}


/* ===========================================
   ARTICLE TYPOGRAPHY — Clean Enterprise Reading
   =========================================== */
.article-body h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #0a0a0a;
  margin: 56px 0 24px;
  padding-top: 16px;
  position: relative;
  letter-spacing: -0.02em;
}

.article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #b0b0b0 0%, #8e8e8e 100%);
}

.article-body h3 {
  font-family: var(--font-secondary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0a0a0a;
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}

.article-body h4 {
  font-family: var(--font-secondary);
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 32px 0 12px;
}

.article-body p {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: #555;
  margin-bottom: 24px;
}

.article-body p:first-of-type {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #444;
}

.article-body strong {
  font-weight: 600;
  color: #0a0a0a;
}

.article-body a {
  color: #8e8e8e;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(152, 119, 41, 0.3);
  transition: all 0.3s ease;
}

.article-body a:hover {
  color: #b0b0b0;
  text-decoration-color: #b0b0b0;
}

.article-body ul,
.article-body ol {
  margin: 24px 0;
  padding-left: 24px;
}

.article-body li {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.article-body ul li {
  list-style-type: none;
  position: relative;
  padding-left: var(--space-5);
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--hastam-gold);
  border-radius: 50%;
}

.article-body ol li {
  list-style-type: decimal;
  padding-left: var(--space-2);
}

.article-body ol li::marker {
  color: var(--hastam-gold);
  font-weight: 600;
}

.article-body blockquote {
  position: relative;
  margin: 40px 0;
  padding: 28px 32px;
  background: #FAFAFA;
  border-left: 3px solid #b0b0b0;
  border-radius: 0 2px 2px 0;
}

.article-body blockquote::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: var(--font-primary);
  font-size: 3.5rem;
  line-height: 1;
  color: #b0b0b0;
  opacity: 0.4;
}

.article-body blockquote p {
  position: relative;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.7;
  color: #333;
  margin: 0;
  padding-left: 32px;
}

.article-body img {
  width: 100%;
  margin: 40px 0;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 2px;
}

.article-body figure {
  margin: 40px 0;
}

.article-body figcaption {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 12px;
}


/* ===========================================
   ARTICLE TABLES — Clean Enterprise Data Display
   =========================================== */
.article-body table {
  width: 100%;
  margin: 40px 0;
  border-collapse: collapse;
  font-family: var(--font-secondary);
  border-radius: 2px;
  overflow: hidden;
}

.article-body thead {
  background: #0a0a0a;
}

.article-body th {
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
}

.article-body td {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.article-body tbody tr:hover {
  background: rgba(142, 142, 142, 0.04);
}

.article-body tbody tr:last-child {
  background: #FAFAFA;
  font-weight: 500;
}

.article-body tbody tr:last-child td {
  color: #0a0a0a;
}


/* ===========================================
   ARTICLE CTA BOX — Premium Luxury Design
   =========================================== */
.article-cta {
  position: relative;
  margin: 80px 0;
  padding: 60px 50px;
  background: #ffffff;
  text-align: center;
  border: 1px solid #e8e8e8;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Elegant gold accent line */
.article-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--hastam-gold);
}

/* Decorative corner accents */
.article-cta::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

/* Hide old decorative elements */
.article-cta__corner,
.article-cta__accent {
  display: none;
}

/* Icon - elegant circle */
.article-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  background: #0a0a0a;
  border-radius: 50%;
  color: var(--hastam-gold);
}

.article-cta__icon svg {
  width: 28px;
  height: 28px;
}

/* Title - premium typography */
.article-cta__title {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 400;
  color: #0a0a0a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.article-cta__title span {
  color: var(--hastam-gold-dark, #b8a040);
  font-style: italic;
}

/* Description text - highly legible */
.article-cta__text {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* CTA Button - sophisticated dark style */
.article-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: #0a0a0a;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.article-cta__btn:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.article-cta__btn:active {
  transform: translateY(-1px);
}

.article-cta__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--hastam-gold);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .article-cta {
    padding: 48px 28px;
    margin: 60px 0;
  }

  .article-cta__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
  }

  .article-cta__title {
    font-size: 22px;
  }

  .article-cta__text {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .article-cta__btn {
    padding: 16px 32px;
    font-size: 11px;
    width: 100%;
    justify-content: center;
  }
}


/* ===========================================
   ARTICLE FAQ — Clean Enterprise Accordion
   =========================================== */
.article-faq {
  margin: var(--space-12) 0;
  padding: var(--space-8);
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
}

.article-faq__title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--black);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  letter-spacing: -0.01em;
}

.article-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.article-faq__item:last-child {
  border-bottom: none;
}

.article-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--black);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.article-faq__question:hover {
  color: var(--hastam-gold-dark);
}

.article-faq__question svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--hastam-gold);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.article-faq__item.is-open .article-faq__question svg {
  transform: rotate(180deg);
}

.article-faq__answer {
  display: none;
  padding-bottom: var(--space-5);
}

.article-faq__item.is-open .article-faq__answer {
  display: block;
}

.article-faq__answer p {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-500);
  margin: 0;
}

/* FAQ Icon — Fix for legacy articles */
.faq-icon,
svg.faq-icon {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
  color: var(--hastam-gold);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}


/* ===========================================
   ARTICLE TAGS — Clean Minimal Labels
   =========================================== */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.article-tag {
  padding: 6px 12px;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.article-tag:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}


/* ===========================================
   ARTICLE SHARE — Clean Social Buttons
   =========================================== */
.article-share {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.article-share__label {
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.article-share__links {
  display: flex;
  gap: var(--space-2);
}

.article-share__link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.article-share__link svg {
  width: 16px;
  height: 16px;
}

.article-share__link:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}


/* ===========================================
   ARTICLE AUTHOR BOX — Clean Enterprise Design
   =========================================== */
.article-author {
  position: relative;
  margin-top: var(--space-16);
  padding: var(--space-8);
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  display: flex;
  gap: var(--space-6);
  align-items: center;
}

/* Gold accent on left */
.article-author::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--hastam-gold) 0%, var(--hastam-gold-light) 100%);
}

/* Remove unnecessary decorations */
.article-author::after {
  display: none;
}

@media (max-width: 640px) {
  .article-author {
    flex-direction: column;
    text-align: center;
    padding: var(--space-8) var(--space-6);
    gap: var(--space-5);
  }

  .article-author::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: 100%;
    height: 3px;
  }
}

.article-author__avatar {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hastam-gold-light) 0%, var(--hastam-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Remove pulsing animation - too distracting */
.article-author__avatar::before {
  display: none;
}

/* Remove hover scale */
.article-author:hover .article-author__avatar {
  transform: none;
}

.article-author__avatar-text {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.03em;
}

.article-author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.article-author__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

@media (max-width: 640px) {
  .article-author__avatar {
    margin: 0 auto;
    width: 64px;
    height: 64px;
  }
}

.article-author__label {
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hastam-gold-dark);
  margin-bottom: var(--space-1);
}

.article-author__name {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--black);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

/* Remove hover color change */
.article-author:hover .article-author__name {
  color: var(--black);
}

.article-author__bio {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: var(--space-4);
  max-width: 500px;
}

.article-author__social {
  display: flex;
  gap: var(--space-2);
}

@media (max-width: 640px) {
  .article-author__social {
    justify-content: center;
  }

  .article-author__bio {
    max-width: 100%;
  }
}

.article-author__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--gray-400);
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.article-author__social a:hover {
  color: var(--black);
  border-color: var(--hastam-gold);
  background: rgba(142, 142, 142, 0.1);
}

.article-author__social a svg {
  width: 14px;
  height: 14px;
}


/* ===========================================
   RELATED POSTS — Clean Enterprise Grid
   =========================================== */
.article-related {
  padding: var(--space-16) 0;
  background: #FAFAFA;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.article-related__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-10);
}

.article-related__title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.02em;
  margin: 0;
}

.article-related__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--hastam-gold);
  margin-top: var(--space-3);
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .article-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .article-related__title {
    font-size: var(--text-xl);
  }
}


/* ===========================================
   RELATED BOX — Clean Inline Suggestions
   =========================================== */
.related-box {
  margin: var(--space-8) 0 !important;
  padding: var(--space-5) var(--space-6) !important;
  background: #FAFAFA !important;
  border-left: 3px solid var(--hastam-gold) !important;
  border-radius: 0 2px 2px 0 !important;
}

.related-box h4 {
  font-family: var(--font-secondary) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--hastam-gold-dark) !important;
  margin: 0 0 var(--space-3) !important;
}

.related-box ul {
  margin: 0 !important;
  padding-left: 0 !important;
  list-style-type: none !important;
}

.related-box li {
  position: relative !important;
  margin-bottom: var(--space-2) !important;
  padding-left: var(--space-4) !important;
}

.related-box li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.6em !important;
  width: 4px !important;
  height: 4px !important;
  background: var(--hastam-gold) !important;
  border-radius: 50% !important;
}

.related-box a {
  font-family: var(--font-secondary) !important;
  font-size: var(--text-sm) !important;
  color: var(--gray-600) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.related-box a:hover {
  color: var(--black) !important;
}


/* ===========================================
   BLOG FOOTER — Clean Enterprise Footer
   =========================================== */
.blog-footer {
  background: #0a0a0a;
}

.blog-footer__cta-banner {
  position: relative;
  padding: 56px 0;
  background: linear-gradient(135deg, #b0b0b0 0%, #8e8e8e 100%);
  overflow: hidden;
}

.blog-footer__cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.blog-footer__cta-banner .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .blog-footer__cta-banner .container {
    flex-direction: column;
    text-align: center;
  }
}

.blog-footer__cta-content h3 {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #0a0a0a;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.blog-footer__cta-content p {
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.7);
}

.blog-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #0a0a0a;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-footer__cta-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.blog-footer__cta-btn svg {
  transition: transform 0.3s ease;
}

.blog-footer__cta-btn:hover svg {
  transform: translateX(3px);
}

.blog-footer__main {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
}

@media (max-width: 1024px) {
  .blog-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
}

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

.blog-footer__brand {
  max-width: 320px;
}

@media (max-width: 640px) {
  .blog-footer__brand {
    max-width: 100%;
    margin: 0 auto;
  }
}

.blog-footer__logo {
  height: 45px;
  margin-bottom: var(--space-6);
}

.blog-footer__brand-text {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-400);
  margin-bottom: var(--space-8);
}

.blog-footer__social {
  display: flex;
  gap: var(--space-3);
}

@media (max-width: 640px) {
  .blog-footer__social {
    justify-content: center;
  }
}

.blog-footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-footer__social-link:hover {
  color: #0a0a0a;
  background: #b0b0b0;
  border-color: #b0b0b0;
}

.blog-footer__social-link svg {
  width: 18px;
  height: 18px;
}

.blog-footer__links-title {
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.blog-footer__links-title--mt {
  margin-top: var(--space-10);
}

.blog-footer__links-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.blog-footer__links-list a,
.blog-footer__links-list span {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.blog-footer__links-list a:hover {
  color: #b0b0b0;
}

.blog-footer__contact-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

@media (max-width: 640px) {
  .blog-footer__contact-list li {
    justify-content: center;
  }
}

.blog-footer__contact-list svg {
  color: var(--hastam-gold);
  flex-shrink: 0;
}

.blog-footer__bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.blog-footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .blog-footer__bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

.blog-footer__company-name {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--gray-500);
  margin-bottom: var(--space-1);
}

.blog-footer__cnpj {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--gray-600);
}

.blog-footer__copyright {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--gray-500);
}


/* ===========================================
   UTILITY ANIMATIONS
   =========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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


/* ===========================================
   PRINT STYLES
   =========================================== */
@media print {
  .header--blog,
  .blog-categories,
  .article-toc,
  .article-toc-mobile,
  .article-cta,
  .article-share,
  .article-related,
  .blog-newsletter,
  .blog-footer,
  .whatsapp-float {
    display: none !important;
  }

  .article-hero {
    background: white !important;
    color: black !important;
    padding: 2rem 0 !important;
  }

  .article-hero__title {
    color: black !important;
  }

  .article-body {
    max-width: 100% !important;
  }

  .article-layout {
    grid-template-columns: 1fr !important;
  }
}
