/* -------------------------------------------------------------------------- */
/* Hero Section                                                               */
/* -------------------------------------------------------------------------- */
.case-studie-hero__content {
  background: #f5f2ee;
  padding: clamp(48px, 7vw, 98px) clamp(24px, 6vw, 146px);
  min-height: 520px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(80px);
  animation: imageReveal 1s ease-out forwards;
  
}

.hero-eyebrow {
  color: var(--color-brand-green);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.case-studie-hero__content h1 {
  margin-top: 16px;
  margin-bottom: 16px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 55px;
  font-family: var(--font-title);
  line-height: 60px;
}

.case-studie-hero__content p {
  color: var(--color-green);
  font-weight: 700;
  font-size: 24px;
  font-family: var(--font-body);
  line-height: 140%;
}

.case-studie-hero__image {
  height: 100%;
  min-height: 520px;
}

.case-studie-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(80px);
  animation: imageReveal 1s ease-out forwards;
}

@media (max-width: 991px) {
  .case-studie-hero__content {
    min-height: auto;
    padding: 56px 24px;
  }

  .case-studie-hero__image {
    min-height: 350px;
  }

  .case-studie-hero__image img {
    height: 350px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .case-studie-hero__content {
    padding: 48px 20px;
  }
  .case-studie-hero__image img {
    min-height: auto;
  }
}
@keyframes imageReveal {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* >>>>>>>>>1 */
.date_text {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-orange);
  font-size: 18px;
  line-height: 1.5;
  margin-top: -20px;
  margin-bottom: 20px;
}

.physical_title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  font-family: var(--font-title);
  line-height: 1.2;
  color: var(--color-brand-gray);
}

.follow-up-img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  display: block;

  transition: transform 0.3s ease;
  cursor: pointer;
}

.follow-up-img:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#child-bottom-container {
  padding-bottom: 120px;
}

.item-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}
.item-group:nth-child(1) {
  animation-delay: 0.1s;
}
.item-group:nth-child(2) {
  animation-delay: 0.2s;
}
.item-group:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.item-group a + img {
  margin-left: 56px;
}

.item-group-icon {
  flex: 0 0 auto;
}
.print_share_icon {
  text-decoration: underline;
  color: var(--color-brand-gray);
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.5;
}

.article_container {
  margin-top: 48px;
}
.article_container div {
  margin-top: 20px;
  width: 100%;
  height: auto;
}

.article_container p {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-body);
  line-height: 1.5;
  color: var(--color-brand-gray);
}

.article_container div a {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  color: var(--color-brand-gray);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
  white-space: nowrap;
}

@media (max-width: 1194px) {
  .article_container div a {
    white-space: wrap;
  }
}

@media (max-width: 991.98px) {
  .tried-child-container,
  .tried_child_container {
    max-width: 100%;
    margin-top: 40px;
  }

  #child-bottom-container {
    padding-bottom: 5px;
  }

  .item-group {
    flex-wrap: wrap;
    gap: 12px;
  }

  .item-group a + img {
    margin-left: 24px;
  }

  .article_container {
    margin-top: 5px;
  }
}

@media (max-width: 575.98px) {
  .group-title--text {
    font-size: 16px;
  }

  .date-text,
  .date_text {
    font-size: 16px;
    margin-top: -10px;
    margin-bottom: 14px;
  }

  .tried-child-container,
  .tried_child_container {
    margin-top: 32px;
  }

  .item-group {
    align-items: flex-start;
  }

  .item-group p {
    width: calc(100% - 52px);
    margin-bottom: 0;
  }

  .article_container div a {
    margin-bottom: 12px;
    font-size: 16px;
  }
}
