.field-notes-hero {
  background: #173f31;
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.field-notes-hero .breadcrumbs {
  color: rgba(255, 255, 255, .78);
  margin-bottom: 1rem;
}

.field-notes-hero .breadcrumbs a {
  color: #fff;
}

.field-notes-hero h1 {
  color: #fff;
  max-width: 820px;
  margin-bottom: 1rem;
}

.field-notes-hero p {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 760px;
  margin: 0;
}

.field-notes-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.field-note-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(23, 63, 49, .13);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(41, 47, 39, .08);
}

.field-note-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9e4d9;
}

.field-note-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-note-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.4rem;
}

.field-note-meta {
  color: #6e5b43;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.field-note-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin: .55rem 0 .7rem;
}

.field-note-card h2 a {
  color: #173f31;
  text-decoration: none;
}

.field-note-card h2 a:hover,
.field-note-card h2 a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.field-note-card p {
  color: #4d554f;
  margin: 0 0 1rem;
}

.field-note-card .text-link {
  margin-top: auto;
}

.field-notes-empty {
  background: #fff;
  border: 1px solid rgba(23, 63, 49, .13);
  border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.field-notes-empty h2 {
  margin-top: 0;
}

.field-note-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.field-note-article {
  min-width: 0;
}

.field-note-article .field-note-meta {
  margin-bottom: .8rem;
}

.field-note-article h1 {
  margin-bottom: 1rem;
}

.field-note-deck {
  color: #4d554f;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.field-note-featured-image {
  margin: 0 0 2rem;
}

.field-note-featured-image img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 18px;
}

.field-note-content {
  color: #303832;
  font-size: 1.04rem;
  line-height: 1.75;
}

.field-note-content h2,
.field-note-content h3,
.field-note-content h4 {
  color: #173f31;
  margin: 2rem 0 .8rem;
}

.field-note-content p,
.field-note-content ul,
.field-note-content ol,
.field-note-content blockquote {
  margin: 0 0 1.25rem;
}

.field-note-content li + li {
  margin-top: .35rem;
}

.field-note-content blockquote {
  border-left: 4px solid #8e653f;
  color: #4d554f;
  padding: .2rem 0 .2rem 1.2rem;
}

.field-note-content code {
  background: #f2eee5;
  border-radius: 4px;
  padding: .08em .32em;
}

.field-note-aside {
  background: #f3efe6;
  border-radius: 16px;
  padding: 1.35rem;
}

.field-note-aside h2 {
  font-size: 1.15rem;
  margin-top: 0;
}

.field-note-aside p {
  color: #4d554f;
}

@media (max-width: 900px) {
  .field-notes-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-note-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .field-notes-list {
    grid-template-columns: 1fr;
  }

  .field-notes-hero {
    padding: 2.75rem 0;
  }
}
