:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  background: #f2f8f7;
  color: #102f32;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #f2f8f7;
  font-size: 20px;
  line-height: 1.7;
}

.header {
  border-bottom: 4px solid #195e63;
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100% - 40px, 1080px);
  min-height: 94px;
  margin: 0 auto;
  font-size: 30px;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: #195e63;
  color: #fff;
  font-size: 38px;
}

main {
  display: grid;
  gap: 72px;
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
  padding: 54px 0 96px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 30px;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1.2;
}

h2 { font-size: 40px; }
h3 { margin-bottom: 8px; font-size: 30px; line-height: 1.35; }

.eyebrow {
  margin-bottom: 4px;
  color: #195e63;
  font-size: 20px;
  font-weight: 900;
}

.latest-card {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  overflow: hidden;
  border: 3px solid #195e63;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(25, 94, 99, .14);
}

.cover, .small-cover { background: #dceceb; }
.cover img, .small-cover img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.cover img { min-height: 520px; }

.card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 46px;
}

.badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 16px;
  border-radius: 999px;
  background: #f4b942;
  color: #102f32;
  font-size: 18px;
  font-weight: 900;
}

.chords { color: #195e63; font-size: 24px; font-weight: 900; }

.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 3px solid #195e63;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.primary { background: #195e63; color: #fff; }
.secondary { background: #fff; color: #195e63; }
.button:focus-visible, .cover:focus-visible, .small-cover:focus-visible { outline: 5px solid #f4b942; outline-offset: 5px; }

.archive > h2 { margin-bottom: 0; }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 28px; }
.small-card { display: grid; grid-template-columns: 42% 1fr; overflow: hidden; border: 3px solid #aac9c7; border-radius: 20px; background: #fff; }
.small-body { padding: 28px; }

@media (max-width: 760px) {
  body { font-size: 19px; }
  .latest-card, .small-card, .grid { grid-template-columns: 1fr; }
  .cover img { min-height: 0; }
  .card-body, .small-body { padding: 28px; }
  .button { width: 100%; }
}
