.hero-main {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 130px 0 80px;
    min-height: 850px;
}
.hero-main-title {
    font-size: clamp(36px, 4.5vw, 64px);
    color: var(--text-white);
    font-weight: 800;
}
.hero-main-tag {
    font-size: clamp(18px, 2.2vw, 28px);
    color: var(--accent-glow);
    font-weight: 600;
    margin: 10px 0;
    letter-spacing: 0.02em;
}
.hero-main-date {
    font-size: clamp(16px, 1.8vw, 22px);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 30px;
}
.hero-main-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.hero-main-content-list {
    display: flex;
    align-items: center;
    gap: 30px;
}
.hero-main-content-item {
    position: relative;
    font-size: clamp(16px, 1.8vw, 22px);
    color: var(--text-white);
    font-weight: 600;
    padding-left: 22px;
}
.hero-main-content-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--accent-glow);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 12px var(--accent-glow);
}
.hero-main-slogan {
    font-size: clamp(18px, 2vw, 26px);
    color: var(--accent-glow);
    margin-top: 28px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.hero-main-aiimg {
    display: none;
}

@media (max-width: 640px) {
.hero-main {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    min-height: 614px;
    padding-top: 66px;
    padding-bottom: 10px;
    background:#2f1358 url("../images/home-bg.png?v=2026062536") no-repeat center top / cover;
}
.hero-main-title {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    margin-top: 40px;
}
.hero-main-title img {
    width: 100%;
    height: 38px;
    object-fit: cover;
}
.hero-main-tag {
    font-size: 18px;
    color: #fff;
    margin: 5px 0;
    font-weight: 400;
}
.hero-main-date {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}
.hero-main-content-list {
    display: flex;
    align-items: center;
    gap: 20px;
}
.hero-main-content-item {
    font-size: 17px;
    color: #fff;
    padding-left: 0;
}
.hero-main-content-item::before {
    content: none;
}
.hero-main-slogan {
    font-size: 18px;
    color: #fff;
    margin-top: 20px;
    font-weight: bold;
}
.hero-main-slogan img{
    object-fit: cover;
    width: 100%;
    height: 40px;
}
.hero-main-aiimg {
    display: block;
    width: 310px;
    height: auto;
    margin-top: 40px;
    object-fit: cover;
}
}
