/* Wrapper */
.bbb-events-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Τίτλος */
.bbb-events-title {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Search */
.bbb-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
}

#bbb-event-search {
    width: 100%;
    padding: 10px 35px 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

#bbb-event-search-clear {
    position: absolute;
    right: 10px;
    top: 9px;
    cursor: pointer;
    opacity: 0.6;
}

/* Grid */
.bbb-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

/* Card */
.bbb-event-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.15s ease;
}

.bbb-event-card:hover {
    transform: translateY(-3px);
}

/* Visual */
.bbb-event-visual {
    position: relative;
    height: 120px;
    margin-bottom: 12px;
}

.bbb-event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.bbb-icon-wrapper,
.bbb-emoji-wrapper {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(255,255,255,0.85);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 20px;
}

/* Title */
.bbb-event-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Meta */
.bbb-event-meta {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 12px;
}

/* More button */
.bbb-event-more-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #008cba;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.bbb-event-more-btn:hover {
    background: #0077a3;
}
