@charset "UTF-8";
/* ======= Farbvariablen ======= */ :root {
  --color-dark: #02353C;
  --color-dark50: #809899;
  --color-accent: #EF3F05;
  --color-secondary: #FFAB07;
  --color-lightyellow: #FFDC97;
  --color-beige: #FFFCF7;
}
/* ======= Basis-Layout & Typografie ======= */
html, body {
  padding: 0;
  background: var(--color-beige);
  font-family: 'Work Sans', sans-serif;
  color: var(--color-dark);
}
main {
  margin: 2rem auto;
}
section {
  padding: 2em 2em;
}
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  padding: 0;
  margin: 0 0 1.5rem;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--color-dark);
}
.hero h1 p {
  margin-block-start: 0;
  margin-block-end: 0;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  color: var(--color-dark);
  margin: 0 0 3rem;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 1rem 0 1rem;
}
h4 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 0.8rem;
}
p, ul, li {
  font-size: 1.08em;
  color: var(--color-dark);
  line-height: 1.6;
}
.nav-list li {
    list-style: none;
}
.italic {
  font-style: italic;
  font-weight: 300;
}
.beige {
  color: var(--color-beige);
}
.zentriert {
  text-align: center;
}
.links {
  text-align: left;
}
.gelb {
  color: var(--color-secondary);
}
a {
  color: var(--color-dark);
  text-decoration: none;
}
a:hover {
  color: var(--color-accent);
}
/* ======= Buttons & Links ======= */
button a {
  text-decoration: none;
  color: var(--color-dark);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
a {
  text-decoration: underline;
  color: #000;
}
a:hover {
  text-decoration: none;
  color: var(--color-dark);
}
article .note-excerpt {
	max-width: 200px;
}
.contact-button {
  display: inline-block !important;
  padding: 8px 20px !important;
  border-radius: 20px 20px 0px 20px !important;
  border: 2px solid var(--color-dark) !important;
  border-bottom-width: 4px !important;
  background: #fffbe8 !important;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
	text-decoration: none;
}
.contact-button:hover {
  background: #fffbe8 !important;
  color: #111 !important;
}
.tag-button {
  display: inline-block !important;
  width: auto !important;
  max-width: none !important;
  white-space: nowrap; /* Falls du keine Zeilenumbrüche im Button willst */
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--color-beige);
  color: var(--color-dark);
  font-size: 0.9rem;
  border: 1px solid var(--color-dark);
  margin: 5px;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}
.tag-button:hover {
  background: var(--color-beige);
  color: var(--color-dark);
}
.link-button {
  display: inline-block;
  color: var(--color-dark);
  text-decoration: underline;
  font-size: 0.95rem;
  margin: 5px;
  transition: color 0.3s;
}
.link-button:hover {
  color: var(--color-accent);
}

/* TOPICS */
.autogrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  align-items: stretch;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.note-excerpt {
  /* Use the styling from the previous answer, e.g.: */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  max-width: 270px;
}
.note-excerpt-img {
  display: block;
  margin: 0 auto 0.7em auto;
  max-width: 64px;
  height: auto;
}
.note-excerpt p {
  margin-top: 0.6em;
  font-size: 1.1em;
  font-weight: 600;
}
.audio-avatar-wrapper {
  display: flex;
  align-items: flex-start; /* ensures top alignment first */
  gap: 1rem;
  margin: 1rem 0;
}

.audio-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 5px; /* fine-tune vertical alignment */
}

.audio-content {
  flex: 1;
}

.audio-content audio {
  width: 100%;
  max-width: 400px;
  vertical-align: middle;
}


