.fe-278cb2e6-wrapper {
    display: flex;
    flex-direction: column;
}

.fe-278cb2e6-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #ccc;
    gap: 30px;
}

.fe-278cb2e6-row-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    gap: 30px;
}

.fe-278cb2e6-item:first-child {
    border-top: 1px solid #ccc;
}

.fe-278cb2e6-date-col {
    flex: 0 0 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fe-278cb2e6-day {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    color: #f6b426; 
}

.fe-278cb2e6-month {
    font-size: 20px;
    font-weight: 800;
    color: #333;
    margin-top: 5px;
    text-transform: uppercase;
}

.fe-278cb2e6-time {
    font-size: 16px;
    font-weight: 800;
    color: #333;
    margin-top: 5px;
    text-transform: uppercase;
}

.fe-278cb2e6-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fe-278cb2e6-title {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease;
}

.fe-278cb2e6-desc {
    font-size: 20px;
    color: #555;
    margin-top: 4px;
    margin-bottom: 4px;
}

.fe-278cb2e6-subtitle {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
}

.fe-278cb2e6-action-col {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.fe-278cb2e6-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 1px solid #f6b426;
    border-radius: 30px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
}

.fe-278cb2e6-btn:hover {
    background: #f6b426;
    color: #fff;
}

.fe-278cb2e6-btn-icon {
    display: inline-flex;
    margin-left: 10px;
}

.fe-278cb2e6-btn-icon svg {
    width: 1.2em;
    height: 1.2em;
    fill: currentColor;
}

/* MODAL SYSTEM */
.fe-278cb2e6-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fe-278cb2e6-modal.fe-active {
    opacity: 1;
    pointer-events: auto;
}

.fe-278cb2e6-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.fe-278cb2e6-modal-dialog {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: 10;
    overflow: hidden;
}

.fe-278cb2e6-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    z-index: 12;
}

/* MODAL HEADER */
.fe-278cb2e6-modal-header {
    padding: 25px;
    border-bottom: 2px solid #f6b426;
    display: flex;
    align-items: center;
    gap: 20px;
}

.fe-278cb2e6-modal-header-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fdf6e6;
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 80px;
}

.fe-278cb2e6-modal-header-day {
    font-size: 36px;
    font-weight: 900;
    color: #f6b426;
    line-height: 1;
}

.fe-278cb2e6-modal-header-month {
    font-size: 14px;
    font-weight: 800;
    color: #333;
}

.fe-278cb2e6-modal-header-title h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #333;
}

.fe-278cb2e6-modal-header-title p {
    margin: 5px 0 0;
    font-size: 15px;
    color: #555;
}

/* MODAL BODY */
.fe-278cb2e6-modal-body {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
}

.fe-278cb2e6-modal-body h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.fe-278cb2e6-modal-description {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.fe-278cb2e6-modal-image {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.fe-278cb2e6-modal-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* MODAL FOOTER */
.fe-278cb2e6-modal-footer {
    padding: 25px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fe-278cb2e6-modal-footer h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 800;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fe-278cb2e6-footer-icon {
    color: #f6b426;
}

.fe-278cb2e6-schedule-text {
    font-size: 14px;
    color: #666;
}

.fe-278cb2e6-calendar-links {
    display: flex;
    gap: 12px;
}

.fe-278cb2e6-cal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 6px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.fe-278cb2e6-cal-btn:hover {
    border-color: #f6b426;
    color: #f6b426;
}

.fe-278cb2e6-modal-footer-close {
    text-align: right;
    margin-top: 10px;
}

.fe-278cb2e6-footer-close-btn {
    padding: 8px 18px;
    border: 1px solid #ccc;
    background: #e0e0e0;
    border-radius: 4px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.fe-278cb2e6-footer-close-btn:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Modo Responsive (Cards y Botón abajo) */
@media (max-width: 767px) {
    .fe-278cb2e6-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        background: #f9f9f9;
        border: 1px solid #ddd !important;
        border-radius: 12px;
        margin-bottom: 20px;
        gap: 15px;
    }
    
    .fe-278cb2e6-row-top {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
    }
    
    .fe-278cb2e6-date-col {
        flex-direction: row;
        align-items: baseline;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
        flex: none;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .fe-278cb2e6-time, .fe-278cb2e6-month {
        margin-top: 0;
    }

    .fe-278cb2e6-action-col {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .fe-278cb2e6-btn {
        width: 100%;
        justify-content: center;
    }
}
