.infoContainer {
  max-width: 1800px;
  margin: 0 auto;
  padding: 3rem 5rem;
  padding-bottom: 0;
}

.title {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 80px;
  letter-spacing: -2px;
}

.posting-list {
  width: 100%;
  margin-top: 0;
}

.posting-row {
  display: flex;
  align-items: center;
  border-top: 1px solid #e5e5e5;
  min-height: 120px;
  transition: background 0.2s;
  position: relative;
}

.posting-row:hover .posting-action {
  opacity: 1;
  pointer-events: auto;
}

.posting-row:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.posting-date {
  flex: 0 0 200px;
  font-size: 28px;
  font-weight: 400;
  color: #222;
  padding-left: 4px;
}

.posting-desc {
  flex: 1 1 auto;
  font-size: 24px;
  color: #222;
  padding: 0 32px;
  line-height: 1.3;
  word-break: break-word;
}

.posting-action {
  flex: 0 0 80px;
  height: 120px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}

.posting-action:hover {
  background: #222;
}

.arrow {
  display: inline-block;
  width: 28px;
  height: 28px;
  color: #fff;
}

.posting-action label {
  display: none;
}

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

  .title {
    font-size: 36px;
    margin-bottom: 40px;
  }

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

  .posting-desc {
    padding: 0;
  }

  .posting-date,
  .posting-desc {
    font-size: 18px;
  }

  .posting-action {
    height: 60px;
    opacity: inherit;
    width: 35%;
    margin-bottom: 2rem;
  }

  .posting-action label {
    color: #fff;
    font-size: 18px;
    padding-right: 1rem;
    align-items: center;
    display: inline-block;
  }

  .arrow {
    width: 18px;
    height: 18px;
  }

  footer {
    position: inherit;
    width: 100%;
    bottom: 0;
    left: 0;
  }
}

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

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

  .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%;
    margin-bottom: 1rem;
  }

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