.wp-block-hero-section-hero-block,
.inner-page-title {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background-color: #0d1117;
    color: #ffffff;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Removed radial glow */
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-breadcrumb {
    font-size: 18px;
    margin-bottom: 28px;
    color: rgb(255, 255, 255);
    display: flex;
    gap: 8px;
}

.hero-breadcrumb span:last-child {
    font-weight: bold;
    color: #ffffff;
}

div.hero-breadcrumb a,
div.hero-home-link {
    color: rgba(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover,
.hero-home-link:hover {
    color: #00d4ff;
    text-decoration: underline;
}

.hero-title {
    line-height: 1.1;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
    font-size: 128px;
}

.hero-title span {
    color: #00d4ff;
    /* Default subtitle color */
    display: block;
}

/* Character styles removed */

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.hero-decoration-item {
    position: absolute;
    opacity: 0.6;
}

.hero-circle {
    display: none;
    /* Removed glow circle */
}

@media (max-width: 767px) {
    .hero-character {
        display: none;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: var(--main-title-size-mobile, 60px);
    }

    .hero-title span {
        font-size: var(--subtitle-size-mobile, 40px);
    }
}