body {
  background-color: var(--deep-black);
}

aside {
  padding-top: 5rem;
  border-right: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
  margin-bottom: 1rem;
  align-content: start;
}

aside .rounded-date {
  justify-self: start;
  align-self: start;
  padding: 1rem 2rem;
}

main {
  border-bottom: 1px solid var(--cream);
  margin-bottom: 1rem;
  color: var(--cream);
}

main > section {
  padding: 5rem calc(100vw / 36) 1rem;
}

.about-intro {
  padding: 5rem calc(100vw / 36) 1rem;
}

.heading-3 {
  color: inherit;
}

.about-intro form {
  display: grid;
  grid-template-rows: repeat(3, 4rem) 6rem;
  grid-row-gap: 1em;
}

.about-intro form input {
  padding-left: 2em;
  border-radius: 8px;
}

.about-intro form textarea {
  padding: 2em 2em;
  border-radius: 8px;
}

.about-intro form input:focus,
.about-intro form input:active,
.about-intro form textarea:focus,
.about-intro form textarea:active {
  outline: none;
  border-bottom: 4px solid var(--green);
}

.about-intro form input::placeholder,
.about-intro form textarea::placeholder {
  text-transform: uppercase;
}

.about-intro form input[type="submit"] {
  background-color: var(--green);
  border-radius: 16px;
  text-transform: uppercase;
  justify-self: start;
  padding: 1em 2em;
  border: none;
}

.what-we-stand .developments {
  margin-left: 0;
  padding-left: 0;
}

.what-we-stand .developments li {
  border-left: 3px solid white;
  padding-left: 2rem;
}

.what-we-stand .developments li:first-child {
  padding-top: 0;
}

.what-we-stand .developments li:last-child {
  border-left: 3px solid white;
}

.what-we-stand .developments li:last-child::after {
  content: '';
  display: block;
  position: absolute;
  left: -3px;
  top: 10px;
  width: 3px;
  height: calc(100% - 10px);
  background-color: var(--deep-black);
  z-index: 2;
}

.what-we-stand .developments li::before {
  left: -10px;
  z-index: 3;
}

.what-we-stand .developments li:not(:last-child):not(:first-child)::before {
  top: -8px;
}

.what-we-stand .developments li:first-child::before {
  top: 0;
}

.what-we-stand .developments li:last-child::before {
  top: -10px;
}

.what-we-stand .developments p {
  margin: 0;
  padding-bottom: 1em;
}

.what-we-stand .developments h3,
.what-we-stand .developments p {
  margin: 0;
}
.what-we-stand .developments h3 {
  margin-bottom: 1em;
}

.member-ad {
  display: grid;
  grid-template-columns: 1fr 1fr 3fr;
  grid-template-rows: repeat(3, max-content);
  grid-column-gap: 1em;
  grid-template-areas:
  "img img heading"
  "img img body"
  "img img link";
  align-items: center;
  justify-content: start;
}

.member-ad img {
  grid-area: img;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.member-ad .heading-3 {
  align-self: end;
}

.member-ad p {
  align-self: start;
}

.member-ad button {
  justify-self: start;
  align-self: start;
  border: none;
}

.member-ad .action-call {
  color: var(--deep-yellow);
}

.member-ad button {
  background-color: var(--deep-yellow);
  border-radius: 16px;
  text-transform: uppercase;
  border: none;
}

@media(max-width: 768px) {
  aside,
  main {
    border: none;
  }
  aside {
    border-bottom: 1px solid var(--cream);
  }
  main > section,
  .about-intro {
    padding: 3rem 0 1rem;
  }

  .member-ad {
    grid-template-columns: 1fr;
    grid-template-areas:
    "img"
    "header"
    "content"
    "link";
  }
}
