/* mod_agenda_simple */

.agenda-simple {
    width: 100%;
}

.agenda-simple__header,
.agenda-simple__item {
    display: grid;
    grid-template-columns:repeat(3,1fr);
    gap: 1rem;
    align-items: center;
}

.agenda-simple__header {
    padding: 0 0 .75rem;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .6;
}

.agenda-simple__item {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,.22);
}

.agenda-simple__date {
    font-weight: 300;
}

.agenda-simple__place {
    font-weight: 700;
}

.agenda-simple__city {
    opacity: .8;
}

.agenda-simple__action {
    display: flex;
    justify-content: center;
}

a.agenda-simple__button:hover {
	background: #fff;
	color: #000;
	border-color:#fff !important;
}

.agenda-simple__empty {
    margin: 0;
    opacity: .7;
}

.agenda-simple__action {
    display: flex;
    justify-content: center;
    align-items: center;
}

.agenda-simple__button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 160px;
    height: 54px;
    padding: 0 1.4rem;

    border: 2px solid #fff;
    border-radius: 999px;

    background: transparent;
    color: #fff;

    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
}

.agenda-simple__button-main {
    display: block;
    font-size: 1rem;
}

.agenda-simple__button-after {
    display: block;
    margin-top: .3rem;
    font-size: .62rem;
    line-height: 1;
}

@media (max-width: 760px) {
    .agenda-simple__header {
        display: none;
    }

    .agenda-simple__item {
        grid-template-columns: 1fr;
        gap: .35rem;
    }

    .agenda-simple__action {
        margin-top: .5rem;
    }
}
