.workshop-ai-inst-toolkit {
    padding: 80px 24px;
    background-color: var(--ws-white);
    width: 100%;
}

.workshop-ai-inst-toolkit__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 483px;
    display: flex;
    align-items: center;
    background-image: url("https://assets.wizklub.com/images/wizklub_v2/workshops/ai-instructors/hands-on-bg.webp");
    background-size: cover;
    background-position: center right;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.workshop-ai-inst-toolkit__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(240, 101, 42, 0.92) 0%,
            rgba(246, 172, 65, 0.75) 30%,
            rgba(246, 172, 65, 0.3) 55%,
            transparent 75%);
    z-index: 1;
}

.workshop-ai-inst-toolkit__content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 580px;
    color: var(--ws-white);
}

.workshop-ai-inst-toolkit__title {
    font-family: var(--ws-font-heading);
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2em;
    margin: 0 0 20px 0;
    color: var(--ws-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.workshop-ai-inst-toolkit__intro {
    font-family: var(--ws-font-body);
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.95);
}

.workshop-ai-inst-toolkit__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.workshop-ai-inst-toolkit__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--ws-font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--ws-white);
    line-height: 1.4em;
}

.workshop-ai-inst-toolkit__tick {
    width: 22px;
    height: 22px;
    background-color: rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
    margin-top: 2px;
}

.workshop-ai-inst-toolkit__tick svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .workshop-ai-inst-toolkit__overlay {
        background: linear-gradient(150deg,
                rgba(240, 101, 42, 0.95) 0%,
                rgba(246, 172, 65, 0.8) 50%,
                transparent 80%);
    }

    .workshop-ai-inst-toolkit__content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .workshop-ai-inst-toolkit__container {
        background-position: center;
    }

    .workshop-ai-inst-toolkit__overlay {
        background: linear-gradient(180deg,
                rgba(240, 101, 42, 0.92) 0%,
                rgba(240, 101, 42, 0.7) 60%,
                transparent 100%);
    }

    .workshop-ai-inst-toolkit__title {
        font-size: 28px;
    }

    .workshop-ai-inst-toolkit__list li {
        font-size: 15px;
    }
}