.new-entries-hero .kicker {
  color: var(--sepia);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.new-entries-release-link {
  margin: -4px 0 24px;
}

.new-entries-release-link a,
.new-entry-card__link,
.new-entries-method a {
  color: var(--sepia);
  text-underline-offset: 4px;
}

.new-entries-grid {
  display: grid;
  gap: 18px;
}

.new-entry-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.95fr) minmax(260px, 1.3fr) minmax(210px, 0.85fr) 130px;
  gap: 18px 24px;
  align-items: start;
  border: 1px solid #a99b7c;
  background: #f1eadb;
  color: #514a3e;
  padding: 24px;
  box-shadow: 0 5px 12px rgba(62, 49, 28, 0.07);
}

.new-entry-card > * { min-width: 0; }

.new-entry-card__head {
  display: grid;
  grid-template-columns: 28px 52px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.new-entry-card__number {
  color: #806d48;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding-top: 4px;
}

.new-entry-card__monogram {
  display: grid;
  place-items: center;
  width: 52px;
  height: 64px;
  border: 1px solid #9f9274;
  background: #ded5c2;
  color: #756b58;
  font-family: var(--font-mono);
}

.new-entry-card h2 {
  margin: 0 0 7px;
  color: #29241b;
  font-size: 1.25rem;
  overflow-wrap: anywhere;
}

.new-entry-card h3 {
  margin: 0 0 8px;
  color: #665b49;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.new-entry-card p { margin: 0; line-height: 1.55; }
.new-entry-card__role { color: #6b604f; font-size: 0.88rem; }

.new-entry-card__summary,
.new-entry-card__context,
.new-entry-card__sources {
  border-left: 1px solid #b7aa8d;
  padding-left: 22px;
}

.new-entry-card__context ul,
.new-entry-card__sources ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.new-entry-card__context li {
  border: 1px solid #b3a587;
  background: #e8dec8;
  padding: 3px 7px;
  color: #625846;
  font-size: 0.75rem;
}

.new-entry-card__sources ul { display: grid; }
.new-entry-card__sources a { overflow-wrap: anywhere; font-size: 0.78rem; }

.new-entry-card__link {
  align-self: center;
  justify-self: end;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.new-entries-months { display: grid; gap: 10px; max-width: 760px; }
.new-entries-months details { border: 1px solid var(--line); background: var(--panel); }
.new-entries-months summary { cursor: pointer; padding: 13px 16px; font-family: var(--font-display); }
.new-entries-months ol { margin: 0; padding: 0 16px 16px; list-style: none; }
.new-entries-months li + li { border-top: 1px solid var(--line-soft); }
.new-entries-months li a { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; }
.new-entries-months li span { color: var(--muted); }
.new-entries-empty .callout { max-width: 820px; }
.new-entries-empty h2 { margin-top: 0; }
.new-entries-method { margin-top: 30px; border-left: 3px solid var(--sepia); padding: 4px 0 4px 18px; }

@media (max-width: 1050px) {
  .new-entry-card { grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.2fr); }
  .new-entry-card__sources { grid-column: 2; }
  .new-entry-card__link { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 680px) {
  .new-entry-card { grid-template-columns: 1fr; padding: 18px; }
  .new-entry-card__summary,
  .new-entry-card__context,
  .new-entry-card__sources { grid-column: 1; border-left: 0; border-top: 1px solid #b7aa8d; padding: 16px 0 0; }
  .new-entry-card__link { grid-column: 1; }
  .new-entries-months li a { flex-direction: column; gap: 3px; }
}

@media print {
  .new-entry-card { break-inside: avoid; grid-template-columns: 1fr 1fr; box-shadow: none; }
}
