
section[style*="height: 700px"] {
  height: auto !important;       /* Höhe automatisch, damit Content nicht überlappt */
  padding-bottom: 20px;          /* etwas Abstand nach unten */
  box-sizing: border-box;
}

/* ------------------------------------------------------
   2. Magazin-Container-Grundlayout
   ------------------------------------------------------ */
.magazin-container {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: left;
  padding: 40px 0;               /* vertikales Padding statt fester Höhe */
  box-sizing: border-box;
}

.magazin-container h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Wrapper für bessere Übersicht */
.magazin-grid-wrapper {
  display: flex;
  justify-content: center;
}

/* Grid-System */
.magazin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px auto;
  max-width: 1500px;
  padding: 0 20px;
}


/* Artikel-Box */
.magazin-item {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Bildbereich */
.magazin-images {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.magazin-images img {
  width: 100%;
  height: auto;       /* kein festes height mehr */
  max-height: 300px;  /* optional: Bild maximal 300px hoch */
  object-fit: cover;
  border-radius: 8px;
}

/* Titel */
.magazin-item h3 {
  font-size: 20px;
  margin: 10px 0;
  font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Beschreibung */
.magazin-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;           /* Standard-Margin entfernen, stattdessen Lücken mit Flex/Gap */
    font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.magazin-item p:hover {
  color: #1A253C;
}

/* Autorenbereich */
.autor-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.autor-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.autor-info a {
  text-decoration: none;
  color: #0066cc;
  font-weight: bold;
  font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Magazin-Button */
.magazin-button {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  font-size: 16px;
  background: #1A253C;
  color: white;
  cursor: pointer;
  border-radius: 10px;
  border: none;
}

.magazin-button:hover {
  background: #25375e;
  color: white;
}

/* ------------------------------------------------------
   3. Responsive Anpassungen Magazin
   ------------------------------------------------------ */
/* Ab 768px: Zwei Spalten */
@media (min-width: 768px) {
  .magazin-grid {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1500px;
  }
  .magazin-item {
    width: auto;
  }
}

/* Unter 768px: Einspaltiges Layout */
@media (max-width: 767px) {
  .magazin-grid {
    flex-direction: column;
  }
  .magazin-item {
    width: 100%;
  }
}

/* ------------------------------------------------------
   4. Uhren-Section-Grundlayout
   ------------------------------------------------------ */
.uhren-container {
  width: 90%;
  max-width: 1470px;
  margin: 40px auto;            /* oben Abstand, damit nicht direkt an Magazin anschließt */
  font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: left;
  box-sizing: border-box;
}

.uhren-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.uhren-item {
  width: 100%;
  max-width: 280px;
  flex-grow: 1;
  margin-bottom: 20px;          /* Abstand unten für jede Box */
  box-sizing: border-box;
}

.uhren-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.uhren-item p {
  color: #555;
  line-height: 1.5;
  margin: 0;                    /* Standard-Margin aus, Lücken durch Flex/Gap */
}

@media (max-width: 1024px) {
  .uhren-grid {
    justify-content: center;
  }
  .uhren-item {
    width: 48%;
    max-width: none;
    text-align: left;
  }
}

/* Bis 768px: Ebenfalls zwei Spalten (kann bei sehr schmalen Bildschirmen umbrechen) */
@media (max-width: 767px) {
  .uhren-grid {
    justify-content: space-between;
  }
  .uhren-item {
    width: 48%;
    max-width: none;
    text-align: left;
  }
}

/* Unter 480px: Eine Spalte */
@media (max-width: 479px) {
  .uhren-item {
    width: 100%;
  }
}

.magazinSection {
  max-width: 1515px;
  margin: 0 auto;
  padding: 40px 20px;
  margin-top: 60px;
}

.magazinTitle {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.magazinLayout {
  display: grid;
  grid-template-columns: 2fr 1fr; /* links groß, rechts schmal */
  gap: 20px;
}

.magazinMain {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.magazinMain img {
  width: 100%;
  height: auto;
  display: block;
}
.magazinOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px;
  color: white;
}
.magazinDate {
  font-size: 0.8rem;
  margin-bottom: 5px;
  opacity: 0.8;
}
.magazinMainTitle {
  font-size: 1.5rem;
  margin: 5px 0;
  font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.magazinExcerpt {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* rechte Spalte */
.magazinSide {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.magazinSideItem {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 25px;
}
.magazinSideItem img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}
.magazinSideItem h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}
.magazinSideItem p {
  margin: 5px 0 0;
  font-size: 0.85rem;
  color: #555;
}

/* responsive */
@media (max-width: 1024px) {
  .magazinLayout {
    grid-template-columns: 1fr;
  }
  .magazinSide {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .magazinSideItem {
    width: 100%;
  }
}

.breadcrumb-icon {
  font-size: 1.5rem;  /* größer machen */
  vertical-align: middle;
}

.breadcrumb-separator {
  font-size: 1rem;
  color: #6c757d;
  vertical-align: middle;
}

/* ================= FEATURED ARTICLE ================= */

.featured {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;                 /* notwendig für Zoom */
  border-radius: 8px;
}

.featured img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform .3s ease;   /* IDENTISCH */
}

/* GLEICHER Hover wie .mag-item */
.featured:hover img {
  transform: scale(1.05);
}

/* ================= FEATURED CONTENT ================= */

.featured-content {
  margin-top: 20px;
  font-family: Georgia, serif;
  color: #111;
}

.featured-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.featured-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ================= MAGAZINE GRID ================= */

.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* ================= MAGAZINE ITEM ================= */

.mag-item {
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.mag-item img {
  width: 100%;
  transition: transform .3s ease;   /* IDENTISCH */
}

/* GLEICHER Hover wie Featured */
.mag-item:hover img {
  transform: scale(1.05);
}

/* ================= MAG ITEM INFO ================= */

.mag-item .info {
  padding: 10px;
  font-family: Arial, sans-serif;
}

.mag-item .info h3 {
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: #c8a24e;
}

.mag-item .info p {
  font-size: 0.9rem;
  color: #333;
  max-height: 3em;
  overflow: hidden;
}

/* ================= LOAD MORE ================= */

.load-more-wrapper {
  text-align: center;
  margin: 20px 0 60px;
}

.load-more-btn {
  background: #1A253C;
  border: none;
  color: #fff;
  font-weight: bolder;
  padding: 10px 24px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .3s ease;
}

.load-more-btn:hover {
  background: #c9a24e;
}
