/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

#ee-agenda {

	.ee-events {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
		gap: 30px;

		.ee-event {
			display: flex;
			flex-direction: column;

			.ee-event-image {
				margin-bottom: 10px;
				aspect-ratio: 3 / 2;
				object-fit: cover;
			}

			.ee-event-content {
				display: flex;
				flex-grow: 1;
				flex-direction: column;
				align-items: flex-start;

				.ee-event-title {
					font-size: 26px;
					font-weight: 700;
					margin: 10px 0;

					&:hover {
						text-decoration: underline;
					}
				}

				.grow {
					flex-grow: 1;
				}

				.ee-event-tickets {
					color: black;
					background-color: white;
					border: 1px solid black;
					transition: all 0.3s;
					padding: 10px 20px;
					margin-top: 10px;
				}

				.notice,
				.ee-event-free,
				.ee-event-organitza {
					margin-top: 10px;
					background-color: rgb(230, 230, 230);
					border: 1px solid rgb(230, 230, 230);
					padding: 10px 20px;

					&:hover {
						text-decoration: none !important;
					}
				}

				.ee-event-organitza {
					padding: 2px 8px;
					font-size: 14px;
				}
			}
		}
	}
}