.detailed-content {  
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    height: 100%;
    
}


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

.detailed-modal__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-slg);

}

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

.detailed-modal-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detailed-modal-title h3{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
.detailed-modal-title p{
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-secondary)
}


.detailed-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;
}
.detailed-modal__highlight p{
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
.detailed-modal__highlight svg{
  height: 48px;
  width: 48px;
}
.detailed-section {

}

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

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

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

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

.detailed-section-list-item span{

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

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

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

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

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

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