/* Quiet editorial title marker shared by controller headers. */
.page-title-card {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 3px 15px 5px 11px;
    border: 0;
    border-radius: 3px 14px 14px 3px;
    background: linear-gradient(90deg, rgba(221, 237, 248, 0.74) 0%, rgba(244, 249, 252, 0.42) 70%, rgba(255, 255, 255, 0) 100%);
    color: #284b62;
    box-shadow: none;
    text-decoration: none;
    vertical-align: top;
    transition: background 0.18s ease, color 0.18s ease;
}

.page-title-card::before,
.page-title-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.page-title-card::before {
    top: 1px;
    bottom: 1px;
    left: 0;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, #69b3db 0%, #2f86b8 58%, #245f83 100%);
}

.page-title-card::after {
    right: 8%;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(47, 134, 184, 0.62) 0%, rgba(144, 169, 189, 0.28) 58%, rgba(144, 169, 189, 0) 100%);
    transition: opacity 0.18s ease;
}

.page-title-card:hover {
    background: linear-gradient(90deg, rgba(212, 233, 247, 0.88) 0%, rgba(240, 247, 251, 0.52) 72%, rgba(255, 255, 255, 0) 100%);
    color: var(--bs3-link-hover-color, #1f547c);
    text-decoration: none;
}

.page-title-card:hover::after {
    opacity: 0.82;
}

.page-title-card:focus {
    color: var(--bs3-link-hover-color, #1f547c);
    text-decoration: none;
    outline: 2px solid rgba(61, 122, 169, 0.5);
    outline-offset: 2px;
}

.page-title-card:active {
    color: #173f5b;
}

.page-title-card .page-title-card__content {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0;
    min-width: 0;
    max-width: 100%;
    color: inherit;
    font-weight: 600;
    letter-spacing: -0.012em;
    line-height: 1.05;
    position: relative;
    z-index: 1;
}

.page-title-card__icon {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 1.2em;
    height: 1.2em;
    border: 0;
    border-radius: 4px;
    background: rgba(47, 134, 184, 0.1);
    color: #2b7eac;
    box-shadow: inset 0 0 0 1px rgba(47, 134, 184, 0.14);
    font-size: 0.82em;
    line-height: 1;
    top: 0;
}

.page-title-card__text {
    min-width: 0;
    overflow-wrap: anywhere;
}

.filter-head-leading .filter-header-link.page-title-card {
    align-self: flex-start;
}

@media (prefers-reduced-motion: reduce) {
    .page-title-card,
    .page-title-card::after {
        transition: none;
    }
}
