@charset "UTF-8";
:root {
  --blog-primary: #006EFF;
  --blog-brand: #2E6DF8;
  --blog-navy: #003F75;
  --blog-navy-dark: #222854;
  --blog-dark-blue: #122B62;
  --blog-accent: #005BBB;
  --blog-success: #1FA83C;
  --blog-success-dark: #0d8c2a;
  --blog-text: #313760;
  --blog-text-secondary: #6b7280;
  --blog-text-muted: #8b95a5;
  --blog-bg: #FFFFFF;
  --blog-bg-subtle: #f5f7fa;
  --blog-bg-section: #F2F8FF;
  --blog-bg-card: #EDF3F8;
  --blog-bg-highlight: #E6F7FF;
  --blog-border: #DDE3EC;
  --blog-border-light: #e8ecf1;
  --blog-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  --blog-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --blog-radius: 12px;
  --blog-radius-sm: 6px;
  --blog-radius-pill: 999px;
  --blog-font: 'Poppins', sans-serif;
}

.blog-v2 {
  font-family: var(--blog-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  z-index: 1;
  /*  padding-top: 80px;*/
}
@media (max-width: 991.98px) {
  .blog-v2 {
    /*    padding-top: 60px;*/
  }
}

.blog-v2 .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.blog-v2 .header-section {
  display: none;
}

.blog-breadcrumb {
  background: var(--blog-bg-subtle);
  padding: 14px 0;
  border-bottom: 1px solid var(--blog-border);
  color: #313760;
}
.blog-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  flex-wrap: wrap;
}
.blog-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-breadcrumb__item::after {
  content: "›";
  color: #8b95a5;
  font-size: 14px;
}
.blog-breadcrumb__item:last-child::after {
  display: none;
}
.blog-breadcrumb__item a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-breadcrumb__item a:hover {
  color: #006EFF;
}
.blog-breadcrumb__current {
  color: #313760;
  font-weight: 500;
}

.blog-hero {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fe 50%, #f5f7fa 100%);
  padding: 48px 0 40px;
  text-align: center;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-hero__title {
  font-size: 32px;
  font-weight: 700;
  color: #222854;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.blog-hero__description {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-categories {
  padding: 20px 0;
  background: var(--blog-bg);
  border-bottom: 1px solid var(--blog-border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.blog-categories__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.blog-categories__pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  border: 1.5px solid var(--blog-border);
  color: #6b7280;
  background: var(--blog-bg);
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}
.blog-categories__pill:hover {
  border-color: #2E6DF8;
  color: #2E6DF8;
  background: #f0f5ff;
}
.blog-categories__pill--active {
  background: #2E6DF8;
  color: #fff;
  border-color: #2E6DF8;
}
.blog-categories__pill--active:hover {
  background: #005BBB;
  border-color: #005BBB;
  color: #fff;
}

.blog-listing {
  padding: 48px 0;
  background: var(--blog-bg-subtle);
}

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

.blog-card {
  background: var(--blog-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--blog-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--blog-shadow-hover);
}
.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog-card__link:hover {
  color: inherit;
}
.blog-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__image {
  transform: scale(1.05);
}
.blog-card__category-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2E6DF8;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  z-index: 1;
}
.blog-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #313760;
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.blog-card:hover .blog-card__title {
  color: #006EFF;
}
.blog-card__summary {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #8b95a5;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--blog-border);
}
.blog-card__author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-card__author-name {
  font-weight: 500;
  color: #6b7280;
}
.blog-card__separator {
  color: var(--blog-border);
}
.blog-card__date, .blog-card__reading-time {
  color: #8b95a5;
}

.blog-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.blog-pagination__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  background: var(--blog-bg);
  border: 1px solid var(--blog-border-light);
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.blog-pagination__link:hover {
  background: var(--blog-bg-section);
  border-color: #2E6DF8;
  color: #2E6DF8;
  text-decoration: none;
}
.blog-pagination__link--active {
  background: #2E6DF8;
  color: #fff;
  border-color: #2E6DF8;
  box-shadow: 0 2px 8px rgba(46, 109, 248, 0.25);
  pointer-events: none;
}
.blog-pagination__link--prev, .blog-pagination__link--next {
  padding: 0 16px;
  font-weight: 600;
  color: #2E6DF8;
  border-color: transparent;
  background: transparent;
}
.blog-pagination__link--prev:hover, .blog-pagination__link--next:hover {
  background: rgba(46, 109, 248, 0.06);
  border-color: transparent;
}

.blog-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--blog-bg);
  border-radius: 12px;
  box-shadow: var(--blog-shadow);
}
.blog-empty__text {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 16px;
}
.blog-empty__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: #2E6DF8;
  color: #fff;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.blog-empty__link:hover {
  background: #005BBB;
  color: #fff;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-sidebar-widget {
  background: var(--blog-bg);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--blog-shadow);
}
.blog-sidebar-widget__title {
  font-size: 16px;
  font-weight: 600;
  color: #222854;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #2E6DF8;
}

.blog-sidebar-popular {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-sidebar-popular__item {
  padding: 10px 0;
  border-bottom: 1px solid var(--blog-border);
}
.blog-sidebar-popular__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-sidebar-popular__link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.blog-sidebar-popular__link:hover {
  color: #006EFF;
}
.blog-sidebar-popular__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--blog-bg-section);
  color: #2E6DF8;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}
.blog-sidebar-popular__thumb {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.blog-sidebar-popular__title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-sidebar-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-sidebar-categories__item {
  border-bottom: 1px solid var(--blog-border);
}
.blog-sidebar-categories__item:last-child {
  border-bottom: none;
}
.blog-sidebar-categories__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
  color: #313760;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.blog-sidebar-categories__link:hover {
  color: #006EFF;
}
.blog-sidebar-categories__count {
  font-size: 12px;
  color: #8b95a5;
  font-weight: 400;
}

.blog-sidebar-cta {
  background: linear-gradient(135deg, #1FA83C 0%, #0d8c2a 100%);
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
}
.blog-sidebar-cta__content {
  padding: 28px 24px;
  text-align: center;
}
.blog-sidebar-cta__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}
.blog-sidebar-cta__text {
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 18px;
  opacity: 0.92;
  color: #fff;
}
.blog-sidebar-cta__button {
  display: inline-block;
  padding: 11px 28px;
  background: #fff;
  color: #1FA83C;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.blog-sidebar-cta__button:hover {
  background: #f0fdf4;
  transform: translateY(-1px);
  color: #0d8c2a;
}

.blog-navigation-section {
  background: var(--blog-bg);
  padding: 48px 0;
  text-align: center;
}

.blog-section-title {
  font-size: 24px;
  font-weight: 400;
  color: #313760;
  margin: 0 0 24px;
}
.blog-section-title strong {
  font-weight: 700;
  color: #222854;
}
.blog-section-title__count {
  display: inline-block;
  background: rgba(0, 110, 255, 0.08);
  color: #006EFF;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

.blog-section-subtitle {
  font-size: 14px;
  color: #6b7280;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-detail {
  background: var(--blog-bg-subtle);
  min-height: 100vh;
  padding-bottom: 64px;
}

.blog-detail__header {
  background: linear-gradient(180deg, #f0f6ff 0%, var(--blog-bg) 100%);
  padding: 48px 0 32px;
  height: auto !important;
  max-width: 100% !important;
  width: 100% !important;
  position: relative !important;
  top: auto !important;
  margin: 0 !important;
  border-radius: 0 !important;
  display: block !important;
  transform: none !important;
}
@media (max-width: 768px) {
  .blog-detail__header {
    padding: 32px 0 24px;
  }
}

.blog-detail__category-pill {
  display: inline-block;
  background: #2E6DF8;
  color: #fff;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background 0.2s ease;
}
.blog-detail__category-pill:hover {
  background: #005BBB;
  color: #fff;
  text-decoration: none;
}

.blog-detail__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blog-text);
  line-height: 1.25;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .blog-detail__title {
    font-size: 1.5rem;
  }
}

.blog-detail__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--blog-border-light);
  border-bottom: 1px solid var(--blog-border-light);
}
@media (max-width: 768px) {
  .blog-detail__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.blog-detail__author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-detail__author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blog-bg-highlight);
}

.blog-detail__author-text {
  display: flex;
  flex-direction: column;
}

.blog-detail__author-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blog-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-detail__author-name:hover {
  color: var(--blog-primary);
}

.blog-detail__author-title {
  font-size: 0.8125rem;
  color: var(--blog-text-muted);
  font-weight: 400;
}

.blog-detail__date-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--blog-text-muted);
}

.blog-detail__icon {
  vertical-align: middle;
  margin-right: 4px;
  color: var(--blog-text-muted);
}

.blog-detail__date,
.blog-detail__reading-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: var(--blog-text-muted);
}

.blog-detail__share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .blog-detail__share {
    margin-left: 0;
  }
}

.blog-detail__share-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blog-text-muted);
  margin-right: 4px;
}

.blog-detail__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--blog-border);
  background: var(--blog-bg);
  color: var(--blog-text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-detail__share-btn svg {
  width: 16px;
  height: 16px;
}
.blog-detail__share-btn:hover {
  border-color: var(--blog-primary);
  color: var(--blog-primary);
  background: rgba(0, 110, 255, 0.04);
  text-decoration: none;
}

.blog-detail__cover {
  margin-top: 24px;
  margin-bottom: 0;
}

.blog-detail__cover-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-detail__cover-caption {
  font-size: 0.8125rem;
  color: var(--blog-text-muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

.blog-detail__content-area {
  padding: 32px 0;
}

.blog-detail__three-col {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}
.blog-detail__three-col:has(.blog-detail__toc-sidebar) {
  grid-template-columns: 200px 1fr 280px;
}
@media (max-width: 1024px) {
  .blog-detail__three-col {
    grid-template-columns: 1fr 260px;
  }
  .blog-detail__three-col:has(.blog-detail__toc-sidebar) {
    grid-template-columns: 1fr 260px;
  }
}
@media (max-width: 768px) {
  .blog-detail__three-col {
    grid-template-columns: 1fr;
  }
}

.blog-detail__toc-sidebar {
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  .blog-detail__toc-sidebar {
    display: none;
  }
}

.blog-toc {
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--blog-border) transparent;
  padding-right: 8px;
}
.blog-toc__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blog-text-muted);
  margin: 0 0 16px;
}
.blog-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--blog-border-light);
}

.blog-toc-item {
  display: block;
  position: relative;
}
.blog-toc-item__link {
  display: block;
  padding: 6px 0 6px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--blog-text-muted);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
  border-left: 2px solid transparent;
  margin-left: -2px;
  line-height: 1.4;
}
.blog-toc-item__link:hover {
  color: var(--blog-primary);
  text-decoration: none;
}
.blog-toc-item--level-3 .blog-toc-item__link {
  padding-left: 28px;
  font-size: 0.75rem;
  font-weight: 400;
}
.blog-toc-item.is-active > .blog-toc-item__link {
  color: var(--blog-primary);
  border-left-color: var(--blog-primary);
  font-weight: 600;
}

.blog-detail__article-body {
  min-width: 0;
}

.blog-article-content {
  background: var(--blog-bg);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--blog-border-light);
  padding: 48px;
}
@media (max-width: 768px) {
  .blog-article-content {
    padding: 24px;
    border-radius: 8px;
  }
}
.blog-article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blog-text);
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--blog-border-light);
  scroll-margin-top: 80px;
}
.blog-article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.blog-article-content h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--blog-text);
  margin: 32px 0 8px;
  scroll-margin-top: 80px;
}
.blog-article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--blog-text-secondary);
  margin: 0 0 24px;
}
.blog-article-content ul, .blog-article-content ol {
  padding-left: 24px;
  margin: 0 0 24px;
}
.blog-article-content ul li, .blog-article-content ol li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--blog-text-secondary);
  margin-bottom: 8px;
}
.blog-article-content ul li::marker, .blog-article-content ol li::marker {
  color: var(--blog-primary);
}
.blog-article-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--blog-primary);
  background: var(--blog-bg-highlight);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.blog-article-content blockquote p {
  font-size: 1.0625rem;
  color: var(--blog-navy);
  margin: 0;
}
.blog-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.875rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--blog-border);
}
.blog-article-content table thead {
  background: var(--blog-bg-subtle);
}
.blog-article-content table thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--blog-text);
  border-bottom: 2px solid var(--blog-border);
}
.blog-article-content table tbody tr {
  border-bottom: 1px solid var(--blog-border-light);
}
.blog-article-content table tbody tr:last-child {
  border-bottom: none;
}
.blog-article-content table tbody tr:hover {
  background: var(--blog-bg-section);
}
.blog-article-content table tbody td {
  padding: 12px 16px;
  color: var(--blog-text-secondary);
}
.blog-article-content figure {
  margin: 32px 0;
}
.blog-article-content figure img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.blog-article-content figure figcaption {
  font-size: 0.8125rem;
  color: var(--blog-text-muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}
.blog-article-content code {
  font-family: "Fira Code", "Consolas", monospace;
  font-size: 0.875em;
  background: var(--blog-bg-subtle);
  padding: 2px 6px;
  border-radius: 4px;
  color: #005BBB;
}
.blog-article-content pre {
  background: #222854;
  color: #e2e8f0;
  padding: 24px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 32px 0;
  font-size: 0.875rem;
  line-height: 1.6;
}
.blog-article-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.blog-article-content a {
  color: var(--blog-primary);
  text-decoration: underline;
  text-decoration-color: rgba(0, 110, 255, 0.3);
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.blog-article-content a:hover {
  color: #005BBB;
  text-decoration-color: #005BBB;
}
.blog-article-content .blog-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 32px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.blog-article-content .blog-embed iframe,
.blog-article-content .blog-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.blog-detail__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--blog-border-light);
}

.blog-detail__tags-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blog-text-muted);
  margin-right: 4px;
}

.blog-detail__tag-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #2E6DF8;
  background: rgba(46, 109, 248, 0.08);
  border: 1px solid rgba(46, 109, 248, 0.15);
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-detail__tag-pill:hover {
  background: #2E6DF8;
  color: #fff;
  border-color: #2E6DF8;
  text-decoration: none;
}

.blog-detail__right-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .blog-detail__right-sidebar {
    position: static;
  }
}

.blog-sidebar-widget__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-sidebar-widget__item {
  padding: 8px 0;
  border-bottom: 1px solid var(--blog-border-light);
}
.blog-sidebar-widget__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-sidebar-widget__link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.blog-sidebar-widget__link:hover {
  color: var(--blog-primary);
  text-decoration: none;
}
.blog-sidebar-widget__thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.blog-sidebar-widget__text {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-sidebar-widget__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-author-bio {
  padding: 48px 0;
}

.blog-author-bio__card {
  background: var(--blog-bg);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--blog-border-light);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .blog-author-bio__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.blog-author-bio__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--blog-bg-highlight);
}

.blog-author-bio__info {
  flex: 1;
}

.blog-author-bio__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blog-text);
  margin: 0 0 2px;
}
.blog-author-bio__name a {
  color: inherit;
  text-decoration: none;
}
.blog-author-bio__name a:hover {
  color: var(--blog-primary);
}

.blog-author-bio__title {
  font-size: 0.8125rem;
  color: var(--blog-primary);
  font-weight: 600;
  margin: 0 0 8px;
}

.blog-author-bio__text {
  font-size: 0.875rem;
  color: var(--blog-text-secondary);
  line-height: 1.6;
  margin: 0 0 16px;
}

.blog-author-bio__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blog-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-author-bio__linkedin svg {
  width: 18px;
  height: 18px;
}
.blog-author-bio__linkedin:hover {
  text-decoration: underline;
  color: #005BBB;
}

.blog-faq {
  padding: 48px 0;
}

.blog-faq__accordion {
  max-width: 800px;
}

.blog-faq__item {
  background: var(--blog-bg);
  border-radius: 8px;
  border: 1px solid var(--blog-border-light);
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.blog-faq__item:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.blog-faq__item.is-open {
  border-color: rgba(0, 110, 255, 0.2);
}
.blog-faq__item.is-open .blog-faq__icon {
  transform: rotate(180deg);
}
.blog-faq__item.is-open .blog-faq__answer {
  max-height: 600px;
  padding: 0 24px 24px;
}

.blog-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--blog-font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blog-text);
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
}
.blog-faq__question:hover {
  color: var(--blog-primary);
}

.blog-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--blog-text-muted);
  transition: transform 0.2s ease;
}

.blog-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.blog-faq__answer div {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--blog-text-secondary);
}
.blog-faq__answer div p {
  margin: 0 0 8px;
}
.blog-faq__answer div p:last-child {
  margin-bottom: 0;
}

.blog-related {
  padding: 48px 0;
}

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

/*# sourceMappingURL=detail.css.map */
