/* Singola news*/

.news-first{
    display: grid;
    grid-template-columns: 45% auto;
    gap: 50px;
}

.news-images{
    display: grid;
    row-gap: 30px;
}

.news-images img{
    width: 100%;
}

.news-info span{
    font-weight: 500;
}
.news-info h1{
    font-size: 30px;
    font-weight: 900;
}

.news-info .calendar{
    color: #C4a606;
    font-weight: 600;
    font-size: 13px;
}
.news-info img{
    height: 15px;
    width: 15px;
    margin-right: 4px;
}

p.subtitle{
    font-size: 19px;
    line-height: 1.3;
    font-weight: 400;
}

.description p{
    font-size: 15px;
    line-height: 1.3;
    font-weight: 400;
}

section.eventbrite {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.eventbrite-container {
    background: #FFD700;
    border-radius: 20px;
    padding: 40px 85px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
.eventbrite-container h2{
    font-size: 24px;
    margin-bottom: 10px;
}
.eventbrite-container p {
    font-size: 19px;
    line-height: 1.4;
}
.eventbrite-container .map-icon{
    gap: 15px;
}
.eventbrite-container .map-icon img{
    width: 24px;
}
.eventbrite-container .map-icon span {
    font-size: 15px;
}
.eventbrite-container .links{
    display: grid;
    justify-content: center;
    text-align: center;
}
.eventbrite-container .links img {
    width: 250px;
    margin: 0 auto;
    cursor: pointer;
}
.eventbrite-container .links span{
    font-size: 23px;
    text-decoration: underline;
}
.images{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
.images img{
    width: 100%;
}
.optional-infos{
    max-width: 800px;
    margin: 0 auto;
}
/* Fine singola news */

.news-page.cards-container{
    grid-template-columns: unset!important;
}
.news-page .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-page .filter-input {
    width: 250px;
}
.news-page.cards-container .cards-wrapper {
    grid-template-columns: repeat(3,1fr)!important;
    gap: 40px;
}


.news-info a {
color: var(--link-black);
text-decoration: underline;
}

.news-info a:hover {
color: var(--yellow-comics);
text-decoration: underline;
}

@media screen and (max-width: 991px) {
    .news-page.cards-container .cards-wrapper {
        grid-template-columns: repeat(2,1fr)!important;
    }
}

@media screen and (max-width: 768px) {
    .eventbrite-container{
        grid-template-columns: auto;
        padding: 40px 20px;
        width: 100%;
    }
    .news-first{
        grid-template-columns: auto;
    }
    .news-page.cards-container .cards-wrapper {
        grid-template-columns: repeat(1,1fr)!important;
    }
}