/* Blog-specific styling layered on top of your global styles */

.breadcrumbs{
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  opacity: .85;
  margin-bottom: 14px;
}

.post-header{
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,.12);
  margin-bottom: 18px;
}

.post-title{
  margin: 0 0 8px;
}

.post-meta{
  margin: 0;
  font-size: 14px;
  opacity: .8;
}

.post-hero{
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-top: 14px;
  border: 1px solid rgba(0,0,0,.12);
}

/* Readability for long posts */
.post-content{
  max-width: 74ch;     /* keeps line length readable */
}

.post-content p{
  margin: 0 0 14px;
}

.post-content h2{
  margin-top: 22px;
  font-size: 22px;
}
.post-content h3{
  margin-top: 18px;
  font-size: 18px;
}

.post-content ul,
.post-content ol{
  padding-left: 22px;
  margin: 0 0 14px;
}

.post-content blockquote{
  margin: 16px 0;
  padding: 14px 16px;
  border-left: 5px solid var(--gold);
  background: rgba(255,255,255,.35);
  border-radius: 14px;
}

.post-content hr{
  border: 0;
  height: 1px;
  background: rgba(0,0,0,.12);
  margin: 20px 0;
}

.post-cta{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: 14px;
  background: rgba(35,88,54,.10);
  border: 1px solid rgba(35,88,54,.20);
}

.post-footer{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.12);
}

/* Blog index */
.post-list{
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.post-item{
  display: block;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.30);
}

.post-item:hover{
  background: rgba(255,255,255,.42);
}

.post-item-top{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.post-item-title{
  font-weight: 900;
}

.post-item-date{
  font-size: 13px;
  opacity: .75;
}

.post-item-excerpt{
  margin-top: 6px;
}
