/**
 * Dynamic Sidebar Promotion Styles - Premium Glossy Aesthetic
 */

.dynamic-sidebar-promo {
    margin-bottom: 32px;
}

.promo-card-wrapper {
    display: block;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #0f172a;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4 / 5;
    /* Professional portrait aspect ratio */
}

.promo-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    color: #4f46e5;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.promo-action {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.promo-action .material-symbols-outlined {
    font-size: 18px;
}

/* Hover Effects */
.promo-card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 60px -12px rgba(79, 70, 229, 0.3),
        0 0 0 1px rgba(99, 102, 241, 0.2);
}

.promo-card-wrapper:hover .promo-image {
    transform: scale(1.1);
}

.promo-card-wrapper:hover .promo-overlay {
    background: linear-gradient(to top, rgba(79, 70, 229, 0.9) 0%, transparent 100%);
}

.promo-card-wrapper:hover .promo-action {
    transform: translateX(5px);
}