:root {
  --color-abstract-purple: #322242;
  --color-astronomist: #52366E;
  --color-lavender: #C7B6D8;
  --color-grey: #E7E7E7;
  --color-white: #FFFFFF;
  --font-primary: 'Montserrat', sans-serif;
  --radius: 6px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}


/* === articles-Page === */
.articles-page .hero-section {
  background-color: var(--color-abstract-purple); /* #322242 */
  position: relative;
  min-height: 500px; /* минимальная высота */
  display: flex;
  align-items: center;
}

.articles-page .hero-content {
    position: relative;
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
}

.articles-page .hero-content::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.articles-page .hero-title {
  font-weight: 400; /* Regular per Guidebook */
  font-size: 4rem; /* 4X per Guidebook */
  letter-spacing: 0.02em; /* 2% spacing */
  color: var(--color-white); /* #FFFFFF */
  margin: 0;
  line-height: 1.2;
}

.articles-page .hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* полупрозрачная белая линия */
  width: 100%;
  max-width: 1200px;
}

.article-tag {
  font-family: var(--font-primary);
  font-weight: 300; /* Light per Guidebook */
  font-size: 0.875rem;
  letter-spacing: 0.02em; /* 2% spacing */
  color: var(--color-white); /* БЕЛЫЙ текст для контраста */
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid rgba(199, 182, 216, 0.6); /* полупрозрачный Lavender */
  border-radius: 30px; /* более округлые pill-shaped */
  background: rgba(255, 255, 255, 0.05); /* лёгкий белый фон */
  backdrop-filter: blur(4px); /* эффект матового стекла */
  transition: 
    color 0.25s ease, 
    border-color 0.25s ease, 
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.article-tag:hover,
.article-tag:focus-visible {
  color: var(--color-abstract-purple); /* тёмный текст при hover */
  border-color: var(--color-lavender); /* #C7B6D8 */
  background: var(--color-white); /* белый фон */
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199, 182, 216, 0.3);
  cursor: pointer;
}

.article-tag:active {
  transform: translateY(0);
}

/* Активный тег */
.article-tag.is-active {
  color: var(--color-abstract-purple);
  border-color: var(--color-lavender);
  background: var(--color-white);
  font-weight: 400; /* Regular для акцента */
}

.service-tag.is-active:hover {
    background: #E0BA95;
}

/* === Состояния видимости для фильтрации === */
.content-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.content-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.content-item.is-hidden {
    opacity: 0;
    transform: translateY(10px);
    position: absolute !important;
    pointer-events: none;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

/* Сообщение "ничего не найдено" */
.filter-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #322242; /* Abstract Purple Grey */
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* Адаптив */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px 0;
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-tags {
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
  }
  
  .article-tag {
    font-size: 0.8rem;
    padding: 6px 16px;
  }
}


.articles-block {
  font-family: var(--font-primary);
  color: var(--color-abstract-purple);
  max-width: 1140px;
  margin: 0 auto 64px auto;
  padding: 0 24px;
}

.articles-block__title {
  font-weight: 400; /* Regular per Guidebook */
  font-size: 2.25rem;
  letter-spacing: 0.02em;
  margin: 0 0 32px 0;
  line-height: 1.2;
}