.footer {
  margin-top: auto;
  width: 100%;
  background-color: #250133;
  color: #dfb4ef;
  border-top: 1px solid #6d3b7b;
}

.footer-container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(2, minmax(140px, 0.7fr));
  gap: 64px;
  padding: 68px 0 54px;
}

.purpez-info {
  max-width: 360px;
}

.purpez-info h2 {
  font-family: 'Sofia Sans Extra Condensed';
  color: #f8eaff;
  font-size: 56px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 1px;
}

.purpez-info p {
  color: #c995d4;
  font-size: 16px;
  line-height: 1.45;
  margin-top: 18px;
}

.footer-actions {
  display: contents;
}

.ordered-list {
  list-style: none;
  font-size: 16px;
  margin-top: 20px;
  font-family: 'Instrument Serif';
}

.ordered-list li {
  margin-bottom: 12px;
}

a {
  text-decoration: none;
  color: #dfb4ef;
}

a:hover {
  color: #f8eaff;
  transition: color 0.2s ease;
}

a:active {
  opacity: 0.7;
}

.social-icons img {
  width: 22px;
  height: 22px;
  margin-right: 18px;
  cursor: pointer;
  opacity: 0.8;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icons img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.copyright {
  border-top: 1px solid #6d3b7b;
  color: #b982c5;
  font-size: 14px;
  padding: 18px 0 22px;
}

.action-header {
  font-family: 'Sofia Sans Extra Condensed';
  color: #f8eaff;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.social-icons {
  padding-bottom: 30px;
}

@media (max-width: 743px) {
  .html {
    font-size: 100%;
  }

  .footer-container {
    width: min(100% - 40px, 440px);
  }

  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 28px;
    padding: 52px 60px 38px;
  }

  .purpez-info {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
  }

  .action-header {
    text-align: center;
  }

  .purpez-info h2 {
    font-size: 55px;
    text-align: center;
  }

  .purpez-info p {
    font-size: 17px;
  }

  .ordered-list {
    font-size: 3vw;
    align-items: center;
    text-align: left;
  }

  .social-icons {
    padding-bottom: 26px;
    padding-left: 10px;
    text-align: center;
  }

  .copyright {
    text-align: center;
  }
}

