
.amrj-blog-single {
  background: #fff;
  padding: 42px 0 78px;
}
.amrj-blog-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}
.amrj-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}
.amrj-blog-main { min-width: 0; }
.amrj-blog-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e5e9;
}
.amrj-blog-kicker {
  margin-bottom: 9px;
  color: var(--amrj-accent);
  font-family: var(--amrj-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.amrj-blog-header h1 {
  margin: 0 0 13px;
  color: #172238;
  font-family: var(--amrj-serif);
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.025em;
}
.amrj-blog-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #747c89;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.amrj-blog-meta-sep { opacity: .45; }

.amrj-blog-featured-image {
  margin: 26px 0 28px;
  width: 100%;
  aspect-ratio: 40 / 21;
  background: #fff;
  border: 1px solid #e7eaee;
  overflow: hidden;
}
.amrj-blog-featured-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.amrj-blog-content {
  color: #303946;
  font-family: var(--amrj-sans);
  font-size: 16px;
  line-height: 1.85;
}
.amrj-blog-content p { margin: 0 0 18px; }
.amrj-blog-content h2,
.amrj-blog-content h3,
.amrj-blog-content h4 {
  margin: 30px 0 12px;
  color: #172238;
  font-family: var(--amrj-serif);
  line-height: 1.4;
}
.amrj-blog-content h2 { font-size: 26px; }
.amrj-blog-content h3 { font-size: 21px; }
.amrj-blog-content a { color: var(--amrj-accent); }
.amrj-blog-content img { max-width: 100%; height: auto; }
.amrj-blog-content ul,
.amrj-blog-content ol { padding-left: 22px; }

.amrj-blog-sidebar {
  border-left: 1px solid #eceef1;
  padding-left: 28px;
  position: sticky;
  top: 28px;
}
.amrj-recent-heading h2 {
  margin: 0;
  color: #202936;
  font-family: var(--amrj-sans);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.amrj-recent-heading > span {
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 10px;
  background: var(--amrj-accent);
}
.amrj-recent-list { margin-top: 12px; }
.amrj-recent-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid #e5e7ea;
}
.amrj-recent-item:not(:has(.amrj-recent-thumb)) {
  grid-template-columns: 1fr;
}
.amrj-recent-thumb {
  width: 84px;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: #f2f3f4;
  border: 1px solid #edf0f2;
}
.amrj-recent-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.amrj-recent-copy h3 {
  margin: 0 0 6px;
  font-family: var(--amrj-serif);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.amrj-recent-copy h3 a {
  color: #172238;
  text-decoration: none;
}
.amrj-recent-copy h3 a:hover { color: var(--amrj-accent); }
.amrj-recent-copy time {
  color: #8a9099;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}
.amrj-no-recent {
  margin: 16px 0 0;
  color: #777f8a;
  font-size: 13.5px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .amrj-blog-layout { grid-template-columns: 1fr; gap: 42px; }
  .amrj-blog-sidebar {
    position: static;
    border-left: 0;
    border-top: 1px solid #eceef1;
    padding: 28px 0 0;
  }
  .amrj-recent-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }
}
@media (max-width: 620px) {
  .amrj-blog-single { padding: 28px 0 52px; }
  .amrj-blog-shell { width: min(100% - 28px, 1120px); }
  .amrj-blog-header h1 { font-size: 27px; }
  .amrj-blog-featured-image { margin: 20px 0 24px; }
  .amrj-blog-content { font-size: 15px; line-height: 1.78; }
  .amrj-recent-list { grid-template-columns: 1fr; }
}

/* v1.0.25 — larger blog typography */
