.hero {
    width: 100%;
    min-height: 280px;
    margin-bottom: var(--two-em);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 0 0 24px 24px;
}

.heroBg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.4);
    background-image: url(../images/padding.jpeg);
}

.heroCont {
    display: flex;
    align-items: center;
    gap: var(--two-em);
}

.heroCont .img-box {
    width: var(--hero-img);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: fit-content;
}

.heroCont .img-box::before {
    padding-top: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.hero-tag {
    width: fit-content;
    background: linear-gradient(135deg, #c13180, #6c2d82);
    padding: 4px 14px;
    font-size: 11px;
    color: #fff;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.hero-title {
    font-size: 40px;
    color: #fff;
    margin-bottom: 8px;
}

.hero-desc {
    max-width: 600px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.75;
    font-weight: normal;
}

.hero-actions {
    display: flex;
    gap: calc(var(--two-em) / 2);
    align-items: center;
}

.hero-actions .hero-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 19px;
    background: linear-gradient(135deg, #c13180, #d94a9a);
    color: #fff;
    border-radius: var(--radius);
    font-weight: bold;
    transition: all 250ms ease;
    box-shadow: 0 4px 20px rgba(193, 49, 128, 0.3);
}

.hero-actions .hero-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(193, 49, 128, 0.5);
    filter: brightness(1.1);
}

.hero-actions .hero-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: #fff;
    border: 1px solid rgb(255, 255, 255, 0.15);
    border-radius: var(--radius);
    font-size: 13px;
    transition: all 150ms ease;
}

.hero-actions .hero-detail i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13px;
    height: 13px;
    font-size: 12px;
    color: #000000;
    background-color: #fff;
    border-radius: var(--radius);
}

.hero-actions .hero-detail:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width:769px) {
    .hero {
        min-height: auto;
        overflow: hidden;
    }

    .heroCont {
        flex-direction: column;
        gap: 20px;
        padding: 20px 16px;
    }

    .hero-title {
        text-align: center;
    }

    .hero-desc {
        display: none;
        max-width: 100%;
    }

    .hero-text {
        align-items: center;
    }
}