/* ===== BLOG HERO ===== */
.blog-hero {
  padding: 140px 0 60px;
  background: #0a0a0a;
  color: #fff;
  text-align: center;
}
.blog-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
}
.blog-hero__sub {
  margin-top: 12px;
  font-size: 1rem;
  color: #a3a3a3;
  font-weight: 300;
}

/* ===== BLOG FILTER ===== */
.blog-filter {
  padding: 30px 0;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  position: sticky;
  top: 70px;
  z-index: 90;
}
.blog-filter__tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blog-filter__tabs::-webkit-scrollbar { display: none; }
.blog-filter__tab {
  padding: 8px 20px;
  border: 1px solid #d4d4d4;
  border-radius: 100px;
  background: #fff;
  font-size: 0.875rem;
  color: #525252;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: inherit;
}
.blog-filter__tab:hover {
  border-color: #0a0a0a;
  color: #0a0a0a;
}
.blog-filter__tab--active {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

/* ===== BLOG LIST ===== */
.blog-list {
  padding: 60px 0 80px;
  min-height: 50vh;
}
.blog-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-list__empty {
  text-align: center;
  padding: 80px 20px;
  color: #737373;
}
.blog-list__empty p:first-child {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.blog-list__loading {
  text-align: center;
  padding: 60px 20px;
  color: #737373;
}
.blog-list__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e5e5;
  border-top-color: #c8161d;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== BLOG CARD ===== */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.blog-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f5f5f5;
}
.blog-card__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
  color: #a3a3a3;
  font-size: 2rem;
}
.blog-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.blog-card__category {
  font-size: 0.75rem;
  font-weight: 500;
  color: #c8161d;
  background: #fef2f2;
  padding: 2px 10px;
  border-radius: 100px;
}
.blog-card__date {
  font-size: 0.75rem;
  color: #a3a3a3;
}
.blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__excerpt {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.blog-card__tag {
  font-size: 0.7rem;
  color: #737373;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ===== PAGINATION ===== */
.blog-list__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.blog-list__pagination button {
  width: 40px;
  height: 40px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.blog-list__pagination button:hover {
  border-color: #0a0a0a;
}
.blog-list__pagination button.active {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 100px 0 16px;
  background: #fafafa;
}
.breadcrumb__list {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
  color: #a3a3a3;
}
.breadcrumb__list li::after {
  content: '>';
  margin-left: 8px;
}
.breadcrumb__list li:last-child::after {
  content: '';
}
.breadcrumb__list li:last-child {
  color: #525252;
}
.breadcrumb__list a {
  color: #a3a3a3;
  text-decoration: none;
}
.breadcrumb__list a:hover {
  color: #0a0a0a;
}

/* ===== ARTICLE PAGE ===== */
.article {
  padding: 40px 0 80px;
  background: #fafafa;
}
.article__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.article__main {
  background: #fff;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.article__loading {
  text-align: center;
  padding: 60px 20px;
  color: #737373;
}

/* Article header */
.article__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}
.article__category {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #c8161d;
  background: #fef2f2;
  padding: 4px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}
.article__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
}
.article__info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
  color: #a3a3a3;
}
.article__author {
  font-weight: 500;
  color: #525252;
}

/* Article content */
.article__content {
  font-size: 1rem;
  line-height: 2;
  color: #333;
}
.article__content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c8161d;
}
.article__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 32px 0 12px;
}
.article__content p {
  margin-bottom: 20px;
}
.article__content ul, .article__content ol {
  margin: 16px 0 24px 24px;
}
.article__content li {
  margin-bottom: 8px;
}
.article__content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid #c8161d;
  background: #fafafa;
  font-style: italic;
  color: #525252;
}
.article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.article__content a {
  color: #c8161d;
  text-decoration: underline;
}

/* Article tags */
.article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}
.article__tag {
  font-size: 0.8125rem;
  color: #525252;
  background: #f5f5f5;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
}

/* Article CTA */
.article__cta {
  margin-top: 48px;
  padding: 32px;
  background: #0a0a0a;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}
.article__cta h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.article__cta p {
  font-size: 0.875rem;
  color: #a3a3a3;
  margin-bottom: 20px;
}
.article__cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #c8161d;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: background 0.2s;
}
.article__cta-btn:hover {
  background: #a51118;
}

/* ===== SIDEBAR ===== */
.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.sidebar-widget__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0a0a0a;
}
.sidebar-widget__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-widget__list li {
  border-bottom: 1px solid #f5f5f5;
}
.sidebar-widget__list li:last-child {
  border-bottom: none;
}
.sidebar-widget__list a {
  display: block;
  padding: 10px 0;
  color: #525252;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.sidebar-widget__list a:hover {
  color: #c8161d;
}
.sidebar-widget__list--recent .recent-date {
  display: block;
  font-size: 0.75rem;
  color: #a3a3a3;
  margin-top: 2px;
}
.sidebar-widget--cta {
  background: #0a0a0a;
  color: #fff;
}
.sidebar-widget--cta .sidebar-widget__title {
  color: #fff;
  border-bottom-color: #c8161d;
}
.sidebar-widget--cta p {
  font-size: 0.875rem;
  color: #a3a3a3;
  line-height: 1.7;
  margin-bottom: 16px;
}
.sidebar-widget__btn {
  display: block;
  text-align: center;
  padding: 12px;
  background: #c8161d;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.sidebar-widget__btn:hover {
  background: #a51118;
}
.sidebar-widget--ig {
  padding: 16px 24px;
}
.sidebar-widget__ig-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #525252;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.sidebar-widget__ig-link:hover {
  color: #c8161d;
}

/* ===== BLOG PREVIEW (on LP) ===== */
.blog-preview {
  padding: 100px 0 80px;
}
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.blog-preview__more {
  text-align: center;
}
.blog-preview__btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #0a0a0a;
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 100px;
  transition: all 0.3s;
}
.blog-preview__btn:hover {
  background: #0a0a0a;
  color: #fff;
}

/* ===== INSTAGRAM CTA ===== */
.instagram-cta {
  padding: 60px 0;
  background: #fafafa;
}
.instagram-cta__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 48px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  border-radius: 16px;
  color: #fff;
}
.instagram-cta__icon {
  flex-shrink: 0;
}
.instagram-cta__text {
  flex: 1;
}
.instagram-cta__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.instagram-cta__desc {
  font-size: 0.875rem;
  opacity: 0.9;
}
.instagram-cta__btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: transform 0.2s;
}
.instagram-cta__btn:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ADDITIONS ===== */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: background 0.2s;
}
.footer__social-link:hover {
  background: rgba(255,255,255,0.3);
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: #fff;
}

/* ===== HEADER IG ICON ===== */
.header__nav-link--ig {
  display: flex;
  align-items: center;
  padding: 4px !important;
}
.header__nav-link--ig svg {
  transition: opacity 0.2s;
}
.header__nav-link--ig:hover svg {
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .article__layout {
    grid-template-columns: 1fr;
  }
  .article__sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .sidebar-widget {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 0 40px;
  }
  .blog-filter {
    top: 60px;
    padding: 20px 0;
  }
  .blog-list__grid,
  .blog-preview__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .article__main {
    padding: 24px;
  }
  .article__sidebar {
    grid-template-columns: 1fr;
  }
  .instagram-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }
  .blog-card {
    flex-direction: row;
  }
  .blog-card__thumb {
    width: 120px;
    min-height: 120px;
    aspect-ratio: auto;
  }
  .blog-card__thumb--placeholder {
    width: 120px;
    min-height: 120px;
    aspect-ratio: auto;
  }
  .blog-card__body {
    padding: 16px;
  }
  .blog-card__title {
    font-size: 0.9375rem;
  }
  .blog-card__excerpt {
    display: none;
  }
}
