.case-content {  
  overflow-y: auto;

  scrollbar-width: none;        
  -ms-overflow-style: none;   
}
.case-content::-webkit-scrollbar {
  display: none;                /* Chrome / Safari */
}


.case-modal__slider {
  border-radius: var(--radius-slg);
  overflow: hidden;
   height: 271px;
}

.case-modal__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-modal__content {
  display:flex;
  flex-direction: column;
  gap:48px
}

.case-modal-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.case-modal-title h3{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
.case-modal-title p{
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}


.case-modal__highlight {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;

  background: var(--color-primary);
  color: #fff;
  padding: 24px;
  border-radius: 16px;
}
.case-modal__highlight p{
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
.case-modal__highlight svg{
  height: 48px;
  width: 48px;
}
.case-section {

}

.case-section h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 24px;
}

.case-section P {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.case-section-list{
 display: flex;
 flex-direction: column;
 gap: 16px
}

.case-section-list-item{
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-light);
}

.case-section-list-item span{
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-secondary)
}
.case-section-list-item p{
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.case-section-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.case-settings-item span{
  width: 50%;
}

.case-result__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background-color: #026DDF;
  padding: 8px;
  border-radius: 24px;
}

.case-result__item {
  background: #0a74ff;
  color: #fff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}

.case-result__item:first-child {
  grid-column: span 2;
}

.case-result__value {
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 24px;
}

.case-result__title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}


@media (max-width:  768px) {
  .case-result__grid{
    display: flex;
    flex-direction: column;
  }
}
