.kc-viaje-widget {
    box-sizing: border-box;
    width: 100%;
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

.kc-viaje-card {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.kc-viaje-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    display: none;
}

.kc-viaje-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.kc-viaje-content {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kc-viaje-category {
    font-family: 'Bebas Neue', sans-serif;
    display: inline-block;
}

.kc-viaje-title {
    font-family: 'Bebas Neue', sans-serif;
    margin: 0;
}

.kc-viaje-location {
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.kc-viaje-dates {
    font-family: 'Bebas Neue', sans-serif;
}

.kc-viaje-description {
    font-family: 'DM Sans', sans-serif;
    margin: 10px 0 0 0;
    max-width: 480px;
    opacity: 0.9;
}

.kc-viaje-actions {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(250, 250, 250, 0.15);
    padding-top: 20px;
}

.kc-viaje-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.kc-viaje-btn:hover {
    transform: translateY(-1px);
}

.kc-viaje-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kc-viaje-btn-icon svg {
    width: 16px;
    height: 16px;
}

.kc-viaje-toggle {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.2s ease;
    min-height: 44px;
}

.kc-viaje-toggle::before,
.kc-viaje-toggle::after {
    display: none !important;
    content: none !important;
}

.kc-viaje-toggle:focus-visible {
    outline: 2px solid #E6461E;
    outline-offset: 4px;
}

.kc-viaje-toggle-label {
    font-family: 'Bebas Neue', sans-serif;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.kc-viaje-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(250, 250, 250, 0.15);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, border-color 0.3s ease;
}

.kc-viaje-arrow svg {
    transition: transform 0.3s ease;
}

/* Arrow rotation when panel is expanded */
.kc-viaje-toggle[aria-expanded="true"] .kc-viaje-arrow svg {
    transform: rotate(180deg);
}

/* Collapsible Panel styling */
.kc-viaje-panel {
    width: 100%;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    display: block;
}

.kc-viaje-panel-content {
    padding: 0;
    box-sizing: border-box;
}

.kc-viaje-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(10, 5, 12, 0.10);
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.kc-viaje-detail-item:last-child {
    border-bottom: none !important;
}

.kc-viaje-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kc-viaje-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kc-viaje-detail-title {
    margin: 0;
}

.kc-viaje-detail-desc {
    margin: 0;
}

/* Tablet & Mobile responsive adjustments handled via elementor custom controls triggers where needed */
@media (max-width: 768px) {
    .kc-viaje-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .kc-viaje-btn {
        width: 100%;
    }
    .kc-viaje-toggle {
        justify-content: space-between;
        width: 100%;
    }
}
