.sun-quote {
  position: relative;
  margin: 40px 0 0 4px;
  padding: 32px 40px 32px 48px;
  background: #D9DDE2;
  border: none;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sun-quote::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #2F5B9A;
  border-radius: 10px;
}
.sun-quote__text {
  position: relative;
  z-index: 1;
  margin: 0px 0 0 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  color: #000C2A!important;
}
.sun-quote__text:last-child {
  margin-bottom: 0;
}
.sun-quote__footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.sun-quote__cite {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
.sun-quote__footer::after {
  content: '';
  display: block;
  width: 56px;
  height: 48px;
  background: url(./quote.svg) no-repeat center center;
  background-size: contain;
}

@media (max-width: 480px) {
  .sun-quote {
    padding: 24px;
    gap: 24px;
  }

  .sun-quote__text {
    font-size: 18px;
  }

  .sun-quote__cite {
    font-size: 14px;
  }
}