.cs-ac{ padding: 40px 0 40px 0; }
.cs-ac__inner{ max-width:1200px; margin:0 auto; padding:0 0; }

.cs-ac__title{
  margin:0 0 18px;
  font-size:46px;
  line-height:1.08;
  font-weight:700;
  color:#0b1220;
}

.cs-ac__lead{
  max-width:920px;
  margin:0 0 34px;
  font-size:16px;
  line-height:1.7;
  color:#556070;
}

.cs-ac__card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 12px 34px rgba(17,24,39,.10);
  padding:28px;
  display:flex;
  gap:28px;
  align-items:stretch;
}

/* Images column (2 images stacked) */
.cs-ac__media{
  flex:0 0 46%;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.cs-ac__img-wrap{
  border-radius:14px;
  overflow:hidden;
  background:#f3f4f6;
  border:1px solid rgba(17,24,39,.08);
  aspect-ratio:16/10;
}

.cs-ac__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.cs-ac__content{
  flex:1;
  display:flex;
  flex-direction:column;
  min-width:0;
}

.cs-ac__list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.cs-ac__item{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:14px;
  align-items:start;
  padding:14px 14px;
  border-radius:14px;
  background:rgba(17,24,39,.03);
  border:1px solid rgba(17,24,39,.06);
}

.cs-ac__icon{
  width:38px;
  height:38px;
  border-radius:12px;
  background:rgba(47,107,255,.10);
  border:1px solid rgba(47,107,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
}

.cs-ac__icon-img{
  width:32px;
  height:32px;
  display:block;
  object-fit:contain;
}

.cs-ac__label{
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:#6b7280;
  margin:0 0 6px;
  font-weight:800;
}

.cs-ac__value{
  font-size:16px;
  line-height:1.65;
  color:#111827;
  word-break:break-word;
}

.cs-ac__cta{
  margin-top:auto;
  padding-top:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.cs-ac__cta-text{
  font-size:16px;
  color:#111827;
}

.cs-ac__btn{
  background:#2f6bff;
  color:#fff;
  text-decoration:none;
  padding:14px 22px;
  border-radius:12px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:190px;
  white-space:nowrap;
  transition: background-color .18s, color .18s, transform .15s;
}

.cs-ac__btn:hover,
.cs-ac__btn:focus{
  background:#245bdb;
  color:#ececec;
  transform: translateY(-1px);
}

.cs-ac__btn:active{
  transform: translateY(0);
}

@media (max-width:991px){
  .cs-ac__title{ font-size:36px; }
  .cs-ac__card{ flex-direction:column; }
  .cs-ac__media{ flex:1 1 auto; }
}

@media (max-width:767px){
  .cs-ac{ padding:44px 0; }
  .cs-ac__title{ font-size:30px; }
  .cs-ac__card{ padding:18px; gap:18px; }

  /* Mobile: show only the first image */
  .cs-ac__img-wrap--2{ display:none; }

  .cs-ac__cta{ flex-direction:column; align-items:stretch; }
  .cs-ac__btn{ width:100%; }
}



.cs-ac__img-link{
  display:block;
  width:100%;
  height:100%;
  text-decoration:none;
}

@media (min-width: 992px){
  .cs-ac__img-link{ cursor: zoom-in; }
}



.cs-ac-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
}

.cs-ac-modal.is-open{ display:block; }

.cs-ac-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.78);
}

.cs-ac-modal__dialog{
  position:relative;
  z-index:1;
  height:100%;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.cs-ac-modal__img{
  max-width:min(1100px, 92vw);
  max-height:86vh;
  width:auto;
  height:auto;
  border-radius:14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  background:#111;
}

.cs-ac-modal__close{
  position:absolute;
  top:18px;
  right:18px;
  z-index:2;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.cs-ac-modal__close:hover{
  background: rgba(0,0,0,.55);
}