/* ==============================
   CLUSTER INTRO
============================== */

.cluster-page {
  padding:
    80px 0 0;
}

.cluster-header,
.cluster-intro,
.cluster-index {
  min-height: 85vh;
}

.cluster-header {
  display: grid;

   grid-template-columns:
     0.95fr
     1.05fr;


  gap: 0px;

 align-items: start;
}

/* BREADCRUMB */
.cluster-breadcrumb {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 24px;

  font-size: 13px;

  color:
    rgba(91,59,30,0.55);
}

.cluster-breadcrumb a {
  color: inherit;

  text-decoration: none;
}

.cluster-breadcrumb a:hover {
  opacity: 0.7;
}

/* INTRO */
.cluster-intro {
  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: center;

  overflow: hidden;

  border-radius: 10px;
}

.cluster-intro::after {
  content: "";

  position: absolute;
  inset: 0;

      background:
    linear-gradient(
  rgba(234,225,203,0.18),
    rgba(0,0,0,0.12)
    );

  z-index: 1;
}


.cluster-intro-image {
 position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0.9;
}



.cluster-intro-content {
 position: relative;
  z-index: 2;

   padding: 0 30px 0px 90px;
}

.cluster-intro h1 {
  margin: 0 0 24px;

  font-size:
    clamp(38px, 4vw, 58px);

  line-height: 1.04;

  font-weight: 500;

  color: var(--dark);
}

.cluster-description {
  max-width: 620px;

  line-height: 1.9;
}

/* ==============================
   CLUSTER INDEX
============================== */

.cluster-index {
 display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 0 30px;

  max-width: 650px;
  width: 100%;
}

.cluster-index h2 {
  margin: 0 0 30px;

  font-size: 14px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--secondary);
}

.cluster-index-list {
  display: flex;

  flex-direction: column;
}

.cluster-index-list a {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 20px 0;

  text-decoration: none;

  color: inherit;

  border-top:
    1px solid rgba(91,59,30,0.08);

  transition:
    opacity 0.3s ease;
}

.cluster-index-list a:hover {
  opacity: 0.7;
}

.cluster-index-list a:last-child {
  border-bottom:
    1px solid rgba(91,59,30,0.08);
}

.cluster-index-list span {
  flex-shrink: 0;

  width: 34px;

  font-size: 11px;

  letter-spacing: 1px;

  color: var(--secondary);
}


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

@media (max-width: 900px) {

  /* PAGE */
  .cluster-page {
    padding: 76px 0 0;
  }

  /* HEADER */
  .cluster-header {
    grid-template-columns: 1fr;

    min-height: auto;
  }

  /* HERO */
  .cluster-intro {
    min-height: 45vh;

    border-radius: 0;
  }

  .cluster-intro-content {
    padding:
      40px
      24px;
  }

  /* BREADCRUMB */
  .cluster-breadcrumb {
    margin-bottom: 18px;

    font-size: 12px;

    gap: 8px;
  }

  /* TITLE */
  .cluster-intro h1 {
    margin-bottom: 16px;

    font-size:
      clamp(34px, 8vw, 46px);

    line-height: 1;
  }

  /* DESCRIPTION */
  .cluster-description {
    max-width: none;
  }

  /* INDEX */
  .cluster-index {
    min-height: auto;

    max-width: none;

    width: 100%;

    padding:
      40px
      24px
      0;
  }

  /* INDEX TITLE */
  .cluster-index h2 {
    margin-bottom: 24px;
  }

  /* INDEX LINKS */
  .cluster-index-list a {
    padding: 18px 0;

    align-items: flex-start;

    gap: 14px;
  }

  .cluster-index-list span {
    width: 28px;
  }
}