/* Carvix 11.2 – category management and ad slots */

.cvx1120-ad-zone{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:14px;
  width:100%;
  margin:22px 0 34px;
}

.cvx1120-ad{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,220px) minmax(0,1fr);
  min-height:150px;
  overflow:hidden;
  border:1px solid #dce6e1;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 30px rgba(7,31,24,.06);
}

.cvx1120-ad-label{
  position:absolute;
  top:10px;
  right:10px;
  z-index:2;
  padding:5px 8px;
  border-radius:999px;
  background:rgba(7,31,24,.78);
  color:#fff;
  font-size:9px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.cvx1120-ad-image{
  min-height:150px;
  background:#e8efeb;
}

.cvx1120-ad-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cvx1120-ad-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:24px;
}

.cvx1120-ad-copy strong{
  font-size:21px;
}

.cvx1120-ad-copy p{
  margin:8px 0 13px;
  color:#66766e;
  line-height:1.55;
}

.cvx1120-ad-copy a{
  display:inline-flex;
  min-height:40px;
  align-items:center;
  padding:0 14px;
  border-radius:10px;
  background:#29d884;
  color:#071f18;
  text-decoration:none;
  font-weight:900;
}

.cvx1120-admin-section{
  margin:32px 0;
}

.cvx1120-category-admin-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.cvx1120-category-admin-card{
  display:grid;
  gap:14px;
  padding:18px;
  border:1px solid #dce6e1;
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 24px rgba(7,31,24,.05);
}

.cvx1120-preview{
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:13px;
  background:#e8efeb;
}

.cvx1120-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cvx1120-category-admin-card label{
  display:grid;
  gap:6px;
}

.cvx1120-category-admin-card label>span{
  font-size:12px;
  font-weight:850;
}

.cvx1120-category-admin-card input,
.cvx1120-category-admin-card textarea{
  width:100%;
  padding:11px 12px;
  border:1px solid #dce6e1;
  border-radius:10px;
  font:inherit;
}

.cvx1120-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.cvx1120-check{
  display:flex!important;
  align-items:center;
  grid-template-columns:auto 1fr;
  gap:8px!important;
}

.cvx1120-check input{
  width:auto!important;
}

.cvx1120-ad-editor{
  margin-bottom:32px;
}

.cvx1120-existing-ads{
  display:grid;
  gap:12px;
}

.cvx1120-existing-ad{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) auto;
  align-items:center;
  gap:18px;
}

.cvx1120-existing-ad>img{
  width:160px;
  height:100px;
  object-fit:cover;
  border-radius:12px;
}

.cvx1120-existing-ad-copy h3{
  margin:4px 0;
}

.cvx1120-existing-ad-copy p{
  margin:0 0 6px;
  color:#66766e;
}

@media(max-width:1050px){
  .cvx1120-category-admin-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:700px){
  .cvx1120-ad{
    grid-template-columns:1fr;
  }

  .cvx1120-category-admin-grid{
    grid-template-columns:1fr;
  }

  .cvx1120-existing-ad{
    grid-template-columns:1fr;
  }

  .cvx1120-existing-ad>img{
    width:100%;
    height:180px;
  }
}


/* Carvix 13.0.1 – image-led sponsor advertising */
.cvx1120-ad.has-image{
  grid-template-columns:minmax(380px,1.35fr) minmax(280px,.65fr);
  min-height:260px;
  overflow:hidden;
  border-color:#bcebd3;
}
.cvx1120-ad.has-image .cvx1120-ad-image{
  min-height:260px;
}
.cvx1120-ad.has-image .cvx1120-ad-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.cvx1120-ad.has-image .cvx1120-ad-copy{
  padding:32px;
}
.cvx1120-ad.has-image .cvx1120-ad-copy strong{
  font-size:29px;
  line-height:1.08;
  letter-spacing:-.035em;
}
.cvx1120-ad.has-image .cvx1120-ad-copy p{
  font-size:15px;
  line-height:1.6;
}
@media(max-width:850px){
  .cvx1120-ad.has-image{
    grid-template-columns:1fr;
  }
  .cvx1120-ad.has-image .cvx1120-ad-image{
    min-height:210px;
  }
}
