.roundpersonas {
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(1);
    /* Google Chrome, Safari 6+ & Opera 15+ */
    filter: grayscale(1);
    /* Microsoft Edge and Firefox 35+ */
}

.roundpersonas:hover {
    -webkit-filter: grayscale(0);
    filter: none;
}

.event-card {
    background: #fff;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    /* Consistent with site style if possible, or generic */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-date {
    color: #453232;
    /* Site primary color */
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.event-image {
    max-width: 200px;
    height: auto;
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.event-content {
    overflow: hidden;
    /* Clear float */
}

@media (max-width: 768px) {
    .event-image {
        float: none;
        display: block;
        margin: 0 auto 15px auto;
    }

    .event-content {
        text-align: center;
    }
}

.event-text-wrapper {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    position: relative;
    font-size: 24px;
    line-height: 30px;
}



.event-text-wrapper.expanded {
    max-height: 2000px;
    /* Arbitrary large height for transition */
}

/* Optional fade effect at bottom when collapsed */
.event-text-wrapper:not(.expanded)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(transparent, #fff);
}

.read-more-btn {
    background-color: #d00a20;
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #a00819;
}

.event-headline {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 30px;
    color: #2b2b2b;
    display: block;
}

.contact-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.contact-item {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item img {
    flex-shrink: 0;
}

.contact-item a {
    color: #453232;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}