/**
 * Blog Page template — two-column feed + sidebar, horizontal cards, uniform thumbnails.
 */

.blog-page-app.blog-page-template .site-main,
.blog-single-with-hero {
  overflow-x: hidden;
}

/* ---------- Hero ---------- */
.blog-page-hero {
  position: relative;
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
}

/* Black → deep red → brand red only (no white) */
.blog-page-hero--gradient {
  background: linear-gradient(
    115deg,
    #0a0a0a 0%,
    #000000 32%,
    #4a0a0a 58%,
    #8f0000 78%,
    #cb000d 94%,
    #e51414 100%
  );
}

.blog-page-hero__inner {
  position: relative;
  z-index: 1;
  min-height: clamp(280px, 32vh, 440px);
  display: flex;
  align-items: center;
  padding-top: clamp(2.25rem, 5vw, 3.75rem);
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

/* Wider title block (fewer harsh line breaks); hero layout unchanged */
.blog-page-hero__text {
  width: min(90%, 1100px);
  max-width: 1100px;
}

/* About / Services hero — full-width copy inside fluid shell */
.blog-page-hero--page .blog-page-hero__text,
.blog-page-hero__text--full {
  width: 100%;
  max-width: none;
}

.blog-page-hero--page .blog-page-hero__subtitle {
  max-width: min(52rem, 100%);
}

.blog-page-hero--page .blog-page-hero__inner {
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}

.blog-page-hero__title {
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0 0 1rem;
  max-width: none;
  text-wrap: balance;
}

.blog-page-hero__subtitle {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.65;
  color: #5c5c5c;
  max-width: 34rem;
  margin: 0 0 1.35rem;
}

.blog-page-hero__breadcrumb {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.875rem;
}

.blog-page-hero__breadcrumb a {
  color: #4a4a4a;
  text-decoration: none;
}

.blog-page-hero__breadcrumb a:hover {
  color: var(--steeler-red, #cb000d);
}

.blog-page-hero__breadcrumb-sep {
  margin: 0 0.35rem;
  color: #9a9a9a;
}

.blog-page-hero__breadcrumb-current {
  color: var(--steeler-red, #cb000d);
  font-weight: 600;
}

/* Light text on dark red / black hero */
.blog-page-hero--gradient .blog-page-hero__title {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.blog-page-hero--gradient .blog-page-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.blog-page-hero--gradient .blog-page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.blog-page-hero--gradient .blog-page-hero__breadcrumb a:hover {
  color: #ffffff;
}

.blog-page-hero--gradient .blog-page-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.45);
}

.blog-page-hero--gradient .blog-page-hero__breadcrumb-current {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .blog-page-hero--gradient {
    background: linear-gradient(
      180deg,
      #050505 0%,
      #000000 38%,
      #6b0505 72%,
      #cb000d 100%
    );
  }

  .blog-page-hero--gradient .blog-page-hero__inner {
    align-items: flex-start;
    min-height: 0;
    padding-top: clamp(2rem, 6vw, 2.75rem);
    padding-bottom: clamp(2.5rem, 7vw, 3.5rem);
  }
}

.blog-page-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  color: #fff;
  pointer-events: none;
}

.blog-page-hero__wave-svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* ---------- Main wrap ---------- */
.blog-page-wrap {
  background: #fff;
}

.blog-page-container {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* ---------- Toolbar ---------- */
.blog-page-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #ececec;
}

.blog-page-toolbar__count {
  font-size: 0.8125rem;
  color: #777 !important;
}

.blog-page-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.blog-page-toolbar__search {
  display: flex;
  align-items: stretch;
}

.blog-page-toolbar__search-input {
  max-width: 220px;
  min-width: 160px;
  border: 1px solid #e0e0e0;
  border-radius: 4px 0 0 4px;
  background: #fafafa;
  font-size: 0.8125rem;
}

.blog-page-toolbar__search-btn {
  border-radius: 0 4px 4px 0;
  background: var(--steeler-red, #cb000d);
  border: 1px solid var(--steeler-red, #cb000d);
  color: #fff;
  padding: 0 0.95rem;
}

.blog-page-toolbar__search-btn:hover {
  background: var(--steeler-red-dark, #9d0009);
  border-color: var(--steeler-red-dark, #9d0009);
  color: #fff;
}

.blog-page-toolbar__select {
  min-width: 150px;
  font-size: 0.8125rem;
  border-color: #e0e0e0;
  border-radius: 4px;
}

/* ---------- Two columns ---------- */
.blog-page-feed {
  min-width: 0;
}

.blog-page-sidebar {
  min-width: 0;
}

/* ---------- Horizontal cards ---------- */
.blog-page-card {
  padding-bottom: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
  border-bottom: 1px solid #ececec;
}

.blog-page-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-page-card__media {
  display: block;
  height: 100%;
  min-height: 260px;
  border-radius: 4px;
  overflow: hidden;
  background: #e8e8e8;
}

.blog-page-card__img {
  width: 100%;
  height: 260px;
  max-height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.blog-page-card:hover .blog-page-card__img {
  transform: scale(1.04);
}

.blog-page-card__img--placeholder {
  background: linear-gradient(135deg, #e0e0e0 0%, #f2f2f2 100%);
}

.blog-page-card__body {
  padding: 0.35rem 0 0 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .blog-page-card__body {
    padding: 0.15rem 0 0 1.25rem;
  }
}

.blog-page-card__cat {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steeler-red, #cb000d);
  margin: 0 0 0.5rem;
}

.blog-page-card__title {
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.3;
  margin: 0 0 0.65rem;
}

.blog-page-card__title-link {
  color: #1a1a1a;
  text-decoration: none;
}

.blog-page-card__title-link:hover {
  color: var(--steeler-red, #cb000d);
}

.blog-page-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.75rem;
  color: #8a8a8a;
  margin-bottom: 0.75rem;
}

.blog-page-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-page-card__meta-icon {
  font-size: 0.8rem;
  opacity: 0.85;
}

.blog-page-card__excerpt {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.875rem;
  line-height: 1.65;
  color: #6b6b6b;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-page-card__more {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--steeler-red, #cb000d);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

.blog-page-card__more:hover {
  color: var(--steeler-red-dark, #9d0009);
}

.blog-page-card__more-arrow {
  font-size: 0.85em;
  transition: transform 0.25s ease;
}

.blog-page-card__more:hover .blog-page-card__more-arrow {
  transform: translateX(4px);
}

@media (max-width: 767.98px) {
  .blog-page-card__media {
    min-height: 200px;
    margin-bottom: 1rem;
  }

  .blog-page-card__img {
    height: 220px;
    max-height: 220px;
  }

  .blog-page-card__body {
    padding-left: 0;
  }
}

/* ---------- Sidebar ---------- */
.blog-sidebar-widget {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 4px;
  padding: 1.35rem 1.25rem;
  margin-bottom: 1.25rem;
}

.blog-sidebar-widget__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #ececec;
}

.blog-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar-list__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.875rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f2f2f2;
}

.blog-sidebar-list__item:last-child {
  border-bottom: none;
}

.blog-sidebar-list__link {
  color: #444;
  text-decoration: none;
  flex: 1;
}

.blog-sidebar-list__link:hover {
  color: var(--steeler-red, #cb000d);
}

.blog-sidebar-list__count {
  color: #9a9a9a;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.blog-sidebar-recent {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar-recent__item {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f2f2f2;
}

.blog-sidebar-recent__item:last-child {
  border-bottom: none;
}

.blog-sidebar-recent__thumb-link {
  flex-shrink: 0;
}

.blog-sidebar-recent__thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  background: #e8e8e8;
}

.blog-sidebar-recent__thumb--empty {
  display: inline-block;
}

.blog-sidebar-recent__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.blog-sidebar-recent__title {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2a2a2a;
  text-decoration: none;
}

.blog-sidebar-recent__title:hover {
  color: var(--steeler-red, #cb000d);
}

.blog-sidebar-recent__date {
  font-size: 0.72rem;
  color: #9a9a9a;
}

.blog-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-sidebar-tags__pill {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #555;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.blog-sidebar-tags__pill:hover {
  border-color: var(--steeler-red, #cb000d);
  color: var(--steeler-red, #cb000d);
}

/* Newsletter */
.blog-sidebar-widget--newsletter {
  border: none;
  background: #f9f9f9;
}

.blog-sidebar-newsletter {
  text-align: center;
}

.blog-sidebar-newsletter__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(195, 0, 0, 0.08);
  color: var(--steeler-red, #cb000d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.blog-sidebar-newsletter__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}

.blog-sidebar-newsletter__text {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0 0 1.15rem;
}

.blog-sidebar-newsletter__input {
  font-size: 0.8125rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 0.65rem;
  text-align: center;
}

.blog-sidebar-newsletter__btn {
  width: 100%;
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 4px;
  background: var(--steeler-red, #cb000d);
  border: 1px solid var(--steeler-red, #cb000d);
  color: #fff;
}

.blog-sidebar-newsletter__btn:hover {
  background: var(--steeler-red-dark, #9d0009);
  border-color: var(--steeler-red-dark, #9d0009);
  color: #fff;
}

/* ---------- Pagination ---------- */
.blog-page-pagination {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ececec;
}

.blog-page-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-page-pagination li {
  margin: 0;
}

.blog-page-pagination a.page-numbers,
.blog-page-pagination span.page-numbers:not(.dots) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.65rem;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #555;
  text-decoration: none;
  font-size: 0.875rem;
}

.blog-page-pagination span.page-numbers.current {
  background: var(--steeler-red, #cb000d);
  border-color: var(--steeler-red, #cb000d);
  color: #fff;
}

.blog-page-pagination a.page-numbers:hover {
  background: var(--steeler-red, #cb000d);
  border-color: var(--steeler-red, #cb000d);
  color: #fff;
}

.blog-page-pagination .next,
.blog-page-pagination .prev {
  padding: 0 1rem;
}

@media (max-width: 991.98px) {
  .blog-page-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-page-toolbar__actions {
    justify-content: space-between;
  }
}

/* ======================================================================
   Single post — hero + article + sidebar + related + comments
   (Matches blog listing design system)
   ====================================================================== */

.blog-single-wrap {
  background: #fff;
}

.blog-post-hero {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}

/* Same gradient language as .blog-page-hero--gradient (blog listing) */
.blog-post-hero--gradient {
  background: linear-gradient(
    115deg,
    #0a0a0a 0%,
    #000000 32%,
    #4a0a0a 58%,
    #8f0000 78%,
    #cb000d 94%,
    #e51414 100%
  );
}

.blog-post-hero__shell {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-hero__breadcrumb {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.8125rem;
  margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
}

.blog-post-hero__breadcrumb a {
  color: #6a6a6a;
  text-decoration: none;
}

.blog-post-hero__breadcrumb a:hover {
  color: var(--steeler-red, #cb000d);
}

.blog-post-hero__breadcrumb-sep {
  margin: 0 0.3rem;
  color: #b0b0b0;
}

.blog-post-hero__breadcrumb-current {
  color: var(--steeler-red, #cb000d);
  font-weight: 600;
}

/* Compact hero band (desktop target ~380–450px); gradient uses light text */
.blog-post-hero__row {
  min-height: clamp(380px, 34vw, 450px);
}

.blog-post-hero--gradient .blog-post-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.blog-post-hero--gradient .blog-post-hero__breadcrumb a:hover {
  color: #ffffff;
}

.blog-post-hero--gradient .blog-post-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.45);
}

.blog-post-hero--gradient .blog-post-hero__breadcrumb-current {
  color: #ffffff;
  font-weight: 700;
}

.blog-post-hero--gradient .blog-post-hero__title {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.blog-post-hero--gradient .blog-post-hero__meta {
  color: rgba(255, 255, 255, 0.88);
}

.blog-post-hero--gradient .blog-post-hero__meta-icon {
  opacity: 0.9;
}

.blog-post-hero--gradient .blog-post-hero__cat {
  color: #ffb4b4;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.blog-post-hero__col--text {
  display: flex;
  align-items: center;
}

.blog-post-hero__text {
  width: 100%;
  max-width: min(1100px, 92%);
}

.blog-post-hero__cat {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steeler-red, #cb000d);
  margin: 0 0 0.55rem;
}

.blog-post-hero__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0 0 1rem;
  max-width: min(1100px, 100%);
  text-wrap: balance;
}

.blog-post-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.8125rem;
  color: #6b6b6b;
}

.blog-post-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-post-hero__meta-icon {
  opacity: 0.85;
}

.blog-post-hero__col--media {
  display: flex;
  align-items: stretch;
}

.blog-post-hero__media {
  position: relative;
  width: 100%;
  flex: 1;
  align-self: stretch;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  background: #1a1a1a;
  min-height: 0;
  max-height: 450px;
}

.blog-post-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 992px) {
  .blog-post-hero__media {
    min-height: clamp(320px, 30vw, 450px);
    height: auto;
    align-self: stretch;
  }
}

@media (max-width: 991.98px) {
  .blog-post-hero__row {
    min-height: 0;
  }

  .blog-post-hero__col--text {
    margin-bottom: 1.5rem;
  }

  .blog-post-hero__media {
    position: relative;
    min-height: 220px;
    max-height: 320px;
  }

  .blog-post-hero__img {
    position: relative;
    min-height: 220px;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
  }
}

@media (max-width: 767.98px) {
  .blog-post-hero--gradient {
    background: linear-gradient(
      180deg,
      #050505 0%,
      #000000 38%,
      #6b0505 72%,
      #cb000d 100%
    );
  }
}

/* Sidebar search */
.blog-sidebar-search__row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.blog-sidebar-search__input {
  flex: 1;
  min-width: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px 0 0 4px;
  background: #fafafa;
  font-size: 0.8125rem;
}

.blog-sidebar-search__btn {
  border-radius: 0 4px 4px 0;
  background: var(--steeler-red, #cb000d);
  border: 1px solid var(--steeler-red, #cb000d);
  color: #fff;
  padding: 0 0.85rem;
}

.blog-sidebar-search__btn:hover {
  background: var(--steeler-red-dark, #9d0009);
  border-color: var(--steeler-red-dark, #9d0009);
  color: #fff;
}

/* Article prose */
.blog-single-main {
  min-width: 0;
}

.blog-single-content {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: clamp(1.0625rem, 1.1vw, 1.25rem);
  line-height: 1.75;
  color: #333;
}

.blog-single-content > *:first-child {
  margin-top: 0;
}

.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.blog-single-content h2 {
  font-size: clamp(1.5rem, 2vw, 1.85rem);
}

.blog-single-content h3 {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
}

.blog-single-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--steeler-red, #cb000d);
  background: #fafafa;
  font-style: italic;
  color: #444;
}

.blog-single-content a {
  color: var(--steeler-red, #cb000d);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-single-content a:hover {
  color: var(--steeler-red-dark, #9d0009);
}

.blog-single-content ul,
.blog-single-content ol {
  padding-left: 1.35rem;
}

.blog-single-page-links {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ececec;
  font-size: 0.875rem;
}

.blog-single-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid #ececec;
}

.blog-single-tags__label {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #555;
}

.blog-single-tags__pill {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #555;
  text-decoration: none;
}

.blog-single-tags__pill:hover {
  border-color: var(--steeler-red, #cb000d);
  color: var(--steeler-red, #cb000d);
}

.blog-single-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.blog-single-share__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #555;
}

.blog-single-share__links {
  display: flex;
  gap: 0.5rem;
}

.blog-single-share__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #444;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.blog-single-share__link:hover {
  border-color: var(--steeler-red, #cb000d);
  color: var(--steeler-red, #cb000d);
  background: rgba(195, 0, 0, 0.04);
}

.blog-single-author {
  display: flex;
  gap: 1.15rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border: 1px solid #ececec;
  border-radius: 6px;
  background: #fafafa;
}

.blog-single-author__avatar {
  flex-shrink: 0;
}

.blog-single-author__img {
  border-radius: 50%;
}

.blog-single-author__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin: 0 0 0.25rem;
}

.blog-single-author__name {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}

.blog-single-author__bio {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.blog-single-adjacent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

.blog-single-adjacent__link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  border: 1px solid #ececec;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-single-adjacent__link:hover {
  border-color: var(--steeler-red, #cb000d);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.blog-single-adjacent__link--next {
  text-align: right;
  grid-column: 2;
}

.blog-single-adjacent__dir {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steeler-red, #cb000d);
}

.blog-single-adjacent__title {
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2a2a2a;
}

.blog-single-adjacent__placeholder {
  display: none;
}

@media (max-width: 575.98px) {
  .blog-single-adjacent {
    grid-template-columns: 1fr;
  }

  .blog-single-adjacent__link--next {
    grid-column: 1;
    text-align: left;
  }
}

/* Related posts */
.blog-related {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.5rem);
  border-top: 1px solid #ececec;
}

.blog-related__heading {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: #1a1a1a;
}

.blog-related-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s ease;
}

.blog-related-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.blog-related-card__media {
  display: block;
  overflow: hidden;
  background: #e8e8e8;
}

.blog-related-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-related-card:hover .blog-related-card__img {
  transform: scale(1.03);
}

.blog-related-card__img--placeholder {
  display: block;
  height: 200px;
  background: linear-gradient(135deg, #e0e0e0 0%, #f2f2f2 100%);
}

.blog-related-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-related-card__cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steeler-red, #cb000d);
  margin: 0 0 0.4rem;
}

.blog-related-card__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.blog-related-card__title a {
  color: #1a1a1a;
  text-decoration: none;
}

.blog-related-card__title a:hover {
  color: var(--steeler-red, #cb000d);
}

.blog-related-card__excerpt {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #6b6b6b;
  margin: 0 0 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-related-card__date {
  font-size: 0.72rem;
  color: #9a9a9a;
}

.blog-single-comments-column {
  margin-top: 0;
}

/* Comments */
.blog-comments {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.5rem);
  border-top: 1px solid #ececec;
}

.blog-comments__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: #1a1a1a;
}

.blog-comments .comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.blog-comments .comment-list .children {
  list-style: none;
  margin-left: 0;
  padding-left: clamp(0.75rem, 2vw, 1.5rem);
  border-left: 1px solid #ececec;
}

.blog-comments .comment-body {
  padding: 1.15rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: var(--font-main, "Montserrat", system-ui, sans-serif);
  font-size: 0.9rem;
  line-height: 1.65;
  color: #444;
}

.blog-comments .comment-meta {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.blog-comments .comment-author .fn {
  font-weight: 700;
  font-style: normal;
  color: #1a1a1a;
}

.blog-comments .reply a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--steeler-red, #cb000d);
  text-decoration: none;
}

.blog-comments .reply a:hover {
  text-decoration: underline;
}

.blog-comments__nav-prev,
.blog-comments__nav-next {
  font-size: 0.8125rem;
}

.blog-comments__closed {
  font-size: 0.875rem;
  color: #777;
}

.blog-comments__reply-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #1a1a1a;
}

.blog-comments__form {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid #ececec;
  border-radius: 6px;
  background: #fafafa;
}

.blog-comments__form .comment-form-author,
.blog-comments__form .comment-form-email,
.blog-comments__form .comment-form-url,
.blog-comments__form .comment-form-comment {
  margin-bottom: 1rem;
}

.blog-comments__form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #444;
}

.blog-comments__form input[type="text"],
.blog-comments__form input[type="email"],
.blog-comments__form input[type="url"] {
  width: 100%;
  max-width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.5rem 0.65rem;
  font-size: 0.875rem;
}

.blog-comments__form textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.65rem 0.75rem;
  font-size: 0.875rem;
  min-height: 140px;
}

.blog-comments__submit {
  background: var(--steeler-red, #cb000d);
  border: 1px solid var(--steeler-red, #cb000d);
  color: #fff;
  font-weight: 600;
  padding: 0.55rem 1.35rem;
  border-radius: 4px;
}

.blog-comments__submit:hover {
  background: var(--steeler-red-dark, #9d0009);
  border-color: var(--steeler-red-dark, #9d0009);
  color: #fff;
}

.blog-comments .comments-pagination {
  margin: 1rem 0 1.5rem;
}
