.ces-homeAbout{
  position:relative;
  padding:90px 0;
  background:#fff;
  overflow:hidden;
}

.ces-homeAbout__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}

.ces-homeAbout__content{
  max-width:680px;
}

.ces-homeAbout__kicker{
  display:inline-block;
  margin-bottom:12px;
  color:var(--ces-red);
  font-weight:700;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.ces-homeAbout__title{
  margin:0 0 18px;
  color:#111;
  font-size:clamp(22px, 2.8vw, 34px);
  line-height:1.2;
  font-weight:700;
  letter-spacing:0;
  max-width:720px;
}

.ces-homeAbout__desc{
  margin-bottom:28px;
}

.ces-homeAbout__desc p{
  margin:0;
  color:#4b4b4b;
  font-size:clamp(15px, 1.25vw, 18px);
  line-height:1.8;
}

.ces-homeAbout__tabs{
  margin-bottom:30px;
}

.ces-homeAbout__tabNav{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin-bottom:20px;
}

.ces-homeAbout__tabBtn{
  appearance:none;
  border:1px solid #e7e7e7;
  background:#f7f7f7;
  color:#222;
  min-height:58px;
  padding:14px 18px;
  border-radius:14px;
  font-size:16px;
  font-weight:800;
  text-align:center;
  cursor:pointer;
  transition:all .25s ease;
}

.ces-homeAbout__tabBtn:hover{
  border-color:rgba(209,0,0,.25);
  color:var(--ces-red);
}

.ces-homeAbout__tabBtn.is-active{
  background:#fff;
  color:var(--ces-red);
  border-color:rgba(209,0,0,.22);
  box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.ces-homeAbout__tabPanels{
  position:relative;
  min-height:130px;
}

.ces-homeAbout__panel{
  background:#fff;
  border:1px solid #efefef;
  border-radius:18px;
  padding:24px 24px;
  box-shadow:0 18px 45px rgba(0,0,0,.05);
}

.ces-homeAbout__panel p{
  margin:0;
  color:#4b4b4b;
  line-height:1.85;
  font-size:16px;
}

.ces-homeAbout__actions{
  margin-top:28px;
}

.ces-homeAbout__btn{
  padding:14px 20px;
}

.ces-homeAbout__media{
  position:relative;
}

.ces-homeAbout__imageWrap{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  background:#f3f3f3;
  min-height:540px;
  box-shadow:0 30px 70px rgba(0,0,0,.10);
}

.ces-homeAbout__imageWrap::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:28%;
  background:linear-gradient(to top, rgba(0,0,0,.12), rgba(0,0,0,0));
  pointer-events:none;
}

.ces-homeAbout__img{
  width:100%;
  height:100%;
  min-height:540px;
  object-fit:cover;
  object-position:center;
}

.ces-homeAbout__placeholder{
  width:100%;
  min-height:540px;
  background:
    linear-gradient(135deg, rgba(209,0,0,.10), rgba(0,0,0,.03)),
    #f5f5f5;
}

/* reveal */
.ces-reveal{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .75s ease, transform .75s ease;
}

.ces-reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (max-width: 1199px){
  .ces-homeAbout__grid{
    gap:34px;
  }

  .ces-homeAbout__imageWrap,
  .ces-homeAbout__img,
  .ces-homeAbout__placeholder{
    min-height:470px;
  }
}

@media (max-width: 991px){
  .ces-homeAbout{
    padding:70px 0;
  }

  .ces-homeAbout__grid{
    grid-template-columns:1fr;
  }

  .ces-homeAbout__content{
    max-width:none;
    order:2;
  }

  .ces-homeAbout__media{
    order:1;
  }

  .ces-homeAbout__imageWrap,
  .ces-homeAbout__img,
  .ces-homeAbout__placeholder{
    min-height:380px;
  }
}

@media (max-width: 640px){
  .ces-homeAbout{
    padding:56px 0;
  }

  .ces-homeAbout__tabNav{
    grid-template-columns:1fr;
  }

  .ces-homeAbout__tabBtn{
    min-height:54px;
    font-size:15px;
  }

  .ces-homeAbout__panel{
    padding:20px 18px;
    border-radius:16px;
  }

  .ces-homeAbout__panel p{
    font-size:15px;
    line-height:1.75;
  }

  .ces-homeAbout__imageWrap,
  .ces-homeAbout__img,
  .ces-homeAbout__placeholder{
    min-height:300px;
    border-radius:22px;
  }
}