/* ===========================================================================
   [fast-event-list] — Event List Shortcode Styles
   =========================================================================== */

.mp-fast-event-list {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 20px 0;
}

/* Grid layout */
.mp-fel-grid {
    display: grid;
    gap: 24px;
}

.mp-fel-cols-2 { grid-template-columns: repeat(2, 1fr); }
.mp-fel-cols-3 { grid-template-columns: repeat(3, 1fr); }
.mp-fel-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ===========================================================================
   CARD
   =========================================================================== */
.mp-fel-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    opacity: 0;
    animation: mpFelFadeIn 0.5s ease forwards;
}

@keyframes mpFelFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mp-fel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.mp-fel-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

/* Thumbnail */
.mp-fel-card-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f3f4f6;
}

.mp-fel-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mp-fel-card:hover .mp-fel-card-thumb img {
    transform: scale(1.05);
}

.mp-fel-card-no-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 48px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

/* Date badge on thumbnail */
.mp-fel-card-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 6px 10px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mp-fel-day {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #1e3a5f;
}

.mp-fel-month {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #11d5d5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Card body */
.mp-fel-card-body {
    padding: 16px 18px 18px;
}

.mp-fel-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mp-fel-card:hover .mp-fel-card-title {
    color: #11d5d5;
}

/* Meta info */
.mp-fel-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mp-fel-card-price {
    font-weight: 700;
    color: #11d5d5;
    font-size: 15px;
}

.mp-fel-price-label {
    font-weight: 400;
    color: #6b7280;
    font-size: 12px;
    margin-right: 4px;
}

.mp-fel-card-price.mp-fel-free .mp-fel-price-value {
    color: #059669;
}

.mp-fel-card-location,
.mp-fel-card-datetime {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mp-fel-loc-icon,
.mp-fel-dt-icon {
    font-size: 14px;
    flex-shrink: 0;
}

/* More dates link */
.mp-fel-card-more-dates {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #11d5d5;
    transition: color 0.2s;
}

.mp-fel-card:hover .mp-fel-card-more-dates {
    color: #1e5a8d;
}

/* ===========================================================================
   NO EVENTS
   =========================================================================== */
.mp-fel-no-events {
    text-align: center;
    color: #9ca3af;
    font-size: 16px;
    padding: 40px 20px;
    grid-column: 1 / -1;
}

/* ===========================================================================
   LOAD MORE
   =========================================================================== */
.mp-fel-load-more-wrap {
    text-align: center;
    margin-top: 30px;
}

.mp-fel-load-more-btn {
    background: #fff;
    color: #11d5d5;
    border: 2px solid #11d5d5;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.mp-fel-load-more-btn:hover {
    background: #11d5d5;
    color: #fff;
    box-shadow: 0 4px 15px rgba(34, 113, 177, 0.3);
    transform: translateY(-2px);
}

.mp-fel-load-more-btn:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 1024px) {
    .mp-fel-cols-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .mp-fel-cols-3,
    .mp-fel-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .mp-fel-grid { gap: 16px; }
}

@media (max-width: 480px) {
    .mp-fel-cols-2,
    .mp-fel-cols-3,
    .mp-fel-cols-4 { grid-template-columns: 1fr; }
    
    .mp-fel-card-title { font-size: 15px; }
    .mp-fel-card-body { padding: 12px 14px 14px; }
}
