:root {
  --primary: #5b8f7e;
  --primary-light: #edf4f1;
  --border: #e2e8e0;
  --card: #ffffff;
  --muted: #6b7280;
  --bg: #f7f6f2;
  --radius: 10px;
  --shadow: 0 1px 4px rgba(0,0,0,.07);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #374151;
  background: #f7f6f2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: #5b8f7e;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #3d6b5a;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 242, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.logo-name {
  font-family: "Lora", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.logo-sub {
  font-size: 0.78rem;
  color: var(--muted);
  display: none;
}
@media (min-width: 480px) {
  .logo-sub {
    display: block;
  }
}

#mainNav {
  display: none;
  flex-direction: column;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1rem;
  gap: 0.75rem;
}
#mainNav.open {
  display: flex;
}
@media (min-width: 900px) {
  #mainNav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    gap: 0.25rem;
    position: static;
  }
}

.mob-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #374151;
  padding: 0.3rem 0.5rem;
  display: block;
}
@media (min-width: 900px) {
  .mob-btn {
    display: none;
  }
}

.nav-group {
  position: relative;
}

.nav-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  cursor: default;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
  user-select: none;
}

.nav-group:hover .nav-label,
.nav-group:focus-within .nav-label {
  color: var(--primary);
  background: var(--primary-light);
}

.dropdown {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
}
@media (min-width: 900px) {
  .dropdown {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0.4rem 0.4rem;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
    transition-delay: 0.25s;
  }
}
@media (max-width: 899px) {
  .dropdown {
    padding-left: 1rem;
    gap: 0.2rem;
  }
}

@media (min-width: 900px) {
  .nav-group:hover .dropdown,
  .nav-group:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
}

@media (max-width: 899px) {
  .nav-group:hover .dropdown,
  .nav-group.open .dropdown {
    display: flex;
  }
}
.dropdown a {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
}
.dropdown a:hover {
  background: var(--bg);
  color: var(--primary);
  text-decoration: none;
}

.nav-direct {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
}
.nav-direct:hover {
  color: var(--primary);
  background: var(--primary-light);
  text-decoration: none;
}

.page-hero {
  background: #eeede9;
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
}
.page-hero .container {
  max-width: 860px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  text-decoration: none;
}
.back-link:hover {
  color: var(--primary);
}

.page-hero h1 {
  font-family: "Lora", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
}

.content-wrap {
  padding: 3rem 0 4rem;
  max-width: 860px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #eeede9;
  padding: 2.5rem 0 1rem;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.footer-links a {
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
}

.home-hero {
  position: relative;
  overflow: hidden;
  height: clamp(300px, 50vh, 480px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
}
.home-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #f7f6f2 0%, rgba(247, 246, 242, 0.55) 55%, rgba(247, 246, 242, 0.15) 100%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
}

.home-hero h1 {
  font-family: "Lora", serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.home-hero p {
  font-size: 1rem;
  color: #374151;
  max-width: 520px;
}

.home-layout {
  display: flex;
  gap: 3rem;
  padding: 3rem 0 4rem;
  align-items: flex-start;
}
@media (max-width: 780px) {
  .home-layout {
    flex-direction: column;
  }
}

.home-main {
  flex: 1;
  min-width: 0;
}

.home-aside {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 780px) {
  .home-aside {
    width: 100%;
  }
}

.aside-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.aside-card h3 {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
.aside-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.aside-card li a {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.35;
}
.aside-card li a:hover {
  color: var(--primary);
}
.aside-card li .link-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--primary);
  margin-top: 0.15rem;
}

.prose h2 {
  font-family: "Lora", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #1f2937;
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}
.prose h3 {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin: 1.5rem 0 0.5rem;
}
.prose h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin: 1.25rem 0 0.4rem;
}
.prose p {
  color: #4b5563;
  margin-bottom: 1rem;
}
.prose ul, .prose ol {
  color: #4b5563;
  margin: 0.75rem 0 1rem 1.5rem;
}
.prose li {
  margin-bottom: 0.35rem;
}
.prose strong {
  color: #1f2937;
  font-weight: 600;
}
.prose em {
  font-style: italic;
}
.prose a {
  color: var(--primary);
}
.prose a:hover {
  color: #3d6b5a;
}
.prose blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--primary-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #4b5563;
  font-style: italic;
}
.prose figure {
  margin: 1.25rem 0;
}
.prose figure.right {
  float: right;
  margin: 0.5rem 0 1rem 1.5rem;
  clear: right;
}
.prose figure.center {
  text-align: center;
}
.prose figure img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.prose figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.4rem;
  text-align: center;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1.25rem 0;
  overflow-x: auto;
  display: block;
}
.prose th {
  background: #f1f0ec;
  text-align: left;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  font-weight: 600;
  color: #1f2937;
}
.prose td {
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  color: #4b5563;
  vertical-align: top;
}
.prose td.green {
  background: #d1fae5 !important;
}
.prose td.purple {
  background: #ede9fe !important;
}
.prose td.red {
  background: #fee2e2 !important;
}
.prose tr:nth-child(even) td {
  background: #fafaf8;
}

.prose img {
  float: left;
  width: 40%;
  height: auto;
  margin: 0 1.5rem 1rem 0;
}

.prose::after {
  content: "";
  display: block;
  clear: both;
}

.info-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}
.info-box h2, .info-box h3 {
  margin-top: 0;
}
.info-box p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}
@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}
.card h4 {
  color: var(--primary);
  margin-bottom: 0.35rem;
  font-family: "Lora", serif;
}
.card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.item-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.25rem 0;
}

.item-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}
.item-card .item-author {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.item-card .item-title {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.4rem;
}
.item-card .item-info {
  font-size: 0.88rem;
  color: #4b5563;
}
.item-card .item-date {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.fall-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}

.fall-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.fall-card .fall-title {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.3rem;
}
.fall-card p {
  font-size: 0.92rem;
  color: #4b5563;
  margin: 0;
}

.test-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1rem 0;
}

.test-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #f5f4f0;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.test-num {
  font-family: "Lora", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 1.5rem;
  line-height: 1.4;
}

.test-q {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}

.quote-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  text-align: center;
  font-family: "Lora", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #1f2937;
  box-shadow: var(--shadow);
}

.highlight-box {
  background: var(--primary-light);
  border: 1px solid rgba(91, 143, 126, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box h3 {
  margin-top: 0;
  color: var(--primary);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease;
}
.accordion-item + .accordion-item {
  margin-top: 0.75rem;
}
.accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--primary-light);
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: "Lora", serif;
  color: var(--primary);
  transition: all 0.2s ease;
}
.accordion-header:hover {
  background: rgba(91, 143, 126, 0.15);
  color: #3d6b5a;
}
.accordion-header.open {
  background: var(--primary);
  color: white;
}
.accordion-header.open .accordion-teaser-visible {
  color: rgba(255, 255, 255, 0.85);
}
.accordion-header.open .accordion-icon {
  transform: rotate(45deg);
}
@media (max-width: 600px) {
  .accordion-header {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
}

.accordion-header-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.accordion-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.accordion-teaser-visible {
  font-size: 0.88rem;
  font-weight: 400;
  font-family: "Source Sans 3", sans-serif;
  color: #4b5563;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.accordion-icon {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.3s ease;
  min-width: 1.5rem;
  text-align: center;
  margin-top: 0.1rem;
}
@media (max-width: 600px) {
  .accordion-icon {
    font-size: 1.2rem;
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--card);
}
.accordion-content.open {
  max-height: 2000px;
  padding: 1.5rem;
}
@media (max-width: 600px) {
  .accordion-content.open {
    padding: 1.25rem;
  }
}

.accordion-full {
  display: none;
}
.accordion-full.show {
  display: block;
}
.accordion-full h3 {
  margin-top: 0;
}
.accordion-full h4 {
  margin-top: 1.25rem;
}
.accordion-full p {
  color: #4b5563;
}
.accordion-full ul {
  color: #4b5563;
  margin: 0.75rem 0 1rem 1.5rem;
}
.accordion-full li {
  margin-bottom: 0.35rem;
}
.accordion-full blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--primary-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #4b5563;
  font-style: italic;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0;
}
@media (max-width: 580px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}
.sitemap-grid h3 {
  font-family: "Lora", serif;
  font-size: 1.1rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
.sitemap-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap-grid li {
  margin-bottom: 0.4rem;
}
.sitemap-grid a {
  color: var(--primary);
  font-size: 0.92rem;
}

.eb-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.eb-animate.eb-visible {
  opacity: 1;
  transform: translateY(0);
}

.entscheidungsbaum {
  background: #f7f9f7;
  border: 1px solid #d0d8d2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  margin: 2.5rem 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 0.92rem;
  color: #4a5a4f;
}

.eb-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.eb-header h2 {
  font-family: "Lora", serif;
  font-size: 1.15rem;
  color: #1a4d30;
  margin-bottom: 0.4rem;
}
.eb-header p {
  font-size: 0.88rem;
  color: #4a5a4f;
  margin: 0;
}

.eb-start {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1.5px solid #a8d5b5;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 600;
  color: #1a4d30;
  line-height: 1.4;
}
.eb-start svg {
  flex-shrink: 0;
}

.eb-arrow {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1;
  margin: 0.4rem 0;
  color: #1a4d30;
  animation: eb-pulse 1.8s ease-in-out infinite;
}

.eb-arrow-gray {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1;
  margin: 0.3rem 0;
  color: #d0d8d2;
}

@keyframes eb-pulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateY(4px);
  }
}
.eb-steps {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 480px;
  margin: 0 auto;
}

.eb-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #d0d8d2;
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  line-height: 1.45;
}
.eb-step.green-bg {
  background: #e8f5ee;
  border-color: #a8d5b5;
}

.eb-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1a5c32;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.eb-note {
  background: #fffde7;
  border-left: 3px solid #f9a825;
  border-radius: 0 6px 6px 0;
  padding: 6px 12px;
  font-size: 0.82rem;
  color: #5a4a00;
  margin-top: 8px;
}
.eb-note a {
  color: #b8860b;
  text-decoration: underline;
}

.eb-branch {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 0.75rem;
  margin-top: 0.5rem;
  align-items: start;
}

.eb-branch-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.eb-branch-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 4px;
}
.eb-branch-label.label-green {
  background: #e8f5ee;
  color: #2e7d4f;
  border: 1px solid #a8d5b5;
}
.eb-branch-label.label-pink {
  background: #fdf0f3;
  color: #a03050;
  border: 1px solid #e8a0b0;
}

.eb-leaf {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font-size: 0.85rem;
  line-height: 1.45;
  border: 1px solid;
}
.eb-leaf svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.eb-leaf.leaf-green {
  background: #e8f5ee;
  border-color: #a8d5b5;
  color: #1a4d30;
}
.eb-leaf.leaf-pink {
  background: #fdf0f3;
  border-color: #e8a0b0;
  color: #7b1a36;
}

.eb-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding-top: 2rem;
}

.eb-mid-line {
  width: 1px;
  flex: 1;
  min-height: 20px;
  background: #d0d8d2;
}

.eb-mid-icon {
  font-size: 1.3rem;
  color: #8aaa95;
}

.eb-mid-label {
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.3;
  color: #8aaa95;
}

.eb-goals {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid #d0d8d2;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.eb-goals-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4a5a4f;
  margin-bottom: 0.75rem;
}

.eb-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (max-width: 520px) {
  .eb-chips {
    grid-template-columns: 1fr;
  }
}

.eb-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #4a5a4f;
}

.eb-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 4px;
}

@media (max-width: 560px) {
  .eb-branch {
    grid-template-columns: 1fr;
  }
  .eb-mid {
    display: none;
  }
  .eb-branch-col + .eb-branch-col {
    margin-top: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
