body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #222;
}

header {
  text-align: center;
  padding: 2.5rem 1rem 1.2rem 1rem;
}
header h1 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
header p {
  color: #666;
  font-size: 1.04rem;
  margin-bottom: 0.6rem;
}

hr {
  border: none;
  border-top: 1.5px solid #eaeaea;
  margin: 1.6rem 0 2.2rem 0;
  width: 92vw;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.info-section {
  max-width: 580px;
  margin: 0 auto;
  background: #fafbfc;
  border-radius: 1.1rem;
  box-shadow: 0 2px 12px rgba(40,40,40,0.04);
  padding: 2rem 1.1rem 2.3rem 1.1rem;
}

.news-list {
  list-style: disc;
  padding-left: 2.1rem;
  font-size: 1.09rem;
  color: #272727;
}
.news-list li {
  margin-bottom: 1.07rem;
}

.bottom-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
  margin: 2.5rem 0 1.8rem 0;
}
.register-btn {
  padding: 0.7rem 1.2rem;
  border-radius: 1.2rem;
  font-weight: 600;
  font-size: 1.07rem;
  background: #f3f4f6;
  color: #212121;
  text-decoration: none;
  box-shadow: 0 1px 5px rgba(40,40,40,0.08);
  border: 1.5px solid #e5e7eb;
  cursor: pointer;
  transition: filter 0.13s, border 0.15s, background 0.13s;
  min-width: 4rem;
  text-align: center;
}
.register-btn:hover, .register-btn[aria-current="page"] {
  background: #e6e9ef;
  border-color: #d3d6dc;
  filter: brightness(0.96);
}
.ig-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1px 7px rgba(200,64,95,0.10);
  border: 1.5px solid #e5e7eb;
  margin: 0 0.1rem;
  text-decoration: none;
  transition: filter 0.14s, border 0.14s;
}
.ig-btn:hover .instagram-icon {
  stroke: #e4405f;
  filter: brightness(1.12);
}
.instagram-icon {
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  transition: stroke 0.13s, filter 0.13s, transform 0.13s;
}

footer {
  text-align: center;
  font-size: 0.95rem;
  color: #aaa;
  padding: 2.7rem 0 1.3rem 0;
  border-top: 1px solid #ececec;
  background: #fff;
  margin-top: 3rem;
}
footer a {
  color: #0072c6;
  text-decoration: underline;
  transition: color 0.2s;
}
footer a:hover {
  color: #013869;
}
@media (max-width: 600px) {
  .news-item img { max-width: 96vw; }
  .info-section { padding: 1.1rem 0.3rem 2.1rem 0.3rem; }
}
@media (max-width: 600px) {
  .news-item {
    max-width: 96vw;
    padding: 0.7rem 0.2rem 1.2rem 0.2rem;
  }
  .news-item img {
    max-width: 80vw;
  }
}
.news-section {
  display: flex;
  flex-direction: column;
  align-items: center;          /* Alles zentriert */
  gap: 2rem;
  padding-bottom: 1rem;
}

.news-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 1px 8px rgba(30,30,30,0.07);
  padding: 1.1rem 1.2rem 1.5rem 1.2rem;
  max-width: 350px;             /* Maximalbreite pro News */
  width: 100%;
  margin: 0 auto;
}

.news-item img {
  width: 100%;
  max-width: 220px;             /* Bilder kleiner machen! */
  border-radius: 0.7rem;
  box-shadow: 0 2px 9px rgba(70,70,70,0.11);
  margin-bottom: 0.8rem;
  display: block;
}

.news-caption {
  text-align: center;
  font-size: 1.05rem;
  color: #222;
  margin-top: 0.2rem;
}
.back-home {
  display: flex;
  justify-content: center;
  margin: 2.3rem 0 0 0;
}
.back-btn {
  padding: 0.85rem 2.4rem;
  background: #f3f4f6;
  color: #212121;
  border-radius: 1.2rem;
  font-size: 1.09rem;
  font-weight: 600;
  border: 1.5px solid #e5e7eb;
  text-decoration: none;
  box-shadow: 0 1px 6px rgba(40,40,40,0.09);
  transition: filter 0.16s, border 0.16s, background 0.13s;
  letter-spacing: 0.01em;
}
.back-btn:hover {
  background: #e6e9ef;
  border-color: #d3d6dc;
  filter: brightness(0.96);
}
