/*
Special css definition for page "agenda", not to be loaded in BE
*/
/*
   .agenda {
      display: flex;
      flex-direction: column;
      gap: 1rem;
		 
    }

    .event {
      background: #fff;
      border-radius: 10px;
      padding: 1rem 1.2rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
      box-shadow: 0 2px 6px rgba(0,148,97,0.4);
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 0.75rem 1.25rem;
      align-items: start;
    }
*/
    .event {
      background: #fff;
      border-radius: 10px;
      padding: 1rem 1.2rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
      box-shadow: 0 2px 6px rgba(0,148,97,0.4);
		
		margin-left: 3%;
		margin-right: 3%;
    }


/*
	.event-date {
		width:25% !important;
	}
    .event-content {
		width:75% !important;
	}
*/
    .event-date {
      text-align: left;
      font-size: 0.95rem;
      font-weight: 600;
    }

    .event-date span {
      display: block;
    }

    .event-date br{
		display: none;
    }

    .event-date .period {
      font-size: 1rem;
      font-weight: 700;
	  white-space: nowrap;
    }

    .event-date .year {
      font-size: 0.85rem;
      color: #555;
    }

    .event-content h2 {
      margin: 0;
      font-size: 1.1rem;
    }

    .event-content .location {
      margin: 0.2rem 0 0.4rem;
      font-size: 0.9rem;
      color: #555;
    }

    .event-content .description {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.4;
    }

    @media (max-width: 600px) {
		   
		.event {
			margin-left: auto;
			margin-right: auto;
		}
		
    }
