
.fresh-carousel{width:100%;}

.fresh-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  height:100%;
}

.fresh-card-media{
  position:relative;
  width:100%;
  aspect-ratio:3/2;
  overflow:hidden;
  border-radius:16px;
  margin-bottom:14px;
  background:#f3f4f6;
}

.fresh-card-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.fresh-card-title{
  font-size:var(--fresh-headline,24px);
  margin:10px 0 8px;
}

.fresh-card-text{
  font-size:var(--fresh-text,14px);
  line-height:1.5;
}

.fresh-carousel-nav{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.fresh-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.12);
  background:#fff;
  cursor:pointer;
}


.fresh-btn{
  position:relative;
}

.fresh-btn:before{
  content:'';
  position:absolute;
  inset:0;
  margin:auto;
  width:10px;
  height:10px;
  border-top:2px solid #000;
  border-right:2px solid #000;
  transform:rotate(45deg);
}

.fresh-prev:before{
  transform:rotate(-135deg);
}

