
/* Slide 17 - Total Budget Summary */
.slide17-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  padding: 0;
  width: 1600px;
  height: 950px;
}

@media (max-width: 1800px) {
  .slide17-content {
    height: 100%;
    width: 100%;
  }
}

@media (max-height: 700px) {
  .slide17-content {
    height: unset;
  }
}

.slide17-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.budget-summary-container-17 {
  width: 100%;
  max-width: 800px;
  padding: 40px;
  z-index: 2;
  position: relative;
}

.budget-summary-title-17 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.budget-summary-subtitle-17 {
  font-size: 1.2rem;
  text-align: center;
  color: #475569;
  margin-bottom: 30px;
  font-weight: 500;
}

.budget-summary-section-17 {
  margin-bottom: 25px;
}

.budget-summary-grid-17 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto 25px;
}

.budget-summary-item-17 {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 18px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

.budget-summary-item-17:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.summary-icon-17 {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summary-icon-17 img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.summary-content-17 {
  flex: 1;
}

.summary-content-17 h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.total-budget-summary-17 {
  display: flex;
  justify-content: center;
}

.total-budget-card-17 {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: 15px;
  padding: 25px 40px;
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.3);
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 400px;
}

.total-budget-icon-17 {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.total-budget-icon-17 img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.total-budget-content-17 {
  flex: 1;
  text-align: center;
}

.total-budget-content-17 h3 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin: 0;
}

/* Desktop Small (1100px - 1440px) */
@media (min-width: 1100px) and (max-width: 1440px) {
  .budget-summary-container-17 {
    padding: 35px;
  }

  .budget-summary-title-17 {
    font-size: 2.5rem;
  }

  .budget-summary-subtitle-17 {
    font-size: 1.1rem;
  }
}

/* Desktop Small (767px - 1100px) */
@media (min-width: 767px) and (max-width: 1100px) {
  .budget-summary-container-17 {
    padding: 30px;
    max-width: 600px;
  }

  .budget-summary-title-17 {
    font-size: 2.2rem;
  }

  .budget-summary-subtitle-17 {
    font-size: 1rem;
  }

  .budget-summary-item-17 {
    padding: 15px 20px;
    gap: 12px;
  }

  .summary-icon-17 {
    width: 40px;
    height: 40px;
  }

  .summary-icon-17 img {
    width: 20px;
    height: 20px;
  }

  .summary-content-17 h3 {
    font-size: 1.2rem;
  }

  .total-budget-card-17 {
    padding: 20px 30px;
    min-width: 350px;
  }

  .total-budget-content-17 h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 767px) {
  .slide17-content {
    padding: 8px 6px;
  }

  .budget-summary-container-17 {
    padding: 8px;
    max-width: 100%;
  }

  .budget-summary-title-17 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    line-height: 1.0;
  }

  .budget-summary-subtitle-17 {
    font-size: 0.7rem;
    margin-bottom: 12px;
    padding: 0 5px;
  }

  .budget-summary-section-17 {
    margin-bottom: 10px;
  }

  .budget-summary-grid-17 {
    gap: 4px;
    margin-bottom: 10px;
  }

  .budget-summary-item-17 {
    padding: 8px 10px;
    gap: 6px;
    flex-direction: row;
    text-align: left;
  }

  .summary-icon-17 {
    width: 24px;
    height: 24px;
  }

  .summary-icon-17 img {
    width: 12px;
    height: 12px;
  }

  .summary-content-17 h3 {
    font-size: 0.8rem;
  }

  .total-budget-summary-17 {
    margin-top: 8px;
  }

  .total-budget-card-17 {
    padding: 8px 15px;
    min-width: auto;
    flex-direction: row;
    gap: 6px;
  }

  .total-budget-icon-17 {
    width: 28px;
    height: 28px;
  }

  .total-budget-icon-17 img {
    width: 14px;
    height: 14px;
  }

  .total-budget-content-17 h3 {
    font-size: 1rem;
  }
}

@media (max-height: 700px) {
  .slide17-content {
    padding: 15px 10px;
  }

  .budget-summary-container-17 {
    padding: 15px;
  }

  .budget-summary-title-17 {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }

  .budget-summary-subtitle-17 {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .budget-summary-grid-17 {
    gap: 8px;
    margin-bottom: 15px;
  }

  .budget-summary-item-17 {
    padding: 10px 12px;
  }

  .total-budget-card-17 {
    padding: 12px 15px;
  }
}
