/* Blog single post (special layout) */

/* Hide Siloe page heading for single posts (we render our own breadcrumb/hero). */
body.single-post .page-heading-wrap {
  display: none;
}

body.single-post #content {
  padding-top: 0;
}

.siloe-single-hero {
  padding: 0 0 22px 0;
}

.siloe-single-hero-media {
  border-radius: 14px;
  overflow: hidden;
}

.siloe-single-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
}

.siloe-single-body {
  padding-bottom: 40px;
}

.siloe-single-meta {
  border-right: 1px solid #e5e5e5;
  padding-top: 6px;
}

.siloe-single-meta-item {
  padding: 14px 0;
  border-bottom: 1px solid #efefef;
}

.siloe-single-meta-item:last-child {
  border-bottom: none;
}

.siloe-single-meta-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: 6px;
}

.siloe-single-meta-value {
  font-size: 14px;
  color: #111;
}

.siloe-single-meta-value--inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.siloe-single-meta-sep {
  color: #9a9a9a;
  line-height: 1;
}

.siloe-single-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.siloe-single-tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: #f7f7f7;
  color: #444;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 22px;
  text-decoration: none;
}

.siloe-single-tag:hover {
  color: #000;
}

.siloe-single-content {
  padding-top: 6px;
}

.siloe-single-kickers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.siloe-single-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #222;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
}

.siloe-single-kicker:hover {
  color: #000;
  border-color: #bcbcbc;
}

.siloe-single-title {
  font-size: 46px;
  line-height: 1.08;
  font-weight: 500;
  margin: 0 0 18px 0;
}

.siloe-single-entry .entry-content {
  font-size: 15px;
  line-height: 1.8;
}

/* Ensure inline content links are visibly links (underlined). */
.siloe-single-entry .entry-content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.siloe-single-entry .entry-content a:hover,
.siloe-single-entry .entry-content a:focus {
  text-decoration: underline;
}

/* Share block tweaks (existing template markup) */
.siloe-single-meta-share .post-item-share {
  margin-top: 0;
}

.siloe-single-meta-share .post-item-share .title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.siloe-single-meta-share .siloe-blog-share a {
  margin-right: 10px;
}

@media (max-width: 991.98px) {
  .siloe-single-meta {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 18px;
  }

  /* Keep date + reading time on one line on mobile */
  .siloe-single-meta-value--inline {
    white-space: nowrap;
    flex-wrap: nowrap;
  }

  .siloe-single-title {
    font-size: 36px;
  }
}

