/* ============================================================
   Design Unblocked — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #181818;
  --border:    rgba(255,255,255,0.08);
  --text:      #f0ede8;
  --text-muted:#8a8580;
  --coral:     #FF6B35;
  --teal:      #00C9B1;
  --amber:     #FFB347;
  --card-bg:   #141414;
  --nav-h:     72px;
  --radius:    12px;
  --radius-lg: 24px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:    0 8px 40px rgba(0,0,0,0.4);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img { display: block; max-width: 100%; }

/* ── Typography ── */
.font-display { font-family: 'Syne', sans-serif; }

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3.5rem, 9vw, 8rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0; }

p { font-size: 1.0625rem; line-height: 1.75; color: var(--text-muted); }
p.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(240,237,232,0.75); }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { position: relative; overflow: hidden; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: opacity 0.2s;
}

.nav__logo:hover { opacity: 0.8; }

.nav__logo-mark {
  width: 34px; height: 34px;
  background: var(--coral);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav__links a:hover { color: var(--text); }

.nav__links a.active { color: var(--coral); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.btn--coral {
  background: var(--coral);
  color: #fff;
}
.btn--coral:hover {
  background: #ff7d4a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--bg);
  position: relative;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
}

.hero__glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 4rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.hero__title {
  margin-bottom: 1.5rem;
}

.hero__title span {
  display: block;
  color: var(--coral);
}

.hero__sub {
  max-width: 560px;
  margin-bottom: 3rem;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__cta a.btn--coral {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll-hint svg {
  width: 20px; height: 20px;
  stroke: var(--text-muted);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Section Spacing ── */
.section { padding: 8rem 0; }
.section--alt { background: var(--bg-2); }
.section--dark { background: var(--bg-3); }

.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section__label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.section__heading { margin-bottom: 1.25rem; }
.section__intro { max-width: 600px; margin-bottom: 4rem; }

/* ── About Split ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text p + p { margin-top: 1rem; }

.about__visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__visual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 2rem;
  width: 100%;
}

.about__chip {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
  cursor: default;
}

.about__chip:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  transform: scale(1.02);
}

.about__chip--coral { border-color: rgba(255,107,53,0.35); color: var(--coral); }
.about__chip--teal  { border-color: rgba(0,201,177,0.35);  color: var(--teal);  }
.about__chip--span  { grid-column: span 2; text-align: center; }
.about__chip--amber { border-color: rgba(255,179,71,0.35);  color: var(--amber); }

/* ── Steps (How It Works) ── */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.step-card:hover::before { opacity: 1; }

.step-card__num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 1rem; right: 1.25rem;
  transition: color 0.3s;
}

.step-card:hover .step-card__num { color: rgba(255,107,53,0.12); }

.step-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.step-card h4 {
  margin-bottom: 0.6rem;
  color: var(--text);
}

.step-card p { font-size: 0.9rem; }

/* ── Difficulty Cards ── */
.difficulty__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.diff-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.diff-card--easy   { background: linear-gradient(135deg, #0d1f1a 0%, #0a1410 100%); border-color: rgba(0,201,177,0.2); }
.diff-card--normal { background: linear-gradient(135deg, #1a1200 0%, #120e00 100%); border-color: rgba(255,179,71,0.2); }
.diff-card--hard   { background: linear-gradient(135deg, #1f0d0d 0%, #140808 100%); border-color: rgba(255,107,53,0.2); }

.diff-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.diff-card--easy   .diff-card__badge { background: rgba(0,201,177,0.15);  color: var(--teal);  border: 1px solid rgba(0,201,177,0.3); }
.diff-card--normal .diff-card__badge { background: rgba(255,179,71,0.15); color: var(--amber); border: 1px solid rgba(255,179,71,0.3); }
.diff-card--hard   .diff-card__badge { background: rgba(255,107,53,0.15); color: var(--coral); border: 1px solid rgba(255,107,53,0.3); }

.diff-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.diff-card__timer {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.diff-card__timer::before {
  content: '⏱';
  font-size: 0.9rem;
}

.diff-card__desc { font-size: 0.9rem; }

.diff-card__accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.05;
}

.diff-card--easy   .diff-card__accent { background: var(--teal); }
.diff-card--normal .diff-card__accent { background: var(--amber); }
.diff-card--hard   .diff-card__accent { background: var(--coral); }

/* ── Logbook Section ── */
.logbook__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.logbook__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.logbook__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.logbook__feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: rgba(0,201,177,0.08);
  border: 1px solid rgba(0,201,177,0.15);
}

.logbook__feature-text h4 { margin-bottom: 0.2rem; color: var(--text); font-size: 1rem; }
.logbook__feature-text p  { font-size: 0.875rem; margin: 0; }

.logbook__mockup {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.logbook__mockup-bar {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logbook__mockup-dots {
  display: flex;
  gap: 6px;
}

.logbook__mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.logbook__mockup-dots span:nth-child(1) { background: #ff5f57; }
.logbook__mockup-dots span:nth-child(2) { background: #febc2e; }
.logbook__mockup-dots span:nth-child(3) { background: #28c840; }

.logbook__mockup-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.logbook__entries {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.logbook__entry {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s;
}

.logbook__entry:hover { border-color: rgba(255,255,255,0.15); }

.logbook__entry-thumb {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.logbook__entry-thumb--coral { background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.2); }
.logbook__entry-thumb--teal  { background: rgba(0,201,177,0.1);  border: 1px solid rgba(0,201,177,0.2); }
.logbook__entry-thumb--amber { background: rgba(255,179,71,0.1);  border: 1px solid rgba(255,179,71,0.2); }

.logbook__entry-info h4 { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.logbook__entry-info p  { font-size: 0.775rem; color: var(--text-muted); margin: 0; }

.logbook__entry-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.badge--easy   { background: rgba(0,201,177,0.12);  color: var(--teal);  }
.badge--normal { background: rgba(255,179,71,0.12);  color: var(--amber); }
.badge--hard   { background: rgba(255,107,53,0.12);  color: var(--coral); }

/* ── CTA Banner ── */
.cta-banner {
  padding: 8rem 0;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-banner__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(0,201,177,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p  { max-width: 480px; margin: 0 auto 2.5rem; }

/* ── Footer ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer__logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Privacy Page ── */
.privacy-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--bg);
  position: relative;
}

.privacy-hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.privacy-hero__label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.privacy-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 1rem; }
.privacy-hero p  { font-size: 1.0625rem; max-width: 600px; }

.privacy-hero__meta {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.privacy-hero__meta-item {
  font-size: 0.825rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.privacy-hero__meta-item span { color: var(--text); font-weight: 500; }

/* ── Privacy Content Layout ── */
.privacy-body {
  padding: 0 0 8rem;
  background: var(--bg);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 5rem;
  align-items: start;
}

/* TOC Sidebar */
.privacy-toc {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.privacy-toc__title {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.privacy-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.privacy-toc__list a {
  display: block;
  font-size: 0.825rem;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all 0.2s;
  line-height: 1.4;
}

.privacy-toc__list a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.privacy-toc__list a.active {
  color: var(--teal);
  border-left-color: var(--teal);
  background: rgba(0,201,177,0.06);
}

/* Privacy Article */
.privacy-article {
  max-width: 720px;
}

.privacy-section {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}

.privacy-section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.privacy-section__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.privacy-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
  color: var(--text);
}

.privacy-section p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.privacy-section p:last-child { margin-bottom: 0; }

.privacy-section ul,
.privacy-section ol {
  margin: 1rem 0 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-section li {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.privacy-section li::marker { color: var(--teal); }

.privacy-section a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-highlight {
  background: rgba(0,201,177,0.06);
  border: 1px solid rgba(0,201,177,0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.privacy-highlight p { color: var(--text); margin: 0; font-size: 0.9375rem; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about__grid    { grid-template-columns: 1fr; gap: 3rem; }
  .logbook__grid  { grid-template-columns: 1fr; gap: 3rem; }
  .steps__grid    { grid-template-columns: repeat(2, 1fr); }
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-toc    { display: none; }
}

@media (max-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  .section { padding: 5rem 0; }
  .steps__grid      { grid-template-columns: 1fr; }
  .difficulty__grid { grid-template-columns: 1fr; }
  .nav__links       { display: none; }
  .hero__content    { padding: 4rem 0 3rem; }
  .footer__inner    { flex-direction: column; align-items: flex-start; }
  .footer__bottom   { flex-direction: column; }
  .about__visual-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2.5rem; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .logbook__entry { grid-template-columns: auto 1fr; }
  .logbook__entry-badge { display: none; }
}
