/* Stili lista eventi */
.sc-eventi-list {display:flex;flex-wrap:wrap;gap:40px;}
.sc-event-card {display:flex;align-items:flex-start;width:100%;max-width:1100px;height:500px;gap:60px;margin-bottom:40px;position:relative;}
.sc-event-card-img {width:400px;height:100%;background:#994400;border-radius:45px;box-shadow:5px 5px 10px #ccc;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.sc-event-card-img img {width:100%;height:100%;object-fit:cover;}
.sc-event-card-content {flex:1;padding-top:20px;position:relative;height:100%;display:flex;flex-direction:column;}
.sc-event-card-title {font-size:70px;font-family:Montserrat,sans-serif;}
.sc-event-card-date {font-size:12px;margin-top:10px;}
.sc-event-card-info {font-size:14px;margin-top:14px;flex:1 1 auto;max-width:90%;max-height:48px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;white-space:normal;}
.sc-event-card-btn-wrap {position:absolute;bottom:40px;right:40px;text-align:right;}
.sc-event-card-btn {background:cyan;padding:20px 50px;font-size:60px;border-radius:5px;text-decoration:none;color:#000;display:inline-block;}
/* Stile pulsante musicale */
.btn-musicale {
  background-color: #1e90ff;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none !important;
}
.btn-musicale:hover {
  background-color: #0d6efd;
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .sc-eventi-list {gap:0;}
  .sc-event-card {flex-direction:column;align-items:center;max-width:100vw;width:100%;height:auto;gap:0;margin-bottom:40px;min-height:unset;}
  .sc-event-card-img {width:90vw;max-width:400px;height:60vw;max-height:400px;margin:0 auto;}
  .sc-event-card-content {padding-top:30px;align-items:center;justify-content:flex-start;height:auto;width:100%;}
  .sc-event-card-title {font-size:40px;text-align:center;}
  .sc-event-card-date {
    font-size:22px;
    text-align:center;
    margin-top:10px;
    width:90vw;
    max-width:400px;
    margin-left:auto;
    margin-right:auto;
  }
  .sc-event-card-info {display:none !important;}
  .sc-event-card-btn-wrap {
    position: static;
    margin: 30px auto 0 auto;
    text-align: center;
    width: 90vw;
    max-width: 400px;
    padding-left: 0;
    padding-right: 0;
  }
  .sc-event-card-btn {width:80vw;max-width:350px;}
} 

