/**
 * Sidebar Next Step Button
 * 
 * Green card button for next step navigation - matching article footer button style.
 */

/* ===== Sidebar Next Step ===== */
.sidebar-next-step {

}

.sidebar-next-step__section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    margin-top: 0;
}

.sidebar-next-step__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(145deg, #00a86b 0%, #00c984 100%);
    border: 2px solid #10b981;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
    animation: subtle-pulse-sidebar 3s ease-in-out infinite;
}

.sidebar-next-step__link:hover {
    background: linear-gradient(90deg, #00b87a, #00d38f);
    border-color: #059669;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
}

/* Shine effect */
.sidebar-next-step__link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    animation: shine-sidebar 4s ease-in-out infinite;
}

.sidebar-next-step__text {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.sidebar-next-step__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin-right: 12px;
}

.sidebar-next-step__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.sidebar-next-step__header i {
    color: #ffffff;
    font-size: 0.9rem;
}

.sidebar-next-step__title {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.sidebar-next-step__icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.sidebar-next-step__icon i {
    color: #ffffff;
    font-size: 14px;
    animation: icon-bounce-sidebar 2s ease-in-out infinite;
}

@keyframes subtle-pulse-sidebar {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
    }
}

@keyframes shine-sidebar {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

@keyframes icon-bounce-sidebar {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

/* Responsive */

/* Desktop (768px+) */
@media (min-width: 768px) {
    .sidebar-next-step__link {
        padding: 14px 18px;
    }
    
    .sidebar-next-step__section-title {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }
    
    .sidebar-next-step__header {
        font-size: 1rem;
    }
    
    .sidebar-next-step__title {
        font-size: 0.9rem;
    }
    
    .sidebar-next-step__icon {
        width: 36px;
        height: 36px;
    }
    
    .sidebar-next-step__icon i {
        font-size: 16px;
    }
}

/* ===== Description ===== */
.sidebar-next-step__description {
    font-size: 0.875rem!important;
    line-height: 1.5!important;
    color: var(--text-light)!important;
    margin-top: 12px!important;
    margin-bottom: 0!important;
    padding: 0!important;
    display: none;
}
