/* Article Content */
.evento_content {
    max-width: 1600px;
    margin: 0 auto;        /* <-- questo centra il blocco */
    padding: 0 50px 60px;  /* padding orizzontale e inferiore */
    background: white;
    border-radius: 8px;
    font-family: Inter, sans-serif;
}

.evento_article-content {
    max-width: 1040px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
}

.evento_article-content a {
    text-decoration: none;
    color:blue;
}

.evento_article-content a:hover {
    text-decoration: underline;
}

.evento_article-content p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-block-start: 0px !important;
    margin-block-end: 0px !important;
    font-family: Inter, sans-serif;
    padding-bottom: 25px;
}

/* Banner Section */
.evento_banner-section {
    display: flex;
    justify-content: center;
}

.evento_banner-image {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    position: relative;
}



.immagine_banner {
    width: 100%;
    padding-top: 20px;
}



.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;         
  aspect-ratio: 16 / 9;     
  margin: 0 auto;           
  overflow: hidden;         
  
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}



/* MEDIA QUERIES */

@media (max-width: 1128px) {
    .evento_article-content p {
        font-size: 16px;
        line-height: 22px;
    }

    .evento_article-content p {
        margin-block-start: 0px !important;
        margin-block-end: 0px !important;
    }
}

@media (max-width: 369px) {
    .evento_article-content p {
        line-height: 20px;
        font-size: 14px;
    }
}

@media (max-width: 699px) {
    .evento_banner-image {
        width: 100%;
    }
    .immagine_banner {
        width: 100%;
    }
}

@media (max-width: 409px) {
    .evento_content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 410px) and (max-width: 699px) {
    .evento_content {
        padding-left: 50px;
        padding-right: 50px;

    }
}

@media (min-width: 700px) and (max-width: 870px) {
    .evento_content {
        padding-left: 30px;
        padding-right: 30px;
    }
}