@import url("./tokens.css");
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Courier+Prime:wght@400;700&display=swap');


/* =========================
   BASE / RESET
   ========================= */
*{ box-sizing:border-box }
html,body{ height:100% }

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x:hidden;
  position:relative;
}
body:after{ display:none; }

a{ color:inherit; text-decoration:none }
img{ max-width:100%; display:block }

.container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }
.muted{ color:var(--muted) }
.hr{ height:1px; background:var(--line); margin: var(--s7) 0 }

/* =========================
   TYPOGRAPHY (GLOBAL)
   ========================= */
h1{ font-size: var(--h1); }
h2{ font-size: var(--h2); }
h3{ font-size: var(--h3); }

h1,h2,h3,.section-title,.page-title,.display-title{
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .03em;
}

.display-title{
  line-height: 1.03;
  letter-spacing: -0.5px;
}

/* =========================
   BUTTONS
   ========================= */
.btn{
  border: 1px solid rgba(0,0,0,.04);
  background: var(--menu-gray);
  color: var(--bg);
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}
.btn:hover{
  background: rgba(var(--brand-rgb), 1);
  border-color: rgba(var(--brand-rgb), .75);
  color: var(--on-brand);
}
.btn-primary{
  border:none;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: var(--on-brand);
}
.btn-primary:hover{
  transform: translateY(-0.5px);
  background: linear-gradient(135deg, rgba(var(--brand-rgb), .95), rgba(var(--brand2-rgb), .95));
}

/* =========================
   HEADER
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Red top band */
.topband{
  background: var(--brand);
  padding: 1px 0;
  margin-bottom: 6px;
}
.topband-inner{
  display:flex;
  justify-content:center;
  align-items:center;
}
.brand-logo{
  height: 110px;
  width: auto;
  display:block;
  padding: 4px 9px;
}

/* Dark menu bar */
.menubar{
  background: var(--menu-dark);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.42);
}
.menubar-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 38px;
  padding: 8px 0;
  position:relative;
}
.menubar a{
  color: rgba(255, 255, 255, 0.856);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: 14px;
  padding: 5px 8px;
  border-radius: 18px;
  transition: color 200ms var(--ease), background 200ms var(--ease);
  margin: auto;
}
.menubar a:hover{
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}
.menubar a.is-active{
  color: #fff;
  background: rgba(255, 255, 255, 0.315);
}
.menubar-cta{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

/* Mobile menu */
.burger{ display:none; }
.mobile{ display:none; padding: 10px 0 16px; }
.mobile.open{ display:block; }

.mobile a{
  display:block;
  padding: 12px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,.78);
}
.mobile a:hover{ background: rgba(255,255,255,.08); color:#fff; }

@media (max-width: 980px){
  .menubar-inner{ justify-content: space-between; gap: 10px; }
  .menubar-inner > a{ display:none; }
  .burger{ display:inline-flex; }
}

/* =========================
   MAIN + SECTIONS
   ========================= */
main{
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.section{
  padding: clamp(64px, 7vw, 110px) 0;
  background: transparent;
}
.section--soft{
  background: linear-gradient(
    180deg,
    rgba(var(--brand-rgb), .06),
    rgba(12,14,18,.02) 40%,
    #fff 100%
  );
}
.section--brand{
  background: linear-gradient(
    135deg,
    rgba(var(--brand-rgb), .12),
    rgba(var(--brand2-rgb), .10)
  );
}
.section--dark{
  background: #00000028;
  color: rgba(49, 49, 49, 0.95);
}
.section--dark .muted{ color: rgba(0, 0, 0, 0.7); }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: var(--s5);
  margin-bottom: var(--s6);
}
.section-head h2{ font-size: var(--h2); margin:0; }
.section-head p{ margin:0; color:var(--muted); max-width: 62ch; }

/* =========================
   HERO
   ========================= */
.hero{ padding: clamp(54px, 7vw, 92px) 0; }

.hero.hero--brand{
  padding: clamp(72px, 8vw, 120px) 0;
  background:
    radial-gradient(1000px 520px at 70% 30%, rgba(var(--brand-rgb), .14), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #ffffff 0%, rgba(var(--brand-rgb), .05) 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: var(--s7);
  align-items: center;
}

.hero p{
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 var(--s6);
  max-width: 56ch;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }

@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
}

/* badges */
.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: var(--s4);
}
.badge{
  background: rgba(255,255,255,.9);
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.badge i{
  width:8px; height:8px;
  border-radius:99px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(var(--brand-rgb), .12);
}

/* soft-panel */
.soft-panel{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(12,14,18,.08);
  border-radius: var(--r-lg);
  padding: clamp(18px, 2vw, 26px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
}

/* =========================
   CARDS GRID
   ========================= */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
@media (max-width: 980px){ .grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid{ grid-template-columns: 1fr; } }

.card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 30px rgba(10,12,18,.08);
  border-radius: var(--r-lg);
  overflow:hidden;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}
.card:hover{
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(12,14,18,.18);
}
.card-media{ position:relative; }
.card-media img{
  width:85%;
  height:85%;
  object-fit:cover;
  opacity:.95;
  margin:auto;
}
.card-body{ padding: var(--s5); }
.card-body h3{ margin:0 0 8px; font-size:1.05rem; }
.card-body p{ margin:0 0 14px; color:var(--muted); line-height:1.6; }
.card-body .meta{ display:flex; gap:10px; flex-wrap:wrap; color:var(--muted); font-size:.92rem; }

/* =========================
   BAND (CTA blocks)
   ========================= */
.band{
  margin-top: var(--s6);
  border-radius: var(--r-lg);
  padding: var(--s7);
  background: #fff;
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--s6);
}
.band strong{ font-size:1.1rem; }
@media (max-width: 860px){
  .band{ flex-direction:column; align-items:flex-start; }
}

/* =========================
   FOOTER
   ========================= */
.site-footer{
  margin-top: var(--s8);
  border-top: 1px solid var(--line);
  padding: var(--s7) 0;
  color: var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: var(--s7);
}
.footer-grid a{ color: var(--muted); }
.footer-grid a:hover{ color: var(--text); }
.footer-bottom{
  margin-top: var(--s6);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  font-size:.92rem;
}
@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* =========================
   SCROLL REVEAL
   ========================= */
.reveal{
  opacity:0;
  transform: translateY(14px);
  filter: blur(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.reveal.in{ opacity:1; transform:none; filter:none; }

/* kicker */
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color: var(--muted);
  margin-bottom: var(--s3);
}
.kicker span{
  width: 26px;
  height: 1px;
  background: var(--line);
}

/* =========================
   PARTNER LOGOS (hover)
   ========================= */
.partner-logos .badge{
  padding: 10px 14px;
  height: 72px;
  min-width: 180px;
  justify-content: center;
  transition: transform 220ms var(--ease),
              box-shadow 220ms var(--ease),
              border-color 220ms var(--ease),
              background 220ms var(--ease);
  cursor: pointer;
}
.partner-logos .badge:hover{
  transform: translateY(-3px);
  border-color: rgba(var(--brand-rgb), .75);
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 38px rgba(10,12,18,.12);
}
.partner-logos .badge img{
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: transform 220ms var(--ease), filter 220ms var(--ease), opacity 220ms var(--ease);
  opacity: .92;
  filter: grayscale(.12);
}
.partner-logos .badge:hover img{
  transform: scale(1.03);
  opacity: 1;
  filter: none;
}

/* =========================
   BRAND WALL
   ========================= */
.brand-wall{
  position: relative;
  padding: clamp(200px, 9vw, 140px) 0;
  overflow: hidden;
  background: #0b0b0c;
  color: rgba(255,255,255,.92);
}
.brand-wall__bg{ position:absolute; inset:0; z-index:0; }
.brand-wall__video,
.brand-wall__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05);
}
.brand-wall__video:not([src=""]) + .brand-wall__img{ display:none; }

.brand-wall:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(900px 520px at 18% 35%, rgba(var(--brand-rgb), .36), rgba(0,0,0,0) 60%),
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.20) 100%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.65) 85%);
}
.brand-wall:after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 120px;
  z-index:2;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(255, 255, 255, 0.45));
}
.brand-wall__content{
  position: relative;
  z-index: 3;
  display:flex;
  align-items:center;
  min-height: 360px;
}
.wall-card{
  width: min(620px, 100%);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  padding: clamp(18px, 2.4vw, 28px);
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
  backdrop-filter: blur(12px);
}
.brand-wall h2{
  margin: 10px 0 10px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.6px;
  line-height: 1.05;
}
.brand-wall .muted{ color: rgba(255,255,255,.74); }
.wall-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 16px;
}
@media (prefers-reduced-motion: reduce){
  .brand-wall__video{ display:none; }
  .brand-wall__img{ transform:none; }
}

/* =========================
   UNSERE HEIMAT (background image overlay)
   ========================= */
.section--soft[aria-label="Unsere Heimat"]{
  position: relative;
  overflow: hidden;
}
.section--soft[aria-label="Unsere Heimat"]::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("../img/slider/slider_4.png") center/cover no-repeat;
  opacity: 1;
  filter: saturate(1.15) contrast(1.15);
  z-index:0;
}
.section--soft[aria-label="Unsere Heimat"]::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(var(--brand-rgb), .14), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.86));
  z-index:1;
}
.section--soft[aria-label="Unsere Heimat"] .container{
  position: relative;
  z-index: 2;
}
.heimat-wrap{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(18px, 3vw, 34px);
  align-items:start;
}
.heimat-copy p{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 78ch;
}
.heimat-aside{
  position: sticky;
  top: 120px;
}
.heimat-cta{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.heimat-wrap .soft-panel{
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.heimat-wrap .soft-panel:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(0,0,0,.14);
}
@media (max-width: 980px){
  .heimat-wrap{ grid-template-columns: 1fr; }
  .heimat-aside{ position: relative; top: auto; }
}

/* =========================
   SLIDER (CORE)
   ========================= */
.slider{
  width: 100%;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.slider-track{
  display:flex;
  flex-wrap: nowrap;
  transition: transform 900ms var(--ease-soft);
  will-change: transform;
}
.slide{
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0;
}
.slide-inner.slide-hero{
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  border-radius: 18px;
  min-height: clamp(440px, 46vw, 620px);
}
.slide-media{ position:absolute; inset:0; }
.slide-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
}

/* panel */
.slide-content{
  position: absolute;
  z-index: 2;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  width: min(420px, calc(100% - 28px));
  padding: clamp(14px, 2vw, 20px);
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
}
.slide-badge{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.slide-content h3{
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.5px;
  line-height: 1.08;
  color: #fff;
}
.slide-content p{
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
}
.slide-cta{ margin-top: 14px; }

/* dots */
.slider-dots{
  display:flex;
  gap:8px;
  justify-content:center;
  padding: 14px 0 0;
  background: transparent;
  border-top: none;
}
.slider-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(12,14,18,.18);
  cursor:pointer;
  transition: transform 200ms var(--ease-soft), width 260ms var(--ease-soft);
}
.slider-dot:active{ transform: scale(0.92); }
.slider-dot.is-active{
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

/* mobile */
@media (max-width: 860px){
  .slide-inner.slide-hero{ min-height: 520px; }
  .slide-content{
    right: 12px;
    bottom: 12px;
    width: min(640px, calc(100% - 24px));
  }
}

/* =========================
   FULL BLEED helper
   ========================= */
.section--full .slider-wrap{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.section--full .slider{ border-radius: 0; }
.section--full .slide-inner.slide-hero{ border-radius: 0; }

/* =========================
   THEME SWITCHER (A/B/C)
   ========================= */
.theme-switch{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  display:flex;
  gap:10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(12,14,18,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
}
.theme-switch button{
  border: 1px solid rgba(12,14,18,.10);
  background: #fff;
  color: rgba(12,14,18,.86);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  cursor:pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}
.theme-switch button:hover{
  transform: translateY(-1px);
  border-color: rgba(var(--brand-rgb), .35);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}
.theme-switch button.is-active{
  border-color: rgba(var(--brand-rgb), .55);
  box-shadow: 0 12px 26px rgba(var(--brand-rgb), .16);
}
body.theme-a{ --shadow: 0 10px 26px rgba(0,0,0,.08); }

/* =========================
   THEME B (hero packs / visuals)
   ========================= */
body.theme-b .hero-grid{
  grid-template-columns: 1.05fr .95fr;
  align-items: start;
}
body.theme-b .hero-visual{
  position: relative;
  min-height: 420px;
}
body.theme-b .hero-visual .pack{
  position:absolute;
  width: 56%;
  border-radius: 22px;
  background: rgba(255,255,255,.65);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  border: 1px solid rgba(12,14,18,.08);
  padding: 18px;
  backdrop-filter: blur(10px);
  transition: transform 280ms var(--ease);
}
body.theme-b .hero-visual .pack img{
  width: 100%;
  height: 280px;
  object-fit: contain;
  display:block;
}
body.theme-b .hero-visual .p1{ left: 0; top: 10px; transform: rotate(-6deg); }
body.theme-b .hero-visual .p2{ right: 0; top: 40px; transform: rotate(5deg); }
body.theme-b .hero-visual .p3{ left: 18%; bottom: 0; transform: rotate(-2deg); width: 62%; }

body.theme-b .hero-visual:hover .p1{ transform: translateY(-6px) rotate(-7deg); }
body.theme-b .hero-visual:hover .p2{ transform: translateY(-8px) rotate(6deg); }
body.theme-b .hero-visual:hover .p3{ transform: translateY(-10px) rotate(-3deg); }

body.theme-b .hero-facts{
  position:absolute;
  right: 14px;
  bottom: -100px;
  width: min(420px, 92%);
}
body.theme-b .hero-facts ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(12,14,18,.72);
  line-height: 1.75;
}

/* =========================
   BACK TO TOP
   ========================= */
.to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  width: 67px;
  height: 46px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(12,14,18,.10);
  background: rgba(255,255,255,.78);
  color: rgba(12,14,18,.86);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms var(--ease);
}
.to-top:hover{
  transform: translateY(6px);
  border-color: rgba(var(--brand-rgb), .35);
  box-shadow: 0 18px 46px rgba(0,0,0,.16);
}
.to-top.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 520px){
  .to-top{ bottom: 78px; }
}

/* HEADER: her zaman aynı daktilo font */
.menubar, .menubar a, .mobile, .mobile a{
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 22px !important;
}

/* =========================
   MOBILE HERO FIX (Theme-B)
   ========================= */
@media (max-width: 860px){

  /* Theme-B hero grid mobilde tek kolon olsun */
  body.theme-b .hero-grid{
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  /* Sağ blok (görsel alan) daha kontrollü */
  body.theme-b .hero-visual{
    min-height: 360px;
  }

  /* Pack'ler mobilde taşmasın, daha dar olsun */
  body.theme-b .hero-visual .pack{
    width: 72%;
    padding: 14px;
  }

  body.theme-b .hero-visual .pack img{
    height: 220px; /* çok uzunsa 200-240 arası */
  }

  /* Facts panel mobilde altta tam genişlik gibi dursun */
  body.theme-b .hero-facts{
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  /* Metin blokları mobilde daha rahat */
  .hero p{
    max-width: 100%;
  }
}
/* Header font boyutu mobilde daha dengeli */
@media (max-width: 520px){
  .menubar, .menubar a, .mobile, .mobile a{
    font-size: 16px !important;
  }
}
@media (max-width: 520px){
  body.theme-b .hero-facts{
    bottom: -220px;
    right: -5px;
    width: max(300px, 100%);
    font-size: 13px;
  }
}

/* =========================
   WARUM YURDUM (INTRO) - MOBILE FIX
   ========================= */
.section--why-intro .section-head{
  align-items: flex-start; /* alt hizalama yerine üstten hizala */
}

@media (max-width: 860px){

  /* iki kolon yerine tek kolon */
  .section--why-intro .section-head{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* sağdaki panel (soft-panel) tam genişlik otursun */
  .section--why-intro .section-head > aside{
    width: 100%;
    max-width: 100%;
  }

  /* heimat-aside sticky ise mobilde kapat (tasmasin) */
  .section--why-intro .heimat-aside{
    position: relative;
    top: auto;
  }

  /* liste ve içerik taşmasın */
  .section--why-intro ul{
    margin: 0;
    padding-left: 18px;
  }
  .section--why-intro li{
    word-break: break-word;
  }
}
