/* ===== STYLE 2 ===== */
.style2{
  margin-top:80px;
}

.style2 .scw-event-card{
  display:flex;
  height:350px;
  margin-bottom:20px;
  background:linear-gradient(45deg,#7a58ff,#b14dff);
  color:white;
  overflow:hidden;
  width:100%;
}

.style2 .scw-content{
  flex:1;
  display:flex;
  align-items:center;
  padding:20px;
  gap:30px;
}

.style2 .scw-image-box{
  flex:1;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  min-width:300px;
}

.style2 .scw-date-box{
  background:white;
  color:#333;
  padding:20px;
  text-align:center;
  min-width:120px;
  box-shadow:2px 2px 10px rgba(0,0,0,0.1);
  position:relative;
  overflow:hidden;
}

.style2 .scw-date-box::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:0;
  border-style:solid;
  border-width:0 15px 15px 0;
  border-color:transparent transparent black transparent;
}

.style2 .scw-date-box h1{
  font-size:40px;
  line-height:1;
}

.style2 .scw-date-box hr{
  width:30px;
  margin:10px auto;
  border:1px solid #333;
}

.style2 .scw-info{
  flex:1;
}

.style2 .scw-info h2{
  font-size:18px;
  letter-spacing:1px;
}

.style2 .scw-short-line{
  width:40px;
  border:1px solid white;
  margin:10px 0;
}

.style2 .scw-info p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:20px;
  opacity:0.9;
}

.style2 .scw-btn-booking{
  display:inline-block;
  padding:8px 25px;
  border:1px solid white;
  color:white;
  text-decoration:none;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
  transition:0.3s;
}

.style2 .scw-btn-booking:hover{
  background:white;
  color:#ff5e57;
}
@media(max-width:768px){
  .style2 .scw-event-card{ flex-direction:column; height:auto; }
  .style2 .scw-image-box{ height:250px; }
}
