/* BIG SECTION */
.sv-big-sec{
  padding:100px 5%;
  background:#f8fbff;
}

.sv-big-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* IMAGE */
.sv-big-img img{
  width:100%;
  height: 400px;
  border-radius:16px;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* EXTRA DETAIL STYLE */
.sv-highlights{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin:18px 0 20px;
}

.sv-highlights div{
  font-size:13px;
  background:#f1f6ff;
  padding:8px 12px;
  border-radius:6px;
  color:#1b3e7a;
  font-weight:500;
}

/* CONTENT */
.sv-big-content .sv{
  background:#fff;
  padding:40px;
  border-radius:16px;
  position:relative;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* stripe reuse */
.sv-big-content .sv-stripe{
  position:absolute;
  left:0;
  top:0;
  width:6px;
  height:100%;
  background:var(--red);
  border-radius:6px 0 0 6px;
}

.sv-big-content h3{
  font-size:28px;
  color:var(--red);
  margin-bottom:14px;
}

.sv-big-content p{
  font-size:15px;
  line-height:1.8;
  color:#3a5070;
  margin-bottom:18px;
}

/* LIST */
.sv-list{
  margin-bottom:20px;
  padding-left:0;
  list-style:none;
}

.sv-list li{
  font-size:14px;
  margin-bottom:8px;
  color:#333;
}

/* BUTTONS */
.sv-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.sv-btn{
  padding:10px 20px;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  border-radius:6px;
  transition:.3s;
}

.sv-btn-red{
  background:var(--red);
  color:#fff;
}

.sv-btn-red:hover{
  background:#c62828;
}

.sv-btn-outline{
  border:2px solid var(--blue);
  color:var(--blue);
}

.sv-btn-outline:hover{
  background:var(--blue);
  color:#fff;
}

/* TAG */
.sv-big-content .sv-tag{
  display:inline-block;
  margin-top:10px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .sv-big-wrap{
    grid-template-columns:1fr;
    gap:30px;
  }

  .sv-big-content .sv{
    padding:25px;
  }

  .sv-big-content h3{
    font-size:22px;
  }
}