/* ailhj-hero.css - AI领航局 Hero Banner Widget 样式 */

.ailhj-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.ailhj-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.ailhj-hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
    max-width: 760px;
    width: 100%;
}

.ailhj-hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
    color: inherit;
}

.ailhj-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.88;
    margin: 0 0 32px;
    color: inherit;
}

.ailhj-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.ailhj-hero-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.ailhj-hero-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    text-decoration: none;
}

.ailhj-hero-btn-primary {
    background: #f63e98;
    color: #fff;
    border: 2px solid #f63e98;
}

.ailhj-hero-btn-outline {
    background: transparent;
    color: inherit;
    border: 2px solid currentColor;
}

@media (max-width: 576px) {
    .ailhj-hero-title   { font-size: 1.6rem; }
    .ailhj-hero-subtitle { font-size: 0.95rem; }
    .ailhj-hero-content { padding: 40px 16px; }
}
