@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Pixelify+Sans:wght@700&family=Roboto+Condensed:wght@800&family=Inter:wght@400;500&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bg: #0F0F0F;
  --bg-secondary: #181818;
  --text: #EAEAEA;
  --text-secondary: #A3A3A3;
  --accent: #C4784A;
  --accent-hover: #B5683A;
  --accent-light: #2C1A0E;
  --border: #2C2C2C;
  --card-bg: #1C1C1C;
  --success: #4ADE80;
  --code-bg: #0A0A0A;
  --code-text: #EAEAEA;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0;
}

.logo-gt {
  color: var(--accent);
  margin-right: 0.2em;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a.nav-link:hover {
  color: var(--text);
}

/* ── Buttons ── */
.btn-primary {
  background: var(--accent);
  color: white !important;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 4px rgba(196, 120, 74, 0.2);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(196, 120, 74, 0.35);
}

.btn-primary.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: 10px;
}

.btn-secondary {
  background: transparent;
  color: var(--text) !important;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  display: inline-block;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent) !important;
}

.btn-secondary.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: 10px;
}

/* ── Hero ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

/* ── Hero pixel card ── */
/* ── Hero terminal card ── */
.hero-terminal {
  flex: 0 0 460px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

.terminal-chrome {
  background: #D4BFA8;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.t-dot-r { background: #FF5F56; }
.t-dot-y { background: #FFBD2E; }
.t-dot-g { background: #27C93F; }

.terminal-body {
  background: #252220;
  padding: 1.75rem 1.875rem 1.5rem;
}

.t-px-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 2.5rem;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  background: linear-gradient(150deg, #E8943A 0%, #C4784A 55%, #A85530 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.t-px-sub {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #EAEAEA;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.t-desc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  text-align: center;
}

.t-desc-line {
  display: flex;
  gap: 0.5em;
  align-items: baseline;
  justify-content: center;
}

.t-prompt { color: #C4784A; font-weight: 700; }
.t-bold   { color: #C4784A; font-weight: 700; }
.t-muted  { color: #B8A898; }
.t-sub-line {
  padding-left: 1.1em;
  color: #7A6E65;
}
.t-sub-line strong { color: #C4784A; font-weight: 400; }

.t-divider {
  height: 1px;
  background: #3A3230;
  margin-bottom: 0.875rem;
}

.t-statusbar {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: #C4784A;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t-cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.35rem 1.1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-meta span::before {
  content: "✓ ";
  color: var(--success);
  font-weight: 700;
}

/* ── Sections ── */
section {
  padding: 5.5rem 2rem;
}

.container {
  max-width: 920px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.65;
}

/* ── Why section ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--bg-secondary);
  padding: 1.75rem;
  border-radius: 14px;
  border: 1px solid rgba(196, 120, 74, 0.18);
}

.why-icon {
  font-size: 1.75rem;
  margin-bottom: 0.875rem;
}

.why-icon--term {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: #C4784A;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── For whom ── */
.for-whom {
  background: var(--bg-secondary);
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.persona-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.persona-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.persona-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.persona-role {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.persona-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Learn ── */
.learn-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.975rem;
  padding: 0.875rem 1.1rem;
  background: var(--bg-secondary);
  border-radius: 10px;
  line-height: 1.5;
}

.learn-list li .check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── Modules ── */
.modules-section {
  background: var(--bg-secondary);
}

.module-block {
  margin-bottom: 2.5rem;
}

.module-block:last-child {
  margin-bottom: 0;
}

.module-block-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.module-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-item:hover {
  border-color: rgba(196, 120, 74, 0.45);
}

.module-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 2.25rem;
  padding-top: 0.15rem;
  opacity: 0.8;
}

.module-title {
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ── Section visual ── */
.section-visual {
  margin: 2.5rem 0 2rem;
  border-radius: 16px;
  overflow: hidden;
  max-width: 560px;
}

.section-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Module visual divider ── */
.module-visual {
  margin: 1.5rem 0 2rem;
  border-radius: 16px;
  overflow: hidden;
  max-height: 200px;
  background: #B86A3A;
}

.module-visual img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Requirements ── */
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.req-card {
  padding: 1.25rem 1.5rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
}

.req-card .req-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.req-card .req-detail {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.req-card a {
  color: var(--accent);
  text-decoration: none;
}

.req-card a:hover {
  text-decoration: underline;
}

/* ── Pricing ── */
.pricing-section {
  background: var(--bg-secondary);
}

.price-card {
  max-width: 500px;
  margin: 3rem auto 0;
  background: var(--card-bg);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(196, 120, 74, 0.15);
}

.price-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2.25rem;
}

.price-includes {
  text-align: left;
  list-style: none;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.price-includes li {
  display: flex;
  gap: 0.8rem;
  font-size: 0.95rem;
  align-items: flex-start;
}

.price-includes li .check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card .btn-primary {
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  padding: 1rem;
}

/* ── Author ── */
.author-card {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  max-width: 560px;
  margin-top: 3rem;
}

.author-avatar {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.author-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.author-info p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 0.875rem;
  line-height: 1.6;
}

.author-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.author-link:hover {
  color: var(--accent-hover);
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

footer a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer a:hover {
  color: var(--accent-hover);
}

/* ────────────────────────────────────────────────
   START PAGE (installation instructions)
──────────────────────────────────────────────── */

.page-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
}

.page-hero h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--border);
}

.docs-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.module-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}

.module-header:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.module-tag {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.module-time {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.docs-container h2 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.docs-container h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.875rem;
}

.docs-container p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.docs-container p + p {
  margin-top: 0;
}

.docs-container a {
  color: var(--accent);
  text-decoration: none;
}

.docs-container a:hover {
  text-decoration: underline;
}

.docs-container ul, .docs-container ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.docs-container li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.info-box {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
  font-size: 0.94rem;
}

.info-box strong {
  color: var(--accent);
}

.warning-box {
  background: #1E1700;
  border-left: 3px solid #ca8a04;
  padding: 1rem 1.25rem;
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
  font-size: 0.94rem;
}

pre {
  background: var(--code-bg);
  color: var(--code-text);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  overflow-x: auto;
  margin: 1.25rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: 'IBM Plex Mono', 'SF Mono', 'Fira Code', Consolas, monospace;
}

code {
  font-family: 'IBM Plex Mono', 'SF Mono', 'Fira Code', Consolas, monospace;
}

p code, li code {
  background: var(--bg-secondary);
  color: var(--accent);
  padding: 0.15rem 0.45rem;
  border-radius: 5px;
  font-size: 0.875em;
}

.step-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.step-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  line-height: 1.6;
}

.step-num {
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.9rem;
}

.docs-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  font-weight: 700;
  border-bottom: 2px solid var(--border);
}

.docs-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.docs-table tr:last-child td {
  border-bottom: none;
}

.docs-table code {
  font-size: 0.82rem;
}

.platform-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 2px solid var(--border);
}

.platform-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border-radius: 8px 8px 0 0;
  margin-right: 0.25rem;
  margin-bottom: -2px;
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--bg-secondary);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.faq-a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-a code {
  background: var(--bg-secondary);
  color: var(--accent);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85em;
}

.next-step {
  background: var(--accent);
  color: white;
  border-radius: 14px;
  padding: 2rem 2.25rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.next-step-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: white;
}

.next-step-text p {
  font-size: 0.9rem;
  opacity: 0.85;
  color: white;
}

.next-step .btn-white {
  background: white;
  color: var(--accent) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.next-step .btn-white:hover {
  opacity: 0.92;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 3.5rem 1.25rem 3rem;
  }

  .hero-content {
    order: 2;
  }

  .hero-terminal {
    flex: none;
    width: 100%;
    order: 1;
  }

  .t-px-title {
    font-size: 1.6rem;
  }

  .t-px-sub {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .terminal-body {
    padding: 1.25rem 1.25rem 1rem;
  }

  .t-desc {
    font-size: 0.8rem;
  }

  .t-statusbar {
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .btn-primary.btn-large,
  .btn-secondary.btn-large {
    text-align: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .nav-links .nav-link {
    display: none;
  }

  section {
    padding: 3.5rem 1.25rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .why-grid,
  .persona-grid,
  .req-grid {
    grid-template-columns: 1fr;
  }

  .learn-list {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 2rem 1.5rem;
  }

  .price-amount {
    font-size: 2.75rem;
  }

  .author-card {
    flex-direction: column;
  }

  .page-hero {
    padding: 3.5rem 1.25rem 2rem;
  }

  .page-hero h1 {
    font-size: 1.9rem;
  }

  .docs-container {
    padding: 0 1.25rem 4rem;
  }

  .next-step {
    flex-direction: column;
    text-align: center;
  }

  .module-visual {
    max-height: 140px;
  }

  .module-visual img {
    height: 140px;
  }
}
