.page-hero {
    position: relative;
    min-height: 382px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1923 0%, #1c2535 60%, #0f1923 100%);
}
.page-hero__grid-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 40px;
    opacity: 0.1; z-index: 1;
}
.page-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-hero__content.container{
    max-width: var(--max-width);
    padding: 50px var(--container-padding);
    margin: 0 auto;
    width: 100%;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
	flex-wrap:wrap;
    gap: 6px;
    margin-bottom: 24px;
}
.page-hero__breadcrumb-link {
    font-size: 16px;
    color: #99a1af;
    transition: color 0.2s ease;
}
.page-hero__breadcrumb-link:hover { color: #fff; }
.page-hero__breadcrumb-sep { width: 12px; height: 12px; opacity: 0.6; }
.page-hero__breadcrumb-current { color: var(--text-light); }
.page-hero__badge {
    display: inline-block;
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--blue);
    margin-bottom: 5px;
}
.page-hero__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 48px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 10px;
}
.page-hero__desc {
    font-size: 18px;
    line-height: 1.625;
    color: var(--text-light);
    margin-bottom: 24px;
	max-width: 800px;
}
.page-hero__accent-bar {
    width: 64px;
    height: 4px;
    background: var(--blue);
    border-radius: 9999px;
}
@media (max-width: 1200px) { .page-hero__title { font-size: 40px; } }
@media (max-width: 768px) {
    .page-hero__title { font-size: 32px; }
    .page-hero__desc { font-size: 16px; }
}
@media (max-width: 460px) {
    .page-hero { min-height: 320px; }
    .page-hero__title { font-size: 28px; }
    .page-hero__content { padding-top: 60px; padding-bottom: 40px; }
}
