.hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* justify-content is dynamic */
    /* min-height is dynamic */
    background-size: cover;
    background-position: center;
}

.hero-section.has-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content-cont {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items dynamic */
}

.hero-content-wrapper {
    width: 100%;
    z-index: 3;
    /* max-width and text-align dynamic */
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    /* justify-content dynamic */
}

/* Breadcrumb specifics if needed */
.hero-breadcrumb {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
    color: inherit;
}