.site-page-header {
    background-color: var(--digi-crimson);
}

.digi-page-header-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 0;
}

.digi-page-header-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 50%;
}

.digi-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.digi-page-description p {
    margin: 0;
    color: #fff;
}

.digi-author-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.digi-author-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

.digi-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    color: #fff;

    p {
        margin: 0;
    }

    a {
        color: #fff;

        &:hover {
            color: rgba(255, 255, 255, 0.8);
        }
    }

    .digi-breadcrumb-item {
        flex-shrink: 0;

        &:last-child {
            flex-shrink: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            min-width: 0;
        }
    }
}
