.blog-shell {
  width: min(100% - 48px, 1420px);
  margin: 0 auto 56px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  margin: 18px 0 22px;
  padding: clamp(24px, 4vw, 54px);
  border: 2px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 241, 207, 0.94), rgba(246, 227, 189, 0.82));
}

.blog-hero h1 {
  margin: 0;
  font: 900 clamp(42px, 5vw, 78px)/0.96 var(--font-display);
}

.blog-hero p {
  max-width: 620px;
  font: 600 clamp(17px, 1.35vw, 21px)/1.3 var(--font-body);
}

.blog-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 2px solid var(--line);
  border-radius: 8px;
}

.blog-actions,
.editor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.page-link--light {
  color: var(--ink);
  background: var(--paper-light);
}

.blog-status,
.blog-grid,
.published-section,
.review-section {
  margin-top: 18px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 241, 207, 0.78);
}

.blog-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding: 14px 18px;
}

.blog-status strong {
  color: var(--rust);
  font: 900 14px/1 var(--font-body);
  text-transform: uppercase;
}

.blog-status span,
.blog-tools p,
.post-card p,
.review-card p {
  font: 500 15px/1.45 var(--font-body);
}

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 0;
  overflow: hidden;
}

.blog-editor,
.blog-tools,
.review-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 34px);
}

.blog-tools {
  border-left: 2px solid var(--line);
  background: rgba(255, 214, 157, 0.34);
}

.blog-editor h2,
.blog-tools h2,
.section-heading h2 {
  margin: 0;
  font: 900 clamp(27px, 3vw, 42px)/1 var(--font-display);
}

.blog-editor label,
.review-form label,
.import-control {
  display: grid;
  gap: 7px;
  font: 900 12px/1 var(--font-body);
  text-transform: uppercase;
}

.blog-editor input,
.blog-editor select,
.blog-editor textarea,
.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff7df;
  padding: 12px 14px;
  color: var(--ink);
  font: 600 15px/1.35 var(--font-body);
}

.blog-editor textarea,
.review-form textarea {
  resize: vertical;
}

.blog-editor button,
.blog-tools button,
.import-control,
.review-form button,
.post-card button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #080706;
  color: #fff7d8;
  padding: 0 18px;
  font: 900 12px/1 var(--font-body);
  text-transform: uppercase;
  cursor: pointer;
}

.blog-editor button:nth-child(n+2),
.blog-tools button,
.import-control,
.post-card button {
  color: var(--ink);
  background: var(--paper-light);
}

.danger-button {
  color: #fff7d8 !important;
  background: var(--rust) !important;
}

.import-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.image-preview {
  margin: 0;
  border: 2px solid var(--soft-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-light);
}

.image-preview img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.image-preview figcaption,
.post-meta,
.review-meta {
  color: rgba(18, 16, 13, 0.72);
  font: 800 11px/1.3 var(--font-body);
  text-transform: uppercase;
}

.image-preview figcaption {
  padding: 10px 12px;
}

.published-section,
.review-section {
  padding: clamp(20px, 3vw, 34px);
}

.section-heading {
  margin-bottom: 18px;
}

.post-list,
.review-list {
  display: grid;
  gap: 16px;
}

.post-card,
.review-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 223, 0.82);
}

.post-card.has-image {
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.25fr);
}

.post-card img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border: 2px solid var(--line);
  border-radius: 8px;
}

.post-card h3,
.review-card h3 {
  margin: 0;
  font: 900 clamp(24px, 2.5vw, 36px)/1 var(--font-display);
}

.review-form {
  grid-template-columns: minmax(160px, 0.8fr) minmax(120px, 0.45fr) minmax(0, 1.4fr) auto;
  align-items: end;
  padding: 0;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .blog-hero,
  .blog-grid,
  .post-card.has-image,
  .review-form {
    grid-template-columns: 1fr;
  }

  .blog-tools {
    border-left: 0;
    border-top: 2px solid var(--line);
  }
}

@media (max-width: 680px) {
  .blog-shell {
    width: min(100% - 28px, 640px);
  }

  .blog-hero {
    padding: 22px;
  }

  .blog-hero h1 {
    font-size: clamp(40px, 11vw, 54px);
  }
}

.blog-showcase{
  display:grid;
  gap:24px;
  margin:34px 0;
  padding:28px;
  border:1px solid rgba(191,139,62,0.22);
  border-radius:24px;
  background:linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,248,235,0.92));
  box-shadow:0 18px 50px rgba(84,45,18,0.08);
}

.air-showcase{
  background:linear-gradient(135deg, rgba(22,17,13,0.96), rgba(76,46,20,0.92));
  color:#fff8ea;
}

.air-showcase .section-heading p,
.air-showcase .showcase-card p{
  color:#f0dcc0;
}

.air-showcase .section-heading h2,
.air-showcase .showcase-card h3{
  color:#fff8ea;
}

.showcase-grid{
  display:grid;
  gap:18px;
}

.showcase-grid--books{
  grid-template-columns:repeat(5, minmax(0, 1fr));
}

.showcase-grid--air{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.showcase-card{
  display:grid;
  align-content:start;
  gap:10px;
  min-width:0;
  padding:14px;
  border:1px solid rgba(191,139,62,0.18);
  border-radius:18px;
  background:rgba(255,255,255,0.72);
}

.air-showcase .showcase-card{
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,226,170,0.2);
}

.showcase-card img{
  width:100%;
  aspect-ratio:3 / 4;
  object-fit:cover;
  border-radius:14px;
  background:#ead8b7;
  box-shadow:0 12px 28px rgba(73,38,14,0.14);
}

.showcase-card h3{
  color:#311908;
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(18px, 2.2vw, 24px);
  line-height:1.08;
  margin:0;
}

.showcase-card p{
  color:#65472b;
  line-height:1.55;
  margin:0;
}

.showcase-card a{
  color:inherit;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:4px;
}

@media (max-width:980px){
  .showcase-grid--books{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .showcase-grid--air{
    grid-template-columns:1fr;
  }
}

@media (max-width:620px){
  .blog-showcase{
    padding:18px;
  }

  .showcase-grid--books{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

.showcase-download{
  align-self:start;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:42px;
  margin-top:4px;
  padding:11px 14px;
  border:1px solid rgba(88,54,12,0.28);
  border-radius:999px;
  background:linear-gradient(135deg, #f8d46b, #fff0b7 52%, #d99a2b);
  color:#2d1706 !important;
  box-shadow:0 10px 24px rgba(90,51,12,0.18);
  font-size:12px;
  font-weight:900;
  letter-spacing:0.7px;
  text-decoration:none !important;
  text-transform:uppercase;
}

.showcase-download:hover{
  transform:translateY(-1px);
}

.showcase-download--secondary{
  background:linear-gradient(135deg, #fff7db, #f0d49c);
}

.book-download-panel{
  display:grid;
  grid-template-columns:minmax(220px, 0.9fr) 1.4fr;
  gap:22px;
  align-items:center;
  margin:34px 0;
  padding:28px;
  border:2px solid rgba(92,54,10,0.62);
  border-radius:24px;
  background:linear-gradient(135deg, #fff3c5, #f7cf6a 48%, #b96d18);
  box-shadow:0 20px 54px rgba(76,42,8,0.18);
}

.book-download-panel h2{
  color:#281303;
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(30px, 5vw, 54px);
  line-height:0.98;
  margin:0 0 10px;
}

.book-download-panel p:not(.eyebrow){
  color:#4d2c0c;
  font-size:17px;
  line-height:1.55;
  margin:0;
}

.book-download-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.book-download-button{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:14px 18px;
  border:2px solid rgba(255,243,194,0.55);
  border-radius:999px;
  background:#2d1706;
  color:#fff3c5 !important;
  box-shadow:0 12px 28px rgba(45,23,6,0.24);
  font-size:13px;
  font-weight:900;
  letter-spacing:0.8px;
  text-align:center;
  text-decoration:none !important;
  text-transform:uppercase;
}

.book-download-button--library{
  grid-column:1 / -1;
  background:#fff8df;
  color:#2d1706 !important;
  border-color:rgba(45,23,6,0.28);
}

@media (max-width:760px){
  .book-download-panel{
    grid-template-columns:1fr;
    padding:20px;
  }

  .book-download-grid{
    grid-template-columns:1fr;
  }
}

.air-download-button{
  align-self:start;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:48px;
  margin-top:6px;
  padding:13px 18px;
  border:1px solid rgba(255,238,181,0.62);
  border-radius:999px;
  background:linear-gradient(135deg, #f6d675, #fff2ba 50%, #c98627);
  color:#2a1505 !important;
  box-shadow:0 12px 28px rgba(0,0,0,0.24);
  font-size:12px;
  font-weight:900;
  letter-spacing:0.85px;
  text-align:center;
  text-decoration:none !important;
  text-transform:uppercase;
}

.air-download-button:hover{
  transform:translateY(-1px);
}
.featured-posts{margin-top:18px;padding:clamp(20px,3vw,34px);border:2px solid var(--line);border-radius:8px;background:rgba(255,241,207,.78)}.featured-post-card{display:grid;grid-template-columns:minmax(360px,1.05fr) minmax(0,.95fr);gap:clamp(22px,3vw,40px);align-items:center}.featured-post-covers{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;padding:14px;overflow:hidden;border:2px solid var(--line);border-radius:8px;background:rgba(255,247,223,.82)}.featured-post-covers img{display:block;width:100%;aspect-ratio:3/4;object-fit:contain;filter:drop-shadow(3px 5px 4px rgba(18,16,13,.22))}.featured-post-copy h3{margin:0 0 12px;font:900 clamp(28px,3vw,44px)/.98 var(--font-display)}.featured-post-copy>p:not(.post-meta){font:600 16px/1.5 var(--font-body)}@media(max-width:900px){.featured-post-card{grid-template-columns:1fr}}
