:root {
  --paper: #f5f7f2;
  --white: #fff;
  --ink: #182420;
  --green: #17473a;
  --wine: #812f42;
  --muted: #66716c;
  --line: #d7ddd8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(24, 36, 32, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 36, 32, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  font-family: "DM Sans", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }

.ideas-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 247, 242, .94);
  backdrop-filter: blur(18px);
}

.ideas-brand { display: grid; gap: 1px; }
.ideas-brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
}

.ideas-brand span,
.ideas-back {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ideas-back {
  padding: 10px 0;
  border-bottom: 1px solid var(--green);
  color: var(--green);
}

main {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 88px) 0 90px;
}

.ideas-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .55fr);
  gap: 30px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink);
}

.ideas-intro p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--wine);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ideas-intro h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .95;
}

.ideas-intro span {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.ideas-list article {
  position: relative;
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr) 120px;
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .2s ease, background .2s ease;
}

.ideas-list article:hover {
  padding-left: 12px;
  background: rgba(23, 71, 58, .035);
}

.ideas-list time {
  padding-top: 5px;
  color: var(--wine);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ideas-list h2 {
  margin: 0 0 7px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.ideas-list p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.ideas-list a {
  justify-self: end;
  margin-top: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .ideas-header { min-height: 64px; padding: 0 16px; }
  .ideas-brand strong { font-size: .95rem; }
  .ideas-brand span, .ideas-back { font-size: .52rem; }
  main { width: min(100% - 32px, 1240px); padding-top: 42px; }
  .ideas-intro { grid-template-columns: 1fr; gap: 12px; }
  .ideas-intro h1 { font-size: 3.4rem; }
  .ideas-list article { grid-template-columns: 64px minmax(0, 1fr); gap: 14px; padding: 22px 0; }
  .ideas-list a { grid-column: 2; justify-self: start; }
}
