.workshop-ai-inst-hero {
    position: relative;
    padding: 160px 24px 100px;
    background-image: url("https://assets.wizklub.com/images/wizklub_v2/workshops/ai-instructors/hero-bg.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
}

.workshop-ai-inst-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.workshop-ai-inst-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workshop-ai-hero__intel-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.workshop-ai-hero__intel-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: #0068B5;
    line-height: 1;
    display: flex;
    align-items: baseline;
    letter-spacing: -2px;
}

.intel-i {
    position: relative;
    display: inline-flex;
    justify-content: center;
    width: 0.25em;
}

.intel-i::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 11px;
    height: 11px;
    background-color: #00AEEF;
    border-radius: 1px;
}

.intel-dot {
    color: #00AEEF;
}

.workshop-ai-hero__intel-powered {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    color: #000;
    margin: 0;
}

.workshop-ai-inst-hero__title {
    font-family: var(--ws-font-heading);
    font-weight: 800;
    font-size: 64px;
    line-height: 1.1em;
    color: #000;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
}

.workshop-ai-inst-hero__subtitle {
    font-family: var(--ws-font-heading);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: #1e293b;
    max-width: 800px;
    margin: 0 auto 40px;
}

.workshop-ai-inst-hero__checks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.workshop-ai-inst-hero__check {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.workshop-ai-inst-hero__check span {
    font-family: var(--ws-font-body);
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

.workshop-ai-inst-hero__actions {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.workshop-ai-inst-hero__btn-primary {
    padding: 16px 36px;
    background: var(--ws-orange-gradient);
    color: var(--ws-white);
    font-family: var(--ws-font-heading);
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    border: none;
    outline: none;
    box-shadow: 0 10px 25px rgba(240, 101, 42, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease;
}

.workshop-ai-inst-hero__btn-primary:hover {
    transform: translateY(-2px);
    color: white;
}

.workshop-ai-inst-hero__btn-link {
    font-family: var(--ws-font-heading);
    font-weight: 700;
    font-size: 16px;
    color: #f0652a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.workshop-ai-inst-hero__btn-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .workshop-ai-inst-hero {
        padding: 80px 24px;
        min-height: auto;
    }

    .workshop-ai-inst-hero__title {
        font-size: 36px;
    }
}