/* ============================================================
   BLOG
============================================================ */

.blog-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

/* ITEM CARD */
.blog-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.blog-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* IMAGE WRAPPER (belangrijk voor uniform formaat) */
.blog-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f2f2f2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE ZELF */
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* zorgt voor crop, geen vervorming */
    object-position: center;
    display: block;
}

/* CONTENT */
.blog-item h2 {
    font-size: 18px;
    margin: 15px 15px 10px;
    line-height: 1.3;
}

.blog-item p {
    margin: 0 15px 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* LINK */
.blog-item a {
    margin: auto 15px 15px;
    display: inline-block;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.blog-item a:hover {
    text-decoration: underline;
}
/* ============================================================
   AGENDA
============================================================ */

.agenda-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

/* ITEM CARD */
.agenda-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
	position: relative;
}

.agenda-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* IMAGE WRAPPER (belangrijk voor uniform formaat) */
.agenda-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f2f2f2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE ZELF */
.agenda-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* zorgt voor crop, geen vervorming */
    object-position: center;
    display: block;
}

/* CONTENT */
.agenda-item h2 {
    font-size: 18px;
    margin: 15px 15px 10px;
    line-height: 1.3;
}

.agenda-item p {
    margin: 0 15px 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* LINK */
.agenda-item a {
    margin: auto 15px 15px;
    display: inline-block;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}
/*
.agenda-item a:hover {
    text-decoration: underline;
}
*/
.agenda-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
    width: 50px;
}

.agenda-date-badge .month {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

.agenda-date-badge .day {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.agenda-meta {
    margin-left: 15px;
}

.agenda-meta p {
    margin: 6px 0;
    font-size: 14px;
}

.agenda-meta i {
    margin-right: 6px;
    color: #444;
}

.agenda-status {
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

.agenda-status.ongoing {
    background:  var(--color-secondary-light);
    color: var(--color-secondary);
}

.agenda-status.past {
    background: #eee;
    color: #666;
	font-weight: 200;
}

.agenda-button {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 15px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.agenda-button:hover {
    background: var(--color-accent);
}
.agenda-item a.agenda-button {
  color: #fff !important;
}
.agenda-event a.btn-primary {
  color: #fff !important;
}
.extra-title {
    margin-top: 20px;
    font-size: 18px;
}

.extra-dates {
    list-style: none;
    padding: 0;
}

.extra-dates li {
    margin: 6px 0;
}

.extra-dates i {
    margin-right: 6px;
}

.agenda-ticket-button {
    display: inline-block;
    margin-top: 5px;
	margin-bottom: 20px;
    padding: 10px 15px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
	
}

.agenda-ticket-button:hover {
    background: var(--color-accent);
}
.agenda-single a.agenda-ticket-button {
  color: #fff !important;
}