/* EET eficient — shared page layout (mobile-first) */

.eet-page {
  font-family: var(--eet-font);
  color: var(--eet-ink-900);
}

.eet-page__inner {
  width: 100%;
  max-width: var(--eet-content-max);
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.eet-page .eet-cat-breadcrumb {
  background: var(--eet-bg-soft);
  border-bottom: 1px solid var(--eet-line);
  padding: 12px 0;
}

.eet-page .eet-cat-breadcrumb__inner {
  max-width: var(--eet-content-max);
  margin: 0 auto;
  padding: 0 16px;
}

.eet-page .eet-cat-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--eet-ink-500);
}

.eet-page .eet-cat-breadcrumb__list a {
  color: var(--eet-ink-700);
  text-decoration: none;
}

.eet-page .eet-cat-breadcrumb__list a:hover {
  color: var(--eet-green-dark);
}

.eet-page .eet-cat-breadcrumb__list li:not(:last-child)::after {
  content: '/';
  margin-left: 6px;
  color: var(--eet-line);
  font-weight: 500;
}

.eet-hero {
  background: var(--eet-header-bg);
  color: #e8efe9;
  padding: clamp(28px, 6vw, 48px) 0;
}

.eet-hero__inner {
  max-width: var(--eet-content-max);
  margin: 0 auto;
  padding: 0 16px;
}

.eet-hero__eyebrow {
  display: block;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8d9cc;
}

.eet-hero__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: #fff;
}

.eet-hero__lead {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(15px, 2.5vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.eet-hero--compact {
  padding: clamp(20px, 4vw, 32px) 0;
}

.eet-hero--compact .eet-hero__title {
  font-size: clamp(22px, 4vw, 30px);
  margin-bottom: 8px;
}

.eet-hero__visual {
  margin-top: 20px;
  border-radius: var(--eet-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 16 / 9;
  background: rgba(8, 18, 12, 0.4);
}

.eet-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eet-prose {
  max-width: var(--eet-prose-max);
  font-size: 15px;
  line-height: 1.65;
  color: var(--eet-ink-700);
}

.eet-prose h2,
.eet-prose h3 {
  color: var(--eet-ink-900);
  font-weight: 800;
  letter-spacing: -0.2px;
}

.eet-prose h2 {
  font-size: 1.35rem;
  margin: 1.5em 0 0.5em;
}

.eet-prose ul,
.eet-prose ol {
  padding-left: 1.25rem;
}

.eet-section {
  padding: clamp(24px, 4vw, 40px) 0;
}

.eet-section--soft {
  background: var(--eet-bg-soft);
}

.eet-section__title {
  margin: 0 0 8px;
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 800;
  letter-spacing: -0.3px;
}

.eet-section__sub {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--eet-ink-500);
}

.eet-chip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.eet-chip-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--eet-radius-pill);
  border: 1px solid var(--eet-line);
  background: var(--eet-bg-white);
  font-size: 16px;
  font-weight: 700;
  color: var(--eet-ink-700);
  text-decoration: none;
  transition: border-color 0.2s var(--eet-ease), background 0.2s var(--eet-ease);
}

.eet-chip-nav a:hover,
.eet-chip-nav .is-active a {
  border-color: var(--eet-green);
  background: var(--eet-green-50);
  color: var(--eet-green-dark);
}

@media (min-width: 768px) {
  .eet-page__inner {
    padding: 0 24px;
  }

  .eet-hero__grid {
    display: grid;
    grid-template-columns: 1fr min(42%, 420px);
    gap: 28px;
    align-items: center;
  }

  .eet-hero__visual {
    margin-top: 0;
  }
}
