.badge-recommended {
    background: rgba(122, 82, 255, 0.14);
    color: #a794ff;
    border: 1px solid rgba(122, 82, 255, 0.35);
}

.infographic-page .welcome-container.flow-active {
    padding-top: 100px;
    padding-bottom: 60px;
}

.infographic-page .welcome-container .container {
    max-width: none;
    padding-left: 3rem;
    padding-right: 3rem;
}

.infographic-page .stepper-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.infographic-page .step-content-card {
    min-height: auto;
    padding: 1rem 1.5rem;
    width: 100%;
}

.infographic-page .stepper-sidebar {
    width: 260px;
}

.info-step2-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 1.5rem;
    align-items: start;
}

.info-step2-left,
.info-step2-right {
    min-width: 0;
}

.info-asset-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.info-asset-dropzone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    overflow: hidden;
    padding: 1rem;
    position: relative;
}

.info-asset-dropzone:hover {
    border-color: var(--bs-primary);
    background: rgba(193, 255, 114, 0.04);
}

.info-asset-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.info-asset-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 17, 23, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
    pointer-events: none;
}

.info-asset-dropzone:hover .info-asset-overlay {
    opacity: 1;
    pointer-events: auto;
}

.info-asset-overlay .btn {
    min-width: 180px;
    justify-content: center;
    gap: 10px;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.info-asset-overlay .btn:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #1a2025;
}

.info-asset-thumb {
    position: relative;
    width: 100%;
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
}

.info-asset-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-asset-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
}

.info-asset-remove:hover {
    background: #ff4747;
}

.info-sum-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 1200px) {
    .info-asset-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .infographic-page .welcome-container .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .infographic-page .stepper-layout {
        display: block;
    }

    .infographic-page .stepper-sidebar {
        display: none;
    }

    .info-step2-grid {
        grid-template-columns: 1fr;
    }

    .info-asset-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .infographic-page .step-content-card {
        padding: 1rem;
    }

    .info-asset-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


