/* Header
--------------------------------------------- */
#header {
  position: relative;
}
.header {
  background-color: var(--orange-100);
  padding: 0;
}

@media (min-width: 768px) {
  .header .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--lg);
    padding-top: 0;
    padding-bottom:0;
  }
}

.header .info {
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.header .post-categories {
  background-color: var(--gold);
  border-radius: var(--xs);
  padding: var(--xs) var(--sm);
}

.header .post-categories li {
  margin-bottom:0;
}

.header .date {
  padding: var(--xs) var(--md);
}

.header .post-categories a {
  text-decoration: none;
  color: var(--black);
  padding: var(--sm);
}

.header .meta {
  display:flex;
  font-size: 1rem;
  font-weight: 400;
  flex-direction: column;
}

@media (min-width: 768px) {
  .header .meta {
    flex-direction: row;
  }
}

.header .image {
  display: flex;
  flex-direction: column;
  justify-content: center;
 }

/* Post
--------------------------------------------- */
.post .container {
  padding-top: var(--lg);
  padding-bottom: var(--lg);
}

button.share {
  border:0;
  background-color: var(--gold);
  border-radius: var(--xs);
  padding: var(--md) var(--lg);
  text-transform: uppercase;
  letter-spacing: .1rem;
}

@media (min-width: 768px) {
  .post .container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: var(--xl);
  }
  .post .main-content {
    max-width: 80ch;
  }
}

.post-cta {
  background-color: var(--purple-100);
  text-align:center;
  padding: var(--xxl) 0;
  margin-bottom: var(--xl);
}

@media (min-width: 768px) {
  .post-cta .container {
    margin:0 auto;
    max-width: 80ch;
  }
}

.post-cta .title {
  color: var(--white);
  margin-bottom: var(--sm);
}

.post-cta .content {
  color: var(--white);

}