/* ==================================================
   Events Today Panel
================================================== */

.hegau-news-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

/* Header */

.hegau-news-panel__header {
    display: flex;
    align-items: center;
    padding: 26px 24px 20px;
    border-bottom: 1px solid #eef2f7;
}

.hegau-news-panel__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #23344d;
}

/* Events list */

.hegau-news-panel__list {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hegau-news-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    text-decoration: none;
    border-bottom: 1px solid #eef2f7;
    transition: background .2s ease;
}

.hegau-news-item:hover {
    background: #f8fbff;
}

/* Event image */

.hegau-news-item__image {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 10px;
    overflow: hidden;
    background: #eef3f8;
}

.hegau-news-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Event content */

.hegau-news-item__content {
    min-width: 0;
    flex: 1;
}

.hegau-news-item__title {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #23344d;
}

.hegau-news-item__time {
    font-size: 13px;
    line-height: 1.3;
    color: #667b94;
}

.hegau-news-item__place {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.3;
    color: #8a9aae;
}

/* Bottom link */

.hegau-news-panel__all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    padding: 14px 20px;
    border-top: 1px solid #eef2f7;
    color: #0B67D0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s ease;
}

.hegau-news-panel__all:hover {
    background: #f8fbff;
}

.hegau-news-panel__all span {
    font-size: 17px;
    line-height: 1;
}

/* Larger event photos */
.hegau-news-item__image { flex: 0 0 82px !important; width: 82px !important; height: 82px !important; border-radius: 12px !important; }

/* Compact 5-event layout */
.hegau-news-item { padding: 12px 20px !important; }
.hegau-news-item__image { flex-basis: 72px !important; width: 72px !important; height: 72px !important; }
