/* Layout do blog alinhado ao site raiz Adonai Inox */

.blog-site-main {
  flex: 1 0 auto;
  width: 100%;
}

/* ========== Blog hero profissional (alto contraste) ========== */
.blog-hero.blog-hero-pro {
  position: relative;
  overflow: hidden;
  color: #f8fafc;
  background: #0b0f14;
  padding: 8.5rem 0 4.5rem;
  min-height: 0;
}

.blog-hero.blog-hero-pro::before {
  display: none;
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blog-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 40%, transparent 100%);
  opacity: 0.7;
}

.blog-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.blog-hero-orb-1 {
  width: 420px;
  height: 420px;
  background: #475569;
  top: -15%;
  right: 5%;
  opacity: 0.35;
}

.blog-hero-orb-2 {
  width: 320px;
  height: 320px;
  background: #64748b;
  bottom: -20%;
  left: -5%;
  opacity: 0.22;
}

.blog-hero-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 20% 30%, rgba(226, 232, 240, 0.08), transparent 60%);
}

.blog-hero-row {
  position: relative;
  z-index: 2;
  min-height: 420px;
}

.blog-hero.blog-hero-pro .blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.blog-hero-eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: blogHeroPulse 2s ease infinite;
}

@keyframes blogHeroPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.blog-hero.blog-hero-pro .blog-hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #f8fafc !important;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-align: left;
  text-transform: none;
  font-family: inherit;
}

.blog-hero-accent {
  color: #e2e8f0;
  background: linear-gradient(135deg, #f8fafc 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-hero.blog-hero-pro .blog-hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cbd5e1 !important;
  opacity: 1 !important;
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.blog-hero.blog-hero-pro .blog-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.blog-hero.blog-hero-pro .feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px);
  color: #f1f5f9;
}

.blog-hero.blog-hero-pro .feature-item:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
}

.blog-hero.blog-hero-pro .feature-item i {
  font-size: 1.1rem;
  color: #e2e8f0 !important;
}

.blog-hero.blog-hero-pro .feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f8fafc !important;
}

.blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  border: 0;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.blog-hero-btn-primary {
  color: #0f172a !important;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0) !important;
}

.blog-hero-btn-primary:hover {
  color: #0f172a !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(148, 163, 184, 0.35);
}

.blog-hero-btn-ghost {
  color: #f8fafc !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.blog-hero-btn-ghost:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.blog-hero-panel {
  position: relative;
  z-index: 2;
  margin-left: auto;
  max-width: 380px;
  padding: 2rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.blog-hero-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
}

.blog-hero-panel-badge i {
  color: #4ade80;
}

.blog-hero-panel-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.blog-hero-panel-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.blog-hero-panel-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #f8fafc !important;
  margin-bottom: 0.65rem;
  text-align: left;
  text-transform: none;
  font-family: inherit;
}

.blog-hero-panel-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #94a3b8;
}

@media (max-width: 991.98px) {
  .blog-hero.blog-hero-pro {
    padding: 7.5rem 0 3.5rem;
  }

  .blog-hero-row {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .blog-hero.blog-hero-pro .blog-hero-title {
    font-size: 1.9rem;
  }

  .blog-hero.blog-hero-pro .blog-hero-lead {
    font-size: 1rem;
  }

  .blog-hero-actions {
    width: 100%;
  }

  .blog-hero-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Top bar responsiva no blog (mesmo comportamento do site raiz) */
@media (max-width: 767.98px) {
  .top-bar .justify-content-end {
    justify-content: flex-start !important;
    margin-top: 0.35rem;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
  }
}

.blog-page-hero {
  position: relative;
  padding: 8.5rem 0 3.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(108, 117, 125, 0.18), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(73, 80, 87, 0.12), transparent 40%),
    linear-gradient(160deg, #f8f9fa 0%, #eef1f4 55%, #e9ecef 100%);
  border-bottom: 1px solid var(--border-color, #dee2e6);
}

.blog-page-hero.blog-page-hero--cover {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-color: #212529;
  background-size: cover;
  background-position: center;
}

.blog-page-hero.blog-page-hero--cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 37, 41, 0.35) 0%, rgba(33, 37, 41, 0.82) 100%);
}

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

.blog-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted, #6c757d);
  margin-bottom: 0.85rem;
}

.blog-page-hero--cover .blog-page-hero__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.blog-page-hero h1 {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark, #212529);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.blog-page-hero--cover h1 {
  color: #fff;
}

.blog-page-hero .lead {
  max-width: 42rem;
  color: var(--text-muted, #6c757d);
  margin-bottom: 0;
}

.blog-page-hero--cover .lead {
  color: rgba(255, 255, 255, 0.9);
}

.blog-breadcrumb {
  background: transparent;
  padding: 1.25rem 0 0;
  margin: 0;
}

.blog-breadcrumb .breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
}

.blog-breadcrumb .breadcrumb-item a {
  color: var(--primary-color, #6c757d);
  text-decoration: none;
  font-weight: 500;
}

.blog-breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color, #495057);
}

.blog-breadcrumb .breadcrumb-item.active {
  color: var(--text-muted, #6c757d);
}

.blog-page-hero--cover .blog-breadcrumb .breadcrumb-item a,
.blog-page-hero--cover .blog-breadcrumb .breadcrumb-item.active,
.blog-page-hero--cover .blog-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.85);
}

.blog-section {
  padding: 3.5rem 0 4.5rem;
}

.blog-section .section-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--text-dark, #212529);
  margin-bottom: 0.75rem;
}

.blog-section .section-subtitle {
  color: var(--text-muted, #6c757d);
  margin-bottom: 0;
}

.blog-intro {
  color: var(--text-color, #333);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.blog-intro p:last-child {
  margin-bottom: 0;
}

.blog-sidebar-card {
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow-sm, 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05));
  padding: 1.5rem;
  position: sticky;
  top: 7rem;
}

.blog-sidebar-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark, #212529);
  margin-bottom: 1rem;
}

.blog-sidebar-card .form-control {
  border-radius: 0.65rem 0 0 0.65rem;
  border-color: var(--border-color, #dee2e6);
  min-height: 46px;
}

.blog-sidebar-card .btn {
  border-radius: 0 0.65rem 0.65rem 0;
  min-height: 46px;
  font-weight: 600;
}

.blog-post-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md, 0 0.375rem 0.75rem rgba(0, 0, 0, 0.1));
  border-color: #ced4da;
}

.blog-post-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9ecef;
}

.blog-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.blog-post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.4rem 1.5rem;
}

.blog-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted, #6c757d);
  margin-bottom: 0.75rem;
}

.blog-post-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-post-card__title a {
  color: var(--text-dark, #212529);
  text-decoration: none;
}

.blog-post-card__title a:hover {
  color: var(--accent-color, #495057);
}

.blog-post-card__excerpt {
  color: var(--text-muted, #6c757d);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-post-card__cta {
  align-self: flex-start;
  font-weight: 600;
}

.blog-pagination .page-link {
  color: var(--accent-color, #495057);
  border-color: var(--border-color, #dee2e6);
}

.blog-pagination .page-item.active .page-link {
  background-color: var(--accent-color, #495057);
  border-color: var(--accent-color, #495057);
  color: #fff;
}

.blog-article {
  background: #fff;
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 1rem;
  padding: 1.75rem;
}

.blog-article img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.blog-article h2,
.blog-article h3,
.blog-article h4 {
  color: var(--text-dark, #212529);
  margin-top: 1.75rem;
}

.blog-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.blog-share li {
  margin: 0;
}

.blog-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #f8f9fa;
  color: var(--accent-color, #495057);
  border: 1px solid var(--border-color, #dee2e6);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-share a:hover {
  background: var(--accent-color, #495057);
  color: #fff;
}

.blog-related-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.blog-related-title a {
  color: var(--text-dark, #212529);
  text-decoration: none;
}

.blog-related-title a:hover {
  color: var(--accent-color, #495057);
}

.blog-tag {
  display: inline-block;
  margin: 0 0.4rem 0.4rem 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f1f3f5;
  color: var(--text-dark, #212529);
  font-size: 0.85rem;
  text-decoration: none;
}

.blog-tag:hover {
  background: #e9ecef;
  color: var(--accent-color, #495057);
}

.blog-faq .accordion-item {
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 0.75rem !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.blog-faq .accordion-button {
  font-weight: 600;
  color: var(--text-dark, #212529);
  box-shadow: none;
}

.blog-faq .accordion-button:not(.collapsed) {
  background: #f8f9fa;
  color: var(--text-dark, #212529);
}

@media (max-width: 767.98px) {
  .blog-page-hero {
    padding: 7.25rem 0 2.5rem;
  }

  .blog-sidebar-card {
    position: static;
    margin-bottom: 1.5rem;
  }

  .blog-article {
    padding: 1.25rem;
  }
}

/* ========== Página do post (postb.php) ========== */
.blog-post-hero {
  position: relative;
  overflow: hidden;
  color: #f8fafc;
  background: #0b0f14;
  padding: 8.25rem 0 3.25rem;
}

.blog-post-hero .container {
  position: relative;
  z-index: 2;
}

.blog-post-breadcrumb .breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  margin-bottom: 1.25rem;
}

.blog-post-breadcrumb .breadcrumb-item,
.blog-post-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #94a3b8;
  font-size: 0.85rem;
}

.blog-post-breadcrumb .breadcrumb-item a {
  color: #e2e8f0;
  text-decoration: none;
}

.blog-post-breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}

.blog-post-breadcrumb .breadcrumb-item.active {
  color: #64748b;
}

.blog-post-category {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.blog-post-title {
  max-width: 900px;
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #f8fafc !important;
  text-align: left !important;
  text-transform: none !important;
  font-family: inherit !important;
}

.blog-post-subtitle {
  max-width: 720px;
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  color: #94a3b8;
  font-size: 0.92rem;
}

.blog-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-post-meta i {
  color: #cbd5e1;
}

.blog-post-body {
  background: #f8f9fa;
}

.blog-post-article {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 1rem rgba(15, 23, 42, 0.04);
}

.blog-post-cover {
  margin: 0;
  overflow: hidden;
  background: #e9ecef;
}

.blog-post-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.blog-post-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-bottom: 1px solid #eef1f4;
  background: #fcfcfd;
}

.blog-post-share-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
}

.blog-post-share {
  display: flex;
  gap: 0.5rem;
}

.blog-post-share a {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #475569;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-post-share a:hover {
  color: #fff;
  background: #334155;
  border-color: #334155;
}

.blog-post-content {
  padding: 1.75rem 1.75rem 1.25rem;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  color: #0f172a !important;
  text-align: left !important;
  text-transform: none !important;
  font-family: inherit !important;
  letter-spacing: normal !important;
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.blog-post-content p {
  margin-bottom: 1.15rem;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1rem 0;
}

.blog-post-content a {
  color: #334155;
  text-decoration: underline;
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1.15rem;
}

.blog-post-faq {
  padding: 0 1.75rem 1.5rem;
}

.blog-post-faq h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a !important;
  margin-bottom: 1rem;
  text-align: left !important;
  text-transform: none !important;
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 1.75rem 1.5rem;
  padding: 1.25rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
}

.blog-post-author img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 0.35rem;
}

.blog-post-author small {
  display: block;
  color: #64748b;
  font-size: 0.8rem;
  margin-bottom: 0.15rem;
}

.blog-post-author strong {
  display: block;
  color: #0f172a;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.blog-post-author p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.blog-post-tags {
  padding: 0 1.75rem 1.75rem;
}

.blog-post-tags-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.75rem;
}

.blog-related .section-title {
  margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
  .blog-post-hero {
    padding: 7.25rem 0 2.5rem;
  }

  .blog-post-toolbar,
  .blog-post-content,
  .blog-post-faq,
  .blog-post-tags {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .blog-post-author {
    margin-left: 1.15rem;
    margin-right: 1.15rem;
    flex-direction: column;
    text-align: center;
  }
}

/* ========== Landings técnicas (blog/*.php) ========== */
.blog-landing-body {
  background: #f8f9fa;
}

.blog-landing-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  padding: 1.25rem 1.25rem 0;
}

.blog-landing-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.75rem;
  margin: 0;
  background: #e9ecef;
}

.blog-landing-contact {
  margin: 1.25rem 1.75rem 0;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid #334155;
  border-radius: 1rem;
  color: #e2e8f0;
}

.blog-landing-contact h5 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f8fafc !important;
  text-align: left !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-family: inherit !important;
}

.blog-landing-contact p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

.blog-landing-contact a:not(.btn) {
  color: #e2e8f0;
  text-decoration: none;
}

.blog-landing-contact a:not(.btn):hover {
  color: #fff;
  text-decoration: underline;
}

.blog-landing-contact .btn {
  font-weight: 600;
  border-radius: 0.65rem;
}

.blog-landing-regions {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 1.25rem;
}

.blog-landing-regions h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a !important;
  text-align: left !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-family: inherit !important;
  margin-bottom: 1rem;
}

.blog-landing-regions .nav-tabs {
  border-bottom: 1px solid #e2e8f0;
  gap: 0.25rem;
}

.blog-landing-regions .nav-link {
  color: #64748b;
  font-weight: 600;
  border: 0;
  border-radius: 0.65rem 0.65rem 0 0;
}

.blog-landing-regions .nav-link.active {
  color: #0f172a;
  background: #f1f5f9;
}

.blog-landing-aside .blog-sidebar-card {
  margin-bottom: 1.25rem;
}

.blog-landing-aside .blog-sidebar-card .btn {
  width: 100%;
  border-radius: 0.65rem;
  min-height: 44px;
}

.blog-landing-aside .list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-landing-aside .list-check li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  color: #475569;
  font-size: 0.92rem;
}

.blog-landing-aside .list-check i {
  color: #22c55e;
  margin-top: 0.15rem;
}

@media (max-width: 767.98px) {
  .blog-landing-gallery {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 1rem 0;
  }

  .blog-landing-contact {
    margin-left: 1.15rem;
    margin-right: 1.15rem;
  }
}
