/* =========================================
   EMPRESS — CATEGORY BLOCK (MIND / YOUR / BUSINESS)
   Black section + centered title + numbered top 3
========================================= */

.category-block {
  background: #000;
  color: #fff;
}

.category-block .container {
  min-height: 360px;
}

/* TITLE */

.category-title {
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
}

/* LIST WRAPPER */

.category-list {
  list-style: none;
  max-width: 860px;
  margin: 60px auto 0;
  display: grid;
  gap: 80px;
  padding: 0;
  text-align: center;
}

.category-divider {
  width: 100%;
  height: 60px;
  background-image: url('../../images/articles/underline-articles.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 240px auto;
  margin: 0px auto 50px;
  opacity: 0.75;
}


/* SINGLE ITEM – NUMBER + TITLE */

.category-list__item {
  display: block;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  align-items: flex-start;
}

/* NUMBER CIRCLE */

.category-list__index {
  font-family: var(--font-script);
  font-size: 1.6rem;
  line-height: 1;
  min-width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  letter-spacing: 0.02em;
  display: none;
}

/* LINK – Literata italic */

.category-list__link {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 300;
  text-transform: none;
  line-height: 1.3;
  min-height: 1.3em;
  white-space: normal;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  display: inline-block;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.category-list__link:hover {
  border-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

/* ============================
   TABLET
============================ */

@media (max-width: 1024px) {
  .category-title {
    font-size: 30px;
    letter-spacing: 0.22em;
    margin-bottom: 10px;
  }

  .category-list {
    gap: 50px;
    padding: 0 8px;
  }

  .category-list__link {
    font-size: 21px;
  }

  .category-list__index {
    min-width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
}

/* ============================
   MOBILE
============================ */

@media (max-width: 768px) {
  .category-block {
    padding: 60px 0;
  }

  .category-block .container {
    min-height: 300px;
  }

  .category-title {
    font-size: 28px;
    letter-spacing: 0.18em;
   
  }

  .category-list {
    gap: 40px;
    padding: 0 16px;
  }

  .category-list__item {
    column-gap: 16px;
  }

  .category-list__index {
    min-width: 32px;
    height: 32px;
    font-size: 1.3rem;
  }

  .category-list__link {
    font-size: 18px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .category-list {
    max-width: 100%;
    width: 100%;
    margin: 40px 0 0;
    padding: 0 20px;
    display: block;
    gap: 0;
  }

  .category-list li {
    max-width: 100%;
    white-space: normal;
    margin-bottom: 12px;
  }

  .category-list__link {
    font-size: 18px;
    line-height: 2.2;
    min-height: 2.2em;
    white-space: normal;
  }

  .category-title {
    font-size: 26px;
    letter-spacing: 0.16em;
  }
}
