.infoContainer {
  width: 90%;
  margin: 0 auto;
  padding: 40px 24px 0 24px;
  margin-bottom: 2rem;
}

.main-title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.desc {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.button-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.btn {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 1.25rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: background 0.2s;
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.btn:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
@media (max-width: 900px) {
  .infoContainer {
    width: 100%;
    padding: 3rem;
  }

  .main-title {
    font-size: 2.1rem;
  }
  .desc {
    font-size: 1rem;
  }
  .button-row {
    align-items: flex-start;
  }
  .btn {
    width: 100%;
    text-align: left;
  }
  footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
  }
}

@media (max-width: 660px) {
  .infoContainer {
    width: 100%;
    padding: 1.5rem;
  }

  .posting-row {
    display: inline-block;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .posting-desc {
    padding: 0;
  }

  .posting-date p {
    padding-bottom: 0.5rem;
  }

  .posting-desc p {
    padding-bottom: 1rem;
  }

  footer {
    position: static;
  }

  .posting-action {
    opacity: inherit;
    width: 70%;
  }

  .posting-action label {
    color: #fff;
    padding-right: 1rem;
    font-size: 16px;
  }

  .button-row {
    flex-direction: column;
  }
}
