.event-card {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

/* 確保卡片內容不會溢出 */
.event-card-content {
    width: 100%;
    box-sizing: border-box;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* 調整圖片大小 */
.event-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.event-footer {
    margin-top: auto;
}

.event-title {
    /* 預設：完全顯示 */
    white-space: normal;
    overflow: visible;
    min-height: 60px;
    display: block;
}

.event-date {
    letter-spacing: -0.5px;
}
