/* case */
.case__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .case__container {
    gap: 28px;
  }
}

.case__card {
  background: var(--base-white);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .case__card {
    border-radius: 40px;
    flex-direction: column;
    padding: clamp(30px, 4.17vw, 60px);
    gap: clamp(20px, 2.78vw, 40px);
  }
}

@media screen and (min-width: 901px) {
  .case__card {
    border-radius: 40px;
    flex-direction: row;
    padding: clamp(30px, 4.17vw, 60px);
    gap: clamp(20px, 2.78vw, 40px);
  }
}

.case__image {
  border-radius: 20px;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .case__image {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
}

@media screen and (min-width: 901px) {
  .case__image {
    width: clamp(250px, 27.78vw, 400px);
    height: clamp(170px, 19.1vw, 275px);
  }
}

.case__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .case__content {
    gap: 12px;
  }
}
.case__companyLogo {
  max-width: 160px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .case__companyLogo {
    max-width: clamp(180px, 19.44vw, 280px);
  }
}

.case__companyName {
  font-size: 16px;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .case__companyName {
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    margin-top: 30px;
  }
}

.case__department {
  font-size: 12px;
  line-height: 2;
  color: var(--base-dark-gray);
}

@media screen and (min-width: 768px) {
  .case__department {
    font-size: 16px;
  }
}

.case__description {
  display: flex;
  flex-direction: column;
}

.case__descriptionText {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .case__descriptionText {
    align-items: unset;
  }
}
.case__descriptionText::before {
  content: url('../images/icon-check.svg');
  display: inline-block;
  height: 16px;
}

@media screen and (min-width: 768px) {
  .case__descriptionText::before {
    margin-top: 2px;
  }
  .case__descriptionText:first-child::before {
    margin-top: 14px;
  }
}

.case__highlight {
  color: var(--point-red);
  font-weight: bold;
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .case__highlight {
    font-size: 24px;
  }
}

.case__budges {
  display: flex;
  justify-content: center;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .case__budges {
    justify-content: flex-start;
  }
}
