/* ══════════════════════════════
   BLOG CSS — Japan Stretch Massage
   Editorial Style
══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #1a1a1a; background: #fff; margin: 0; }
a { text-decoration: none !important; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.bl-hero {
  background: #111;
  padding: 56px 60px 48px;
  border-bottom: 2px solid #c0392b;
}
.bl-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.bl-hero-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: #c0392b;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.bl-hero-tag::before { content: ''; width: 24px; height: 2px; background: #c0392b; display: block; }
.bl-hero-title {
  font-size: 48px; font-weight: 900;
  color: #fff; text-transform: uppercase;
  line-height: 1.0; letter-spacing: -1.5px;
  margin: 0;
}
.bl-hero-sub {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.75; margin-bottom: 24px;
}

/* Category pills */
.bl-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.bl-cat-btn {
  padding: 6px 16px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
  background: transparent;
}
.bl-cat-btn:hover,
.bl-cat-btn.active {
  background: #c0392b;
  border-color: #c0392b;
  color: #fff;
}

/* ══════════════════════════════
   MAIN LAYOUT
══════════════════════════════ */
.bl-layout { background: #f8f7f5; padding: 52px 60px 80px; }
.bl-layout-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
}

/* ══════════════════════════════
   FEATURED POST
══════════════════════════════ */
.bl-featured {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid #eee;
  transition: box-shadow 0.25s;
}
.bl-featured:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.bl-featured-img-wrap {
  position: relative;
  display: block;
  height: 420px;
  overflow: hidden;
  background: #111;
}
.bl-featured-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.bl-featured:hover .bl-featured-img { transform: scale(1.03); }
.bl-featured-img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #c0392b);
}

.bl-featured-body {
  padding: 32px 36px 36px;
}
.bl-featured-title {
  font-size: 26px; font-weight: 900;
  color: #1a1a1a; line-height: 1.2;
  text-transform: uppercase; letter-spacing: -0.3px;
  margin: 8px 0 12px;
}
.bl-featured-title a:hover { color: #c0392b; }
.bl-featured-excerpt {
  font-size: 13.5px; color: #666;
  line-height: 1.75; margin-bottom: 20px;
}

/* Grid header */
.bl-grid-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.bl-grid-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #1a1a1a; white-space: nowrap;
}
.bl-grid-divider {
  flex: 1;
  height: 1px;
  background: #ddd;
}

/* ══════════════════════════════
   GRID 2 COLUMNS
══════════════════════════════ */
.bl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bl-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bl-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.08); }

.bl-card-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #eee;
}
.bl-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.bl-card:hover .bl-card-img { transform: scale(1.05); }
.bl-card-img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #222, #c0392b);
}

.bl-card-body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.bl-card-title {
  font-size: 14px; font-weight: 800;
  color: #1a1a1a; line-height: 1.35;
  text-transform: uppercase; letter-spacing: 0.1px;
  margin: 0;
}
.bl-card-title a:hover { color: #c0392b; }
.bl-card-excerpt {
  font-size: 12px; color: #777;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Shared */
.bl-post-cat {
  position: absolute;
  top: 12px; left: 12px;
  background: #c0392b; color: #fff;
  font-size: 9px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
  z-index: 1;
}

.bl-post-meta {
  display: flex; align-items: center; gap: 6px;
}
.bl-post-date { font-size: 11px; color: #aaa; font-weight: 500; }
.bl-post-read { font-size: 11px; color: #c0392b; font-weight: 600; }
.bl-post-read::before { content: '· '; }

.bl-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #c0392b; margin-top: auto;
  transition: gap 0.2s;
}
.bl-read-more:hover { gap: 10px; }
.bl-read-more svg { width: 13px; height: 13px; fill: none; stroke: #c0392b; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.bl-read-more.small { font-size: 10px; }

/* Empty */
.bl-empty { text-align: center; padding: 60px; color: #aaa; font-size: 14px; }

/* Pagination */
.bl-pagination { margin-top: 36px; }
.bl-pagination .page-numbers {
  display: flex; justify-content: center; gap: 8px;
  list-style: none; padding: 0; margin: 0;
}
.bl-pagination .page-numbers li a,
.bl-pagination .page-numbers li span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 4px;
  border: 1.5px solid #ddd;
  font-size: 13px; font-weight: 700; color: #666;
  transition: all 0.2s; background: #fff;
}
.bl-pagination .page-numbers li .current,
.bl-pagination .page-numbers li a:hover {
  background: #c0392b; border-color: #c0392b; color: #fff;
}

/* ══════════════════════════════
   SIDEBAR
══════════════════════════════ */
.bl-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CTA */
.bl-sidebar-cta {
  background: #111;
  border-radius: 10px;
  padding: 28px 24px;
  border-top: 3px solid #c0392b;
}
.bl-sidebar-cta-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #c0392b; margin-bottom: 8px;
}
.bl-sidebar-cta-title {
  font-size: 22px; font-weight: 900;
  color: #fff; text-transform: uppercase;
  line-height: 1.15; letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.bl-sidebar-cta-desc {
  font-size: 12px; color: rgba(255,255,255,0.5);
  line-height: 1.65; margin-bottom: 20px;
}
.bl-sidebar-cta-btn {
  display: flex; align-items: center; justify-content: space-between;
  background: #c0392b; color: #fff;
  padding: 12px 16px; border-radius: 4px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.bl-sidebar-cta-btn:hover { background: #a93226; }
.bl-sidebar-cta-btn svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.bl-sidebar-cta-phone {
  display: block; text-align: center;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.bl-sidebar-cta-phone:hover { color: #fff; }

/* Sidebar box */
.bl-sidebar-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #eee;
}
.bl-sidebar-box-title {
  font-size: 10px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #1a1a1a; margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c0392b;
}

/* Categories */
.bl-sidebar-cat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 12px; font-weight: 600; color: #555;
  transition: color 0.2s;
}
.bl-sidebar-cat:last-child { border-bottom: none; padding-bottom: 0; }
.bl-sidebar-cat:hover { color: #c0392b; }
.bl-sidebar-cat-count {
  font-size: 10px; font-weight: 700;
  background: #f0f0f0; color: #999;
  padding: 2px 8px; border-radius: 12px;
}

/* Popular posts */
.bl-sidebar-post {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}
.bl-sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.bl-sidebar-post-img { width: 64px; height: 48px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.bl-sp-img { width: 100%; height: 100%; object-fit: cover; }
.bl-sidebar-post-title {
  font-size: 12px; font-weight: 700; color: #1a1a1a;
  line-height: 1.4; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bl-sidebar-post:hover .bl-sidebar-post-title { color: #c0392b; }
.bl-sidebar-post-date { font-size: 10px; color: #bbb; }

/* ══════════════════════════════
   SINGLE POST
══════════════════════════════ */
.post-hero {
  position: relative;
  height: 60vh; min-height: 440px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.post-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.post-hero-bg-dark { background: #111; }
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
}
.post-hero-content {
  position: relative; z-index: 1;
  padding: 0 60px 52px;
  max-width: 1200px; width: 100%; margin: 0 auto;
}
.post-hero-cat {
  display: inline-block;
  background: #c0392b; color: #fff;
  font-size: 9px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px;
  margin-bottom: 12px;
}
.post-hero-title {
  font-size: 40px; font-weight: 900;
  color: #fff; line-height: 1.1;
  text-transform: uppercase; letter-spacing: -0.5px;
  margin-bottom: 14px; max-width: 800px;
}
.post-hero-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.post-meta-dot { color: rgba(255,255,255,0.25); }

.post-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 48px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  background: #fff;
}

.post-breadcrumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 11px; color: #bbb; margin-bottom: 32px;
}
.post-breadcrumb a { color: #bbb; }
.post-breadcrumb a:hover { color: #c0392b; }
.post-breadcrumb .current { color: #555; }

/* Post body */
.post-body { font-size: 15px; line-height: 1.85; color: #333; }
.post-body h2 {
  font-size: 22px; font-weight: 900; color: #1a1a1a;
  text-transform: uppercase; letter-spacing: -0.3px; line-height: 1.2;
  margin: 40px 0 14px; padding-left: 16px;
  border-left: 3px solid #c0392b;
}
.post-body h3 { font-size: 17px; font-weight: 800; color: #1a1a1a; margin: 28px 0 10px; }
.post-body p { margin-bottom: 18px; }
.post-body img { width: 100%; border-radius: 8px; margin: 24px 0; object-fit: cover; }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 18px; }
.post-body li { margin-bottom: 7px; }
.post-body blockquote {
  background: #f8f8f8; border-left: 4px solid #c0392b;
  padding: 18px 22px; margin: 24px 0;
  border-radius: 0 6px 6px 0;
  font-style: italic; color: #555;
}
.post-body a { color: #c0392b; }
.post-body a:hover { text-decoration: underline !important; }

/* Tags */
.post-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 28px 0; padding-top: 20px;
  border-top: 1px solid #eee;
}
.post-tag {
  padding: 5px 12px; border: 1px solid #eee;
  border-radius: 20px; font-size: 11px;
  font-weight: 600; color: #888;
  transition: all 0.2s;
}
.post-tag:hover { border-color: #c0392b; color: #c0392b; }

/* Share */
.post-share {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin: 20px 0 28px;
}
.post-share-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: #bbb;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  cursor: pointer; border: none;
  font-family: 'Montserrat', sans-serif;
  transition: opacity 0.2s;
}
.share-btn:hover { opacity: 0.85; }
.share-btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.share-btn.fb { background: #1877F2; color: #fff; }
.share-btn.zalo { background: #0068FF; color: #fff; }
.share-btn.copy { background: #f0f0f0; color: #555; }

/* Author */
.post-author-box {
  display: flex; gap: 16px;
  background: #f8f8f8; border-radius: 8px;
  padding: 22px; margin-top: 8px;
}
.author-img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.post-author-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #c0392b; margin-bottom: 4px; }
.post-author-name { font-size: 14px; font-weight: 800; color: #1a1a1a; margin-bottom: 6px; }
.post-author-bio { font-size: 12px; color: #666; line-height: 1.6; }

/* Post sidebar */
.post-sidebar {
  position: sticky; top: 80px;
  display: flex; flex-direction: column; gap: 24px;
}
.sidebar-cta {
  background: #111; border-radius: 10px;
  padding: 26px; border-top: 3px solid #c0392b;
}
.sidebar-cta-tag { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #c0392b; margin-bottom: 8px; }
.sidebar-cta-title { font-size: 20px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.15; margin-bottom: 10px; }
.sidebar-cta-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 18px; }
.sidebar-cta-btn {
  display: flex; align-items: center; justify-content: space-between;
  background: #c0392b; color: #fff;
  padding: 12px 14px; border-radius: 4px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 10px; transition: background 0.2s;
}
.sidebar-cta-btn:hover { background: #a93226; }
.sidebar-cta-btn svg { width: 13px; height: 13px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.sidebar-cta-phone { display: block; text-align: center; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.sidebar-cta-phone:hover { color: #fff; }

.sidebar-related, .sidebar-cats {
  background: #fff; border-radius: 10px;
  padding: 18px; border: 1px solid #eee;
}
.sidebar-section-title {
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: #1a1a1a;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid #c0392b;
}
.related-post-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid #f5f5f5;
}
.related-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-post-img { width: 64px; height: 48px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.related-img { width: 100%; height: 100%; object-fit: cover; }
.related-post-title { font-size: 12px; font-weight: 700; color: #1a1a1a; line-height: 1.4; margin-bottom: 4px; }
.related-post-item:hover .related-post-title { color: #c0392b; }
.related-post-date { font-size: 10px; color: #bbb; }
.sidebar-cat-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid #f5f5f5;
  font-size: 12px; font-weight: 600; color: #555; transition: color 0.2s;
}
.sidebar-cat-item:last-child { border-bottom: none; }
.sidebar-cat-item:hover { color: #c0392b; }
.sidebar-cat-count { font-size: 10px; font-weight: 700; background: #f0f0f0; color: #999; padding: 2px 8px; border-radius: 12px; }

/* Related bottom */
.post-related-bottom { background: #f8f7f5; padding: 52px 60px; }
.post-related-inner { max-width: 1200px; margin: 0 auto; }
.section-title-sm {
  font-size: 13px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #1a1a1a; margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #c0392b;
  display: inline-block;
}
.post-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #eee; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.blog-card-img-wrap { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: #eee; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-ph { width: 100%; height: 100%; background: linear-gradient(135deg, #222, #c0392b); }
.blog-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 6px; }
.blog-card-date { font-size: 10px; color: #bbb; }
.blog-card-title { font-size: 13px; font-weight: 800; color: #1a1a1a; line-height: 1.35; text-transform: uppercase; margin: 0; }
.blog-card-title a:hover { color: #c0392b; }
.blog-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: #c0392b; margin-top: auto; transition: gap 0.2s;
}
.blog-card-link:hover { gap: 8px; }
.blog-card-link svg { width: 11px; height: 11px; fill: none; stroke: #c0392b; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ══════════════════════════════
   TABLET
══════════════════════════════ */
@media (max-width: 900px) {
  .bl-hero { padding: 48px 32px 40px; }
  .bl-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .bl-hero-title { font-size: 36px; }
  .bl-layout { padding: 40px 32px 60px; }
  .bl-layout-inner { grid-template-columns: 1fr; }
  .bl-sidebar { position: static; }
  .bl-featured-img-wrap { height: 280px; }
  .bl-featured-body { padding: 24px; }
  .bl-featured-title { font-size: 20px; }
  .bl-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .post-hero-content { padding: 0 32px 40px; }
  .post-hero-title { font-size: 28px; }
  .post-wrap { grid-template-columns: 1fr; padding: 40px 32px; gap: 40px; }
  .post-sidebar { position: static; }
  .post-related-bottom { padding: 48px 32px; }
  .post-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
@media (max-width: 540px) {
  .bl-hero { padding: 40px 20px 32px; }
  .bl-hero-title { font-size: 28px; letter-spacing: -0.5px; }
  .bl-layout { padding: 32px 16px 48px; }
  .bl-featured-img-wrap { height: 220px; }
  .bl-featured-body { padding: 18px; }
  .bl-featured-title { font-size: 17px; }
  .bl-grid { grid-template-columns: 1fr; gap: 12px; }
  .post-hero { height: 50vh; min-height: 340px; }
  .post-hero-content { padding: 0 20px 28px; }
  .post-hero-title { font-size: 22px; }
  .post-wrap { padding: 28px 16px; }
  .post-body { font-size: 14px; }
  .post-body h2 { font-size: 18px; }
  .post-related-bottom { padding: 36px 16px; }
  .post-related-grid { grid-template-columns: 1fr; }
}