/* ========================================
   FONTS
======================================== */

@font-face {
  font-family: "Beckman";
  src: url("./fonts/Beckman-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Beckman";
  src: url("./fonts/Beckman-Heavy.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   ROOT
======================================== */

:root {
  --page-width: 1440px;
  --content-width: 1200px;
  --side-space: 120px;
  --section-space: 120px;
  --header-height: 150px;

  --text: #000000;
  --accent: #fc6c85;

  /* leicht grau-blau, heller und neutral */
  --page-bg: #f3f6f9;
  --content-bg: #ffffff;
  --footer-bg: #e6f0f5;

  --transition: 0.25s ease;
}

/* ========================================
   RESET
======================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;}

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

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

/* ========================================
   LAYOUT
======================================== */

.page-scale {
  --scale: 1;
  width: calc(var(--page-width) * var(--scale));
  margin: 0 auto;
}

.site-shell {
  width: var(--page-width);
  max-width: none;
  margin: 0;
  background: var(--content-bg);
  transform: scale(var(--scale));
  transform-origin: top left;
}

.container {
  width: var(--content-width);
  margin: 0 auto;
}

.section {
  padding-top: var(--section-space);
}

/* ========================================
   TYPO SYSTEM
======================================== */

/* H1 */
.hero__title,
.about__title,
.section-head h2 {
  font-family: "Beckman", sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--text);
}

/* H2 */
.experience__headline,
.education__headline {
  font-family: "Beckman", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--text);
  text-align: center;
}

/* H3 */
.main-nav a,
.footer-nav a,
.work-card__title {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text);
}

/* H4 */
.experience-item__role,
.education-item__title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--accent);
}

/* Copy */
.section-subtitle,
.about__text,
.experience-item__meta,
.experience-item__text,
.education-item__meta,
.site-footer__mail {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
}

/* Copy groß / Zitat */
.hero__intro,
.hero__text {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  color: var(--text);
}

/* ========================================
   HEADER
======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header__inner {
  height: 100%;
  padding: 0 var(--side-space);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  width: 270px;
  height: 54px;
  flex-shrink: 0;
  display: block;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav ul,
.footer-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 0;
  padding: 0;
}

.main-nav a,
.footer-nav a {
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--accent);
  outline: none;
}

/* ========================================
   HERO
======================================== */

.hero {
  padding-top: 0px;
}

.hero__inner {
  width: 1390px;
  margin: 0;
  display: grid;
  grid-template-columns: 710px 605px;
  gap: 75px;
  align-items: center;
}

.hero__image {
  width: 710px;
  height: 710px;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  width: 605px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__intro {
  margin: 0 0 22px 0;
}

.hero__title {
  margin: 0 0 18px 0;
}

.hero__text {
  margin: 0;
}

/* ========================================
   SECTION HEAD
======================================== */

.section-head {
  text-align: center;
  margin-bottom: 90px;
}

.section-head h2 {
  margin: 0 0 12px 0;
}

.section-subtitle {
  margin: 0;
}

/* ========================================
   WORK GRID
======================================== */

.work-grid {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 386px);
  justify-content: space-between;
  row-gap: 28px;
}

.work-card {
  width: 386px;
}

.work-card__title {
  margin: 0 0 11px 0;
  text-align: center;
}

.work-card__link {
  display: block;
}

.work-card__image {
  position: relative;
  width: 386px;
  height: 386px;
  overflow: hidden;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.work-card__button {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 100px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000000;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.work-card__link:hover .work-card__image img,
.work-card__link:focus-visible .work-card__image img {
  transform: scale(1.05);
}

.work-card__link:hover .work-card__button,
.work-card__link:focus-visible .work-card__button {
  background: var(--accent);
  color: #ffffff;
  transform: translateX(-50%) translateY(-2px);
}

/* ========================================
   ABOUT
======================================== */

.about__inner {
  width: 1283px;
  margin: 0;
  display: grid;
  grid-template-columns: 710px 498px;
  gap: 75px;
  align-items: center;
}

.about__image {
  width: 710px;
  height: 710px;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__content {
  width: 498px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__title {
  margin: 0 0 12px 0;
}

.about__text {
  max-width: 498px;
  margin: 0;
}

/* ========================================
   EXPERIENCE
======================================== */

.experience__inner {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.experience__headline {
  margin: 0 0 40px 0;
}

.experience-item {
  margin: 0;
}

.experience-item + .experience-item {
  margin-top: 60px;
}

.experience-item__role {
  margin: 0 0 6px 0;
}

.experience-item__meta {
  margin: 0 0 20px 0;
}

.experience-item__text {
  max-width: 1000px;
  margin: 0 auto;
}

/* ========================================
   EDUCATION
======================================== */

.education {
  padding-top: 80px;
}

.education__headline {
  margin: 0 0 40px 0;
}

.education-item {
  margin: 0;
}

.education-item + .education-item {
  margin-top: 36px;
}

.education-item__title {
  margin: 0 0 6px 0;
}

.education-item__meta {
  margin: 0;
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
  margin-top: 120px;
  min-height: 380px;
  background: var(--footer-bg);
  display: flex;
  align-items: center;
}

.site-footer__inner {
  width: 100%;
  padding: 0 var(--side-space);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__brand-logo {
  width: 280px;
  height: auto;
}

.site-footer__mail {
  margin: 34px 0 0 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}

.site-footer__mail img {
  width: 20px;
  height: 18px;
  flex-shrink: 0;
}

.site-footer__mail:hover,
.site-footer__mail:focus-visible {
  color: var(--accent);
  outline: none;
}

/* =================================================
   SOCIAL MEDIA PAGE
   feste Komposition nach PDF
================================================= */

.social-grid-section.section {
  padding-top: 70px;
  padding-bottom: 150px;
}

.social-grid {
  position: relative;
  width: 1200px;
  height: 2103px;
  margin: 0 auto;
}

/* CARD BASIS */

.social-card {
  position: absolute;
  width: 294px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 4px 6px 4px rgba(0, 0, 0, 0.15);
}

.social-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* FORMATE */

.social-card--story {
  height: 523px;
}

.social-card--feed {
  height: 368px;
}

/* SPALTEN
   294px Breite + 8px Abstand = 302
*/

.social-grid .social-card:nth-child(1)  { left: 0;    top: 90px; }
.social-grid .social-card:nth-child(2)  { left: 302px; top: 0; }
.social-grid .social-card:nth-child(3)  { left: 604px; top: 90px; }
.social-grid .social-card:nth-child(4)  { left: 906px; top: 0; }

.social-grid .social-card:nth-child(5)  { left: 302px; top: 532px; }
.social-grid .social-card:nth-child(6)  { left: 0;    top: 622px; }
.social-grid .social-card:nth-child(7)  { left: 906px; top: 377px; }
.social-grid .social-card:nth-child(8)  { left: 302px; top: 908px; }

.social-grid .social-card:nth-child(9)  { left: 0;    top: 1153px; }
.social-grid .social-card:nth-child(10) { left: 0;    top: 1529px; }
.social-grid .social-card:nth-child(11) { left: 604px; top: 622px; }
.social-grid .social-card:nth-child(12) { left: 604px; top: 998px; }

.social-grid .social-card:nth-child(13) { left: 906px; top: 908px; }
.social-grid .social-card:nth-child(14) { left: 604px; top: 1374px; }

/* WICHTIG: story_10 nach rechts */
.social-grid .social-card:nth-child(15) { left: 906px; top: 1284px; }

/* feed_06 bleibt in Spalte 2 */
.social-grid .social-card:nth-child(16) { left: 302px; top: 1439px; }

/* WICHTIG: feed_07 in Spalte 2 */
.social-grid .social-card:nth-child(17) { left: 302px; top: 1815px; }

/* WICHTIG: feed_08 in Spalte 4 */
.social-grid .social-card:nth-child(18) { left: 906px; top: 1815px; }

/* =================================================
   KLEINER DESKTOP SOCIAL GRID
================================================= */
/*
@media (max-width: 1366px) {
  .social-grid {
    width: 1100px;
    height: 1915px;
  }

  .social-card {
    width: 269px;
    border-radius: 18px;
    box-shadow: 0px 4px 6px 4px rgba(0, 0, 0, 0.15);
  }

  .social-card--story {
    height: 477px;
  }

  .social-card--feed {
    height: 336px;
  }

  .social-grid .social-card:nth-child(1)  { left: 0;    top: 83px; }
  .social-grid .social-card:nth-child(2)  { left: 277px; top: 0; }
  .social-grid .social-card:nth-child(3)  { left: 554px; top: 83px; }
  .social-grid .social-card:nth-child(4)  { left: 831px; top: 0; }

  .social-grid .social-card:nth-child(5)  { left: 277px; top: 486px; }
  .social-grid .social-card:nth-child(6)  { left: 0;    top: 568px; }
  .social-grid .social-card:nth-child(7)  { left: 831px; top: 344px; }
  .social-grid .social-card:nth-child(8)  { left: 277px; top: 830px; }

  .social-grid .social-card:nth-child(9)  { left: 0;    top: 1053px; }
  .social-grid .social-card:nth-child(10) { left: 0;    top: 1397px; }
  .social-grid .social-card:nth-child(11) { left: 554px; top: 568px; }
  .social-grid .social-card:nth-child(12) { left: 554px; top: 912px; }

  .social-grid .social-card:nth-child(13) { left: 831px; top: 829px; }
  .social-grid .social-card:nth-child(14) { left: 554px; top: 1256px; }

  .social-grid .social-card:nth-child(15) { left: 831px; top: 1173px; }
  .social-grid .social-card:nth-child(16) { left: 277px; top: 1315px; }
  .social-grid .social-card:nth-child(17) { left: 277px; top: 1659px; }
  .social-grid .social-card:nth-child(18) { left: 831px; top: 1659px; }
}
*/


/* =================================================
   PACKAGING PAGE
   nur für packaging.html
   Home bleibt unverändert
================================================= */

/* Intro oben */

.packaging-intro.section {
  padding-top: 70px;
  text-align: center;
}

.packaging-intro .container {
  width: 1200px;
  padding-top: 0;
}

.packaging-intro .section-title {
  font-family: "Beckman", sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--text);
  margin: 0 0 20px 0;
}

.packaging-intro .section-copy {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
}

/* Projektabstände */

.packaging-project.section {
  padding-top: 0;
}

.packaging-intro + .packaging-project {
  margin-top: 70px;
}

.packaging-project + .packaging-project {
  margin-top: 100px;
}

.packaging-project:last-of-type {
  margin-bottom: 150px;
}

/* Hauptlayout pro Projekt */

.packaging-grid {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 797px;
  grid-template-rows: auto auto;
  column-gap: 53px;
  row-gap: 9px;
  align-items: center;
}

.packaging-grid.reverse {
  grid-template-columns: 797px 350px;
}

/* Textblock */

.packaging-text {
  width: 350px;
  align-self: center;
}

.packaging-text.right {
  text-align: right;
}

.packaging-text .project-brand {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 6px 0;
}

.packaging-text .project-title {
  font-family: "Beckman", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--text);
  margin: 0 0 20px 0;
}

.packaging-text p {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 20px 0;
}

.packaging-text p:last-child {
  margin-bottom: 0;
}

.project-label {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--accent);
}

/* Großes Bild:
   exakt = 2 kleine Bilder + 1 Abstand
   394 + 9 + 394 = 797
   273 + 9 + 273 = 555
*/

.packaging-large {
  width: 797px;
  height: 555px;
}

.packaging-large img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Kleine Bildreihe */

.packaging-gallery {
  grid-column: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(3, 394px);
  gap: 9px;
  margin-top: 0;
}

.packaging-gallery img {
  width: 394px;
  height: 273px;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Kleiner Desktop – nur Packaging intern */

@media (max-width: 1366px) {
  .packaging-intro .container,
  .packaging-grid {
    width: 1100px;
  }

  .packaging-intro .section-title {
    font-size: 68px;
  }

  .packaging-intro .section-copy,
  .packaging-text .project-brand,
  .packaging-text p,
  .project-label {
    font-size: 18px;
  }

  .packaging-text .project-title {
    font-size: 42px;
  }

  .packaging-grid {
    grid-template-columns: 321px 730px;
    column-gap: 49px;
    row-gap: 8px;
  }

  .packaging-grid.reverse {
    grid-template-columns: 730px 321px;
  }

  .packaging-text {
    width: 321px;
  }

  .packaging-large {
    width: 730px;
    height: 508px;
  }

  .packaging-gallery {
    grid-template-columns: repeat(3, 361px);
    gap: 8px;
  }

  .packaging-gallery img {
    width: 361px;
    height: 250px;
  }
}
/* ========================================
   POWERPOINT PAGE
   gleiche Struktur wie Packaging, aber ohne Bildreihe
======================================== */

.packaging-grid--single {
  grid-template-rows: auto;
}

.packaging-grid--single .packaging-large {
  margin-bottom: 0;
}
/* ------------------------------------------------ */
/* EMPLOYER BRANDING – Instagram Story Container */
/* ------------------------------------------------ */

.employer-grid {
  display: grid;
  grid-template-columns: 784px 1fr;
  column-gap: 8px;
  align-items: start;
}

/* Story-Reihe */

.employer-stories {
  display: grid;
  grid-template-columns: repeat(4, 190px);
  column-gap: 8px;
}

.employer-stories img {
  width: 190px;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Textbox rechts */

.employer-grid .packaging-text {
  width: 380px;
  max-width: 360px;
  justify-self: end;
  align-self: start;
}
/* Employer Branding – schmalerer Textblock Container 3 */

.packaging-text--narrow {
  max-width: 310px;
}
/* ========================================
   BRANDING PAGE
======================================== */

.branding-intro.section {
  padding-top: 70px;
  text-align: center;
}

.branding-intro .container {
  width: 1200px;
}

.branding-intro .section-title {
  font-family: "Beckman", sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  margin: 0 0 20px 0;
}

.branding-intro .section-copy {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
}

/* GRID */

.branding-grid-section.section {
  padding-top: 70px;
  padding-bottom: 30px;
}

.branding-grid {
  width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 540px);
  column-gap: 120px;
  row-gap: 120px;
}

/* ITEM */

.branding-item {
  width: 540px;
}

.branding-item h4 {
  margin: 0 0 12px 0;
  text-align: center;
}

/* IMAGE */

.branding-image {
  width: 540px;
  height: 943px;
  overflow: hidden;
}

.branding-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* ========================================
   APP BRAND IDENTITY PAGE
   Reset nur für diese Unterseite
======================================== */

/* Container 1 nutzt vorhandenes Packaging Layout */


/* ========================================
   Container 2 — Digitale Ads
======================================== */

.app-ads-grid {
  display: grid;
  grid-template-columns: 794px 330px;
  column-gap: 76px;
  align-items: center;
}

.app-ads-media {
  display: grid;
  grid-template-columns: repeat(3, 262px);
  column-gap: 4px;
}

.app-ads-media img {
  width: 262px;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.app-ads-grid .packaging-text {
  width: 330px;
  max-width: 330px;
  justify-self: end;
  align-self: center;
}

.app-ads-grid .packaging-text.right {
  text-align: right;
}


/* ========================================
   Container 3 — App Store Slider
======================================== */

.app-store-grid {
  display: grid;
  grid-template-columns: 330px 804px;
  column-gap: 66px;
  align-items: center;
}

.app-store-grid .packaging-text {
  width: 330px;
  max-width: 330px;
  align-self: center;
}

.app-store-wrap {
  position: relative;
  width: 804px;
  height: 377px;
}

.app-store-scroll {
  width: 804px;
  height: 377px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.app-store-track {
  display: flex;
  gap: 2px;
  width: max-content;
}

.app-store-track img {
  width: 174px;
  height: 377px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  border-radius: 0;
  scroll-snap-align: start;
}

/* Pfeile nur als visueller Hinweis */

.app-store-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #000000;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  z-index: 3;
  padding: 0;
}

.app-store-arrow--left {
  left: 16px;
}

.app-store-arrow--right {
  right: 16px;
}

/* ========================================
   Container 4 — Social Media
======================================== */

.app-social-grid {
  display: grid;
  grid-template-columns: 788px 330px;
  column-gap: 82px;
  align-items: center;
}

.app-social-media {
  display: grid;
  grid-template-columns: repeat(4, 194px);
  column-gap: 4px;
  row-gap: 4px;
}

.app-social-media img {
  width: 194px;
  height: 344px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.app-social-grid .packaging-text {
  width: 330px;
  max-width: 330px;
  justify-self: end;
  align-self: center;
}

.app-social-grid .packaging-text.right {
  text-align: right;
}

/* ========================================
   SET DESIGN PAGE
======================================== */

.setdesign-grid-section.section {
  padding-top: 70px;
  padding-bottom: 30px; /* +120px Footer = 150px Abstand */
}

.setdesign-grid {
  position: relative;
  width: 1200px;
  height: 1772px;
  margin: 0 auto;
}

/* Bilder */

.setdesign-item {
  position: absolute;
}

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

/* Reihe 1 */

.setdesign-item--1 {
  width: 399px;
  height: 514px;
  left: 0;
  top: 0;
}

.setdesign-item--2 {
  width: 400px;
  height: 302px;
  left: 407px;
  top: 0;
}

.setdesign-item--3 {
  width: 385px;
  height: 403px;
  left: 815px;
  top: 0;
}

/* Reihe 2 */

.setdesign-item--5 {
  width: 400px;
  height: 305px;
  left: 407px;
  top: 310px;
}

.setdesign-item--6 {
  width: 387px;
  height: 204px;
  left: 813px;
  top: 411px;
}

/* Reihe 3 */

.setdesign-item--4 {
  width: 399px;
  height: 476px;
  left: 0;
  top: 522px;
}

.setdesign-item--7 {
  width: 490px;
  height: 378px;
  left: 407px;
  top: 622px;
}

.setdesign-item--8 {
  width: 295px;
  height: 378px;
  left: 905px;
  top: 622px;
}

/* Reihe 4 */

.setdesign-item--9 {
  width: 596px;
  height: 377px;
  left: 0;
  top: 1010px;
}

.setdesign-item--10 {
  width: 596px;
  height: 377px;
  left: 604px;
  top: 1010px;
}

/* Reihe 5 */

.setdesign-item--11 {
  width: 596px;
  height: 377px;
  left: 0;
  top: 1395px;
}

.setdesign-item--12 {
  width: 596px;
  height: 377px;
  left: 604px;
  top: 1395px;
}

/* ========================================
   DESKTOP TYPO BREAK FIX
   (verhindert harte Umbrüche auf Mobile)
======================================== */

.desktop-break {
  display: inline;
}

@media (max-width: 768px) {
  .desktop-break {
    display: none;
  }
}