.hseq-blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hseq-blog-page__header {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #fff;
  padding: 56px 0 48px;
}

.hseq-blog-page__eyebrow {
  margin: 0 0 8px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f15924;
  font-weight: 700;
}

.hseq-blog-page__title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.hseq-blog-page__intro {
  margin: 0;
  max-width: 720px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}

.hseq-blog-page__content {
  padding: 48px 0 72px;
}

.hseq-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hseq-blog-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hseq-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.12);
}

.hseq-blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3f4f6;
}

.hseq-blog-card__image,
.hseq-blog-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hseq-blog-card__placeholder {
  background: linear-gradient(135deg, #f15924 0%, #d94c1f 100%);
}

.hseq-blog-card__body {
  padding: 22px;
}

.hseq-blog-card__meta {
  margin: 0 0 10px;
  font-size: 0.875rem;
  color: #6b7280;
}

.hseq-blog-card__title {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.hseq-blog-card__title a {
  color: #111827;
  text-decoration: none;
}

.hseq-blog-card__title a:hover {
  color: #f15924;
}

.hseq-blog-card__excerpt {
  margin: 0 0 18px;
  color: #4b5563;
  line-height: 1.6;
}

.hseq-blog-card__link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #f15924;
  text-decoration: none;
}

.hseq-blog-card__link:hover {
  color: #d94c1f;
}

.hseq-blog-pagination {
  margin-top: 40px;
  text-align: center;
}

.hseq-blog-pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #111827;
  text-decoration: none;
}

.hseq-blog-pagination .page-numbers.current,
.hseq-blog-pagination .page-numbers:hover {
  background: #f15924;
  border-color: #f15924;
  color: #fff;
}

.hseq-blog-empty {
  padding: 48px;
  text-align: center;
  background: #f9fafb;
  border-radius: 16px;
  color: #4b5563;
}

.hseq-blog-single {
  padding: 40px 0 72px;
}

.hseq-blog-single__back a {
  color: #f15924;
  text-decoration: none;
  font-weight: 700;
}

.hseq-blog-single__back a:hover {
  color: #d94c1f;
}

.hseq-blog-single__header {
  margin: 24px 0 28px;
}

.hseq-blog-single__meta {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 0.95rem;
}

.hseq-blog-single__category {
  margin-left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff1eb;
  color: #f15924;
  font-weight: 600;
}

.hseq-blog-single__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: #111827;
}

.hseq-blog-single__featured {
  margin-bottom: 28px;
  border-radius: 18px;
  overflow: hidden;
}

.hseq-blog-single__featured img {
  display: block;
  width: 100%;
  height: auto;
}

.hseq-blog-single__content {
  color: #374151;
  line-height: 1.8;
  font-size: 1.05rem;
}

.hseq-blog-single__content h2,
.hseq-blog-single__content h3 {
  color: #111827;
  margin-top: 1.8em;
}

.hseq-blog-single__tags {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  color: #4b5563;
}

.hseq-blog-single__tags-label {
  font-weight: 700;
  color: #111827;
}

@media (max-width: 992px) {
  .hseq-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hseq-blog-grid {
    grid-template-columns: 1fr;
  }

  .hseq-blog-page__header,
  .hseq-blog-page__content,
  .hseq-blog-single {
    padding-left: 0;
    padding-right: 0;
  }
}
