/* ========================================
   BLOG INDEX PAGE (Updated 2025-10-03)
   Modern black app-like design
   ======================================== */

.av-blog-index {
  background: #0a0a0a;
  min-height: 100vh;
}

/* Hero Section */
.av-blog-index-hero {
  padding: clamp(6rem, 12vh, 10rem) 1.5rem clamp(4rem, 8vh, 6rem);
  text-align: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.av-blog-index-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.av-blog-index-hero__tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  margin-bottom: 1.5rem;
}

.av-blog-index-hero__title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  margin: 0 0 1.5rem 0;
  color: #fff;
  line-height: 1.1;
  font-family: 'Archivo Black', sans-serif;
}

.av-blog-index-hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* Content Section */
.av-blog-index-content {
  padding: 4rem 1.5rem 6rem;
}

.av-blog-index-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Article Grid */
.av-blog-index-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .av-blog-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .av-blog-index-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Article Card */
.av-blog-index-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.av-blog-index-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

.av-blog-index-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

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

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

.av-blog-index-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(16, 185, 129, 0.9);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.av-blog-index-card__content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.av-blog-index-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.av-blog-index-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.av-blog-index-card__title {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.av-blog-index-card__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.av-blog-index-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.av-blog-index-card__tag {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.av-blog-index-card__footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.av-blog-index-card__author {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.av-blog-index-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.3s ease;
}

.av-blog-index-card:hover .av-blog-index-card__cta {
  gap: 0.75rem;
}

/* Empty State */
.av-blog-index-empty {
  text-align: center;
  padding: 6rem 2rem;
}

.av-blog-index-empty__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.av-blog-index-empty__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem 0;
}

.av-blog-index-empty__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

/* Old Blog Styles (Legacy - can be removed eventually) */
.av-blog-page {
  padding-bottom: clamp(72px, 14vw, 120px);
}

.av-blog-controls {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(32px, 6vw, 48px);
}

@media (min-width: 780px) {
  .av-blog-controls {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
}

.av-blog-search {
  position: relative;
}

.av-blog-search input {
  width: 100%;
  padding: 16px 18px 16px 48px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 8, 14, 0.78);
  color: #fff;
  font-size: 1rem;
}

.av-blog-search svg {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  opacity: 0.55;
}

.av-blog-toggle {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 16, 0.7);
}

.av-blog-toggle button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.av-blog-toggle button[data-active="true"] {
  background: var(--av-gradient-primary);
  color: #fff;
}

.av-blog-sort select {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 16, 0.74);
  color: #fff;
}

.av-blog-grid {
  display: grid;
  gap: clamp(22px, 5vw, 34px);
}

@media (min-width: 960px) {
  .av-blog-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .av-blog-featured {
    grid-column: span 6;
  }
  .av-blog-list {
    grid-column: span 6;
  }
}

.av-blog-card {
  border-radius: var(--av-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 18, 0.76);
  display: grid;
}

.av-blog-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.05);
}

.av-blog-card__body {
  padding: 24px clamp(22px, 5vw, 32px) clamp(28px, 5vw, 36px);
  display: grid;
  gap: 12px;
}

.av-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.av-blog-card__title {
  margin: 0;
  font-family: var(--av-font-display);
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  line-height: 1.25;
}

.av-blog-card__excerpt {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.av-blog-card__footer {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.av-blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== BLOG SUMMARY PAGE ===== */
body[data-page-mode="simple"] {
  background: #04040a;
}

.av-blog-summary {
  padding-bottom: clamp(72px, 14vw, 120px);
}

.av-blog-summary__hero {
  padding: clamp(96px, 18vh, 140px) 0 clamp(64px, 12vh, 96px);
  text-align: center;
  background: radial-gradient(circle at top, rgba(16, 185, 129, 0.22), rgba(4, 4, 10, 0.92) 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.av-blog-summary__hero .av-container {
  max-width: 860px;
}

.av-blog-summary__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.av-blog-summary__hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  margin: 0 0 20px;
  color: #fff;
}

.av-blog-summary__hero p {
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto clamp(28px, 5vw, 42px);
  line-height: 1.7;
  max-width: 720px;
}

.av-blog-summary__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.av-blog-summary__cta:hover {
  transform: translateY(-2px);
  background: rgba(16, 185, 129, 0.45);
}

.av-blog-summary__facts {
  margin: clamp(36px, 7vw, 56px) auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.av-blog-summary__fact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.av-blog-summary__fact span {
  font-weight: 700;
  color: #fff;
}

.av-blog-summary__nav {
  position: sticky;
  top: 86px;
  z-index: 5;
  padding: 16px 0;
  background: rgba(4, 4, 10, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.av-blog-summary__nav .av-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.av-blog-summary__nav a {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.av-blog-summary__nav a:hover,
.av-blog-summary__nav a[data-active="true"] {
  background: rgba(16, 185, 129, 0.35);
  border-color: rgba(16, 185, 129, 0.55);
  color: #fff;
}

.av-blog-summary__sections {
  padding: clamp(60px, 11vh, 90px) 0;
}

.av-blog-summary__sections .av-container {
  display: grid;
  gap: clamp(40px, 6vw, 64px);
}

.av-blog-summary__section {
  display: grid;
  gap: clamp(26px, 5vw, 40px);
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}

.av-blog-summary__media {
  grid-column: span 5;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.av-blog-summary__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.av-blog-summary__content {
  grid-column: span 7;
  display: grid;
  gap: 16px;
}

.av-blog-summary__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.24);
  border: 1px solid rgba(16, 185, 129, 0.38);
  color: #10b981;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.av-blog-summary__section h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  color: #fff;
  line-height: 1.3;
}

.av-blog-summary__section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.av-blog-summary__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.av-blog-summary__bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.av-blog-summary__bullets li::before {
  content: '\25CF';
  position: absolute;
  left: 0;
  top: 0.35em;
  font-size: 0.6rem;
  color: #10b981;
}

.av-blog-summary__footer {
  padding: clamp(50px, 10vh, 80px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.av-blog-summary__footer h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 20px;
}

.av-blog-summary__footer p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.av-blog-summary__footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(79, 70, 229, 0.8));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.av-blog-summary__footer a:hover {
  filter: brightness(1.1);
}

@media (max-width: 960px) {
  .av-blog-summary__section {
    grid-template-columns: 1fr;
  }

  .av-blog-summary__media,
  .av-blog-summary__content {
    grid-column: span 1;
  }

  .av-blog-summary__media {
    order: -1;
  }
}

@media (max-width: 720px) {
  .av-blog-summary__facts {
    justify-content: flex-start;
  }

  .av-blog-summary__nav {
    top: 72px;
  }
}

.av-blog-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.av-blog-listing {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
}

.av-blog-list-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 16, 0.72);
  transition: transform 0.25s ease;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .av-blog-list-card {
    grid-template-columns: 1fr 1.8fr;
    gap: 22px;
  }
}

.av-blog-list-card:hover {
  transform: translateY(-4px);
}

.av-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.av-pagination {
  margin-top: clamp(32px, 7vw, 48px);
  display: flex;
  justify-content: center;
}

.av-pagination button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 18, 0.7);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Dynamic article cards (rendered via blog.js) */
.article-card {
  position: relative;
  border-radius: var(--av-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 6, 12, 0.82);
  overflow: hidden;
  display: grid;
}

.article-card.featured {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.article-card-meta {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-author {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: #fff;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.article-card-meta time {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

/* Article layout */

.av-article {
  max-width: 840px;
  margin: 0 auto;
  padding-bottom: clamp(72px, 12vw, 140px);
}

.av-article header {
  text-align: center;
  margin-bottom: clamp(32px, 8vw, 56px);
}

.av-article h1 {
  margin: 0;
  font-family: var(--av-font-display);
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  line-height: 1.1;
}

.av-article__meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.av-article__hero {
  margin: clamp(32px, 6vw, 48px) 0;
  border-radius: var(--av-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.av-article__hero img {
  width: 100%;
  display: block;
}

.av-article__content {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}

.av-article__content h2,
.av-article__content h3 {
  font-family: var(--av-font-display);
  line-height: 1.2;
  margin: clamp(24px, 6vw, 36px) 0 12px;
}

.av-article__content ul,
.av-article__content ol {
  padding-left: 1.6rem;
}

.av-article__content li {
  margin-bottom: 10px;
}

.av-article__cta {
  margin-top: clamp(36px, 8vw, 56px);
  padding: clamp(28px, 5vw, 42px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 16, 0.78);
  text-align: center;
  display: grid;
  gap: 18px;
}

.av-related-posts {
  margin-top: clamp(48px, 10vw, 72px);
}

.av-related-posts__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Mini-gallery used in blog summaries */
.av-strain-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.av-strain-gallery-card {
  border-radius: var(--av-radius-md, 16px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 16, 0.6);
}

.av-strain-gallery-card img {
  width: 100%;
  height: auto;
  display: block;
}

.av-strain-gallery-card figcaption {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.av-strain-gallery-note {
  margin-top: 10px;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* ========================================
   BLOG ARTICLE DESIGN (Added 2025-10-03)
   Modern black app-like mobile-first
   ======================================== */

/* Blog Hero */
.av-blog-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 4rem 1.5rem 3rem;
}

.av-blog-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.av-blog-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.av-blog-hero__tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.av-blog-hero__date {
  font-size: 0.85rem;
  opacity: 0.9;
}

.av-blog-hero__title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
  font-family: 'Archivo Black', sans-serif;
  line-height: 1.1;
}

.av-blog-hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto 2rem auto;
  position: relative;
  z-index: 1;
  font-weight: 500;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}

.av-blog-hero__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

.av-blog-hero__reading-time::before {
  content: '•';
  margin-right: 0.5rem;
}

/* Blog Content */
.av-blog-content {
  background: #0a0a0a;
  min-height: 100vh;
  padding: 0 0 4rem 0;
}

.av-blog-notice {
  max-width: 900px;
  margin: -2rem auto 3rem auto;
  padding: 0 1.5rem;
}

.av-blog-notice > div {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.av-blog-notice__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.av-blog-notice p {
  margin: 0;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.av-blog-notice a {
  color: #10b981;
  text-decoration: none;
  font-weight: 700;
}

.av-blog-notice a:hover {
  text-decoration: underline;
}

/* Blog Navigation */
.av-blog-nav {
  position: sticky;
  top: 60px;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  margin-bottom: 3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.av-blog-nav::-webkit-scrollbar {
  display: none;
}

.av-blog-nav__track {
  display: flex;
  gap: 0.75rem;
  padding: 0 1.5rem;
  min-width: max-content;
  margin: 0 auto;
  justify-content: center;
}

.av-blog-nav__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.av-blog-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.av-blog-nav__link.active {
  color: #10b981;
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

/* Blog Phases */
.av-blog-phase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.av-blog-phase--reverse {
  direction: rtl;
}

.av-blog-phase--reverse > * {
  direction: ltr;
}

.av-blog-phase__visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.av-blog-phase__label {
  display: inline-block;
  background: #10b981;
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.av-blog-phase__content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  font-weight: 800;
}

.av-blog-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: #10b981;
  border-left: 4px solid #10b981;
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}

.av-blog-phase__content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Blog Checklist */
.av-blog-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.av-blog-checklist li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.av-blog-checklist li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
}

.av-blog-checklist__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  color: #10b981;
}

.av-blog-checklist li div {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.av-blog-checklist li strong {
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
}

/* Expert Section */
.av-blog-expert {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.av-blog-expert__title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin: 0 0 3rem 0;
  font-weight: 800;
}

.av-blog-expert__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.av-blog-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.av-blog-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.av-blog-card h3 {
  color: #10b981;
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.av-blog-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.av-blog-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.av-blog-card li {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.av-blog-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.av-blog-card li strong {
  color: #fff;
  font-weight: 600;
}

/* Finale Section */
.av-blog-finale {
  text-align: center;
  padding: 5rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.av-blog-finale img {
  max-width: 350px;
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.av-blog-finale h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin: 0 0 1.5rem 0;
  font-weight: 800;
}

.av-blog-finale p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.av-blog-cta {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.av-blog-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .av-blog-hero {
    min-height: 50vh;
    padding: 3rem 1.5rem 2rem;
  }

  .av-blog-nav {
    top: 56px;
  }

  .av-blog-nav__track {
    justify-content: flex-start;
  }

  .av-blog-phase {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .av-blog-phase--reverse {
    direction: ltr;
  }

  .av-blog-phase__visual {
    order: -1;
  }

  .av-blog-quote {
    font-size: 1.1rem;
    padding-left: 1rem;
    margin: 1.5rem 0;
  }

  .av-blog-expert {
    padding: 3rem 1.5rem;
  }

  .av-blog-expert__grid {
    grid-template-columns: 1fr;
  }

  .av-blog-finale {
    padding: 3rem 1.5rem;
  }
}
