.sun-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0;
  padding: 32px;
  background: #258F3F1A;
  border-radius: 8px;
  overflow: hidden;
}

.sun-info::before {
  content: '';
  display: block;
  width: 21.5px;
  height: 21.5px;
  background: url(./info.svg) no-repeat center center;
  background-size: contain;
  flex-shrink: 0;
}

.sun-info__text {
  margin: 0;
  color: #2e7d32!important;
  font-size: 1em;
  line-height: 1.2;
}

.sun-info__text strong {
  color: #2e7d32;
  font-weight: 700;
}

@media (max-width: 480px) {
  .sun-info {
    padding: 12px;
  }
}